diff --git a/CHANGELOG.md b/CHANGELOG.md index d43010e..33880d0 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.4.0](https://github.com/zhortech/ztcorekit-ios-sdk/-/tags/1.4.0) (2024-08-08) + +- Required version of iOS is now iOS 15 +- Refactored chunck dowload/upload mechanims, now using CoreData for effiency +- Updated dependencies injection + updated to latest dependencies releases +- Fixed Loggin mechanism, which was causing some crashes + ## [1.3.2](https://github.com/zhortech/ztcorekit-ios-sdk/-/tags/1.3.2) (2024-05-14) - fixed an issue where packet were not cached when network was not reachable to add them to database @@ -126,7 +133,7 @@ ## [1.1.90](https://github.com/zhortech/ztcorekit-ios-sdk/-/tags/1.1.90) (2023-07-19) -- added new internal method `ZTSegmentData.updateSegments` to update segments by id with new status +- added new internal method `ZTPacket.updateSegments` to update segments by id with new status ## [1.1.89](https://github.com/zhortech/ztcorekit-ios-sdk/-/tags/1.1.89) (2023-07-14) diff --git a/Package.swift b/Package.swift index 56b7cd0..6c7ecb6 100644 --- a/Package.swift +++ b/Package.swift @@ -1,11 +1,11 @@ -// swift-tools-version:5.3 +// swift-tools-version:5.9 import PackageDescription let package = Package( name: "ZTCoreKit", platforms: [ - .iOS(.v13) + .iOS(.v15) ], products: [ .library( diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Database.momd/Database.mom b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Database.momd/Database.mom new file mode 100644 index 0000000..ce64693 Binary files /dev/null and b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Database.momd/Database.mom differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Database.momd/VersionInfo.plist b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Database.momd/VersionInfo.plist new file mode 100644 index 0000000..8d54ed8 Binary files /dev/null and b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Database.momd/VersionInfo.plist differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h index 99a18be..5552d75 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h +++ b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h @@ -278,6 +278,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import CoreBluetooth; +@import CoreData; @import Dispatch; @import Foundation; @import ObjectiveC; @@ -1246,10 +1247,6 @@ typedef SWIFT_ENUM(NSInteger, DFUUuidType, open) { - - - - /// This converter converts Intel HEX file to BIN. /// The Intel HEX specification can be found here: /// link. @@ -1271,7 +1268,6 @@ SWIFT_CLASS("_TtC9ZTCoreKit21IntelHex2BinConverter") - /// This initiator can be used to start a DFU process using Legacy DFU service. /// The default DFUServiceInitiator will select the proper executor based /// on the discovered services. If you know your device supports the Legacy DFU you may @@ -1318,9 +1314,6 @@ SWIFT_PROTOCOL("_TtP9ZTCoreKit14LoggerDelegate_") - - - /// This initiator can be used to start a DFU process using Secure DFU service. /// The default DFUServiceInitiator will select the proper executor based /// on the discovered services. If you know your device supports the Secure DFU you may @@ -1334,6 +1327,74 @@ SWIFT_CLASS("_TtC9ZTCoreKit25SecureDFUServiceInitiator") +@class NSDate; +@class NSMutableOrderedSet; +@class NSEntityDescription; +@class NSManagedObjectContext; + +/// Activity. It represents activity running on modules. +SWIFT_CLASS_NAMED("ZTActivity") +@interface ZTActivity : NSManagedObject +/// Activity Id +@property (nonatomic, copy) NSString * _Nonnull id; +/// Activity identifier +@property (nonatomic, copy) NSString * _Nonnull activityIdentifier; +/// Application Id +@property (nonatomic, copy) NSString * _Nullable appId; +/// Activity type +@property (nonatomic, copy) NSString * _Nonnull activityType; +/// Start date +@property (nonatomic, copy) NSDate * _Nullable startDate; +/// End date +@property (nonatomic, copy) NSDate * _Nullable endDate; +/// Start timestamp in ms from firmware +@property (nonatomic) int64_t startTimestamp; +/// End timestamp in ms from firmware +@property (nonatomic) int64_t endTimestamp; +/// Timezone abbreviation +@property (nonatomic, copy) NSString * _Nullable tz; +/// Activity status +@property (nonatomic, copy) NSString * _Nullable status; +/// Temporary cached packets +@property (nonatomic, strong) NSMutableOrderedSet * _Nullable packets; +/// Information about the current activity +@property (nonatomic, copy) NSData * _Nullable metaDataRawValue; +/// Stop reason obtained from firmware +@property (nonatomic, copy) NSData * _Nullable stopReasonRawValue; +/// Is raw data enabled +/// Used for Universal firmware +@property (nonatomic) BOOL isRawDataMode; +/// Is automatic activity +/// Used for Safety +@property (nonatomic) BOOL isAutomatic; +/// Force stop for automatic activity +/// Used for Safety +@property (nonatomic) BOOL forceStop; +/// Activity was interrupted e.g. in case of mobility scan +@property (nonatomic) BOOL isInterrupted; +/// Id of first chunk +/// Used for Safety +@property (nonatomic) int16_t firstChunkId; +/// Id of last chunk +/// Used for Safety +@property (nonatomic) int16_t lastChunkId; +/// Number of chunks for activity stored in firmware +@property (nonatomic) int16_t chunkCount; +/// Anchor timestamp defined with firmware MSG_TIME +@property (nonatomic) int64_t anchorTimestamp; +/// Start timestamp for custom activity +@property (nonatomic) int64_t customActivityStartTimestamp; +/// Start chunk id for custom activity +@property (nonatomic) int16_t customActivityFirstChunkId; +/// Firmware version for activity +@property (nonatomic, copy) NSString * _Nullable fwVersion; +/// Shoes serial number +@property (nonatomic, copy) NSString * _Nullable shoesSerial; +/// Initializer +- (nonnull instancetype)initWithEntity:(NSEntityDescription * _Nonnull)entity insertIntoManagedObjectContext:(NSManagedObjectContext * _Nullable)context OBJC_DESIGNATED_INITIALIZER; +@end + + @@ -1424,52 +1485,40 @@ SWIFT_CLASS("_TtC9ZTCoreKit8ZTDevice") @end -/// Class which implements the various URLSessionDelegate methods to connect various Alamofire features. -SWIFT_CLASS("_TtC9ZTCoreKit17ZTSessionDelegate") -@interface ZTSessionDelegate : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Activity segment data +SWIFT_CLASS_NAMED("ZTPacket") +@interface ZTPacket : NSManagedObject +/// Packet identifier. +@property (nonatomic) int16_t id; +@property (nonatomic, copy) NSDate * _Nonnull createdAt; +@property (nonatomic, copy) NSDate * _Nonnull fulfilledAt; +@property (nonatomic, copy) NSDate * _Nullable scheduledDeleted; +@property (nonatomic, copy) NSDate * _Nonnull sentAt; +/// Raw data representing packet. +@property (nonatomic, copy) NSData * _Nullable rawData; +/// Activity to which packet belongs to. +@property (nonatomic, strong) ZTActivity * _Nullable activity; +/// Timestamp for packet. +@property (nonatomic) int64_t timestamp; +/// Packet’s duration/ +@property (nonatomic) int16_t duration; +/// As CoreData can’t handle UInt8, we use Int16 to store all positive possible values of an UInt8. +@property (nonatomic) int16_t statusRawValue; +/// Original timestamp from packet data in millisecondss. +@property (nonatomic) int64_t originalTimestamp; +/// Number of packets. +@property (nonatomic) int16_t packetsNumber; +/// Firmware version. +@property (nonatomic, copy) NSString * _Nullable fwVersion; +/// Number of tries to download packet +@property (nonatomic) int16_t retryCount; +- (nonnull instancetype)initWithEntity:(NSEntityDescription * _Nonnull)entity insertIntoManagedObjectContext:(NSManagedObjectContext * _Nullable)context OBJC_DESIGNATED_INITIALIZER; @end -@class NSURLSession; -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session didBecomeInvalidWithError:(NSError * _Nullable)error; -@end -@class NSURLSessionDataTask; -@class NSCachedURLResponse; -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session dataTask:(NSURLSessionDataTask * _Nonnull)dataTask didReceiveData:(NSData * _Nonnull)data; -- (void)URLSession:(NSURLSession * _Nonnull)session dataTask:(NSURLSessionDataTask * _Nonnull)dataTask willCacheResponse:(NSCachedURLResponse * _Nonnull)proposedResponse completionHandler:(void (^ _Nonnull)(NSCachedURLResponse * _Nullable))completionHandler; -@end -@class NSURLSessionDownloadTask; - -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didResumeAtOffset:(int64_t)fileOffset expectedTotalBytes:(int64_t)expectedTotalBytes; -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite; -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didFinishDownloadingToURL:(NSURL * _Nonnull)location; -@end - -@class NSURLSessionTask; -@class NSURLAuthenticationChallenge; -@class NSURLCredential; -@class NSInputStream; -@class NSHTTPURLResponse; -@class NSURLRequest; -@class NSURLSessionTaskMetrics; - -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didReceiveChallenge:(NSURLAuthenticationChallenge * _Nonnull)challenge completionHandler:(void (^ _Nonnull)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task needNewBodyStream:(void (^ _Nonnull)(NSInputStream * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task willPerformHTTPRedirection:(NSHTTPURLResponse * _Nonnull)response newRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nonnull)(NSURLRequest * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didFinishCollectingMetrics:(NSURLSessionTaskMetrics * _Nonnull)metrics; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didCompleteWithError:(NSError * _Nullable)error; -- (void)URLSession:(NSURLSession * _Nonnull)session taskIsWaitingForConnectivity:(NSURLSessionTask * _Nonnull)task SWIFT_AVAILABILITY(watchos,introduced=4.0) SWIFT_AVAILABILITY(tvos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=11.0) SWIFT_AVAILABILITY(macos,introduced=10.13); -@end #endif #if __has_attribute(external_source_symbol) diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Info.plist b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Info.plist index 5ab28d0..2f2efe8 100644 Binary files a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Info.plist and b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Info.plist differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.abi.json b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.abi.json index 9920d22..9777865 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.abi.json +++ b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.abi.json @@ -4,6 +4,26 @@ "name": "TopLevel", "printedName": "TopLevel", "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -16,207 +36,68 @@ }, { "kind": "TypeDecl", - "name": "ZTAlgoStatus", - "printedName": "ZTAlgoStatus", + "name": "ZTEnum", + "printedName": "ZTEnum", "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "modeId", - "printedName": "modeId", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "precisionMode", - "printedName": "precisionMode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "numberOfSteps", - "printedName": "numberOfSteps", + "name": "description", + "printedName": "description", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvp", + "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvg", + "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", + "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -225,73 +106,39 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", + "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", @@ -299,63 +146,9 @@ "printedName": "Decodable", "usr": "s:Se", "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "ObjectiveC", - "printedName": "ObjectiveC", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "Import", "name": "Foundation", @@ -366,61 +159,33 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreTelephony", - "printedName": "CoreTelephony", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTAES", - "printedName": "ZTAES", + "name": "ZTMediaFileTemplate", + "printedName": "ZTMediaFileTemplate", "children": [ { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV3key10Foundation4DataVvp", - "mangledName": "$s9ZTCoreKit5ZTAESV3key10Foundation4DataVvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -430,42 +195,91 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV3key10Foundation4DataVvg", - "mangledName": "$s9ZTCoreKit5ZTAESV3key10Foundation4DataVvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "iv", - "printedName": "iv", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV2iv10Foundation4DataVvp", - "mangledName": "$s9ZTCoreKit5ZTAESV2iv10Foundation4DataVvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -475,81 +289,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV2iv10Foundation4DataVvg", - "mangledName": "$s9ZTCoreKit5ZTAESV2iv10Foundation4DataVvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "algorithm", - "printedName": "algorithm", - "children": [ + }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9algorithms6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9algorithms6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9algorithms6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9algorithms6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "options", - "printedName": "options", + "name": "mimeType", + "printedName": "mimeType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV7optionss6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV7optionss6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -558,80 +399,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV7optionss6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV7optionss6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "encOption", - "printedName": "encOption", - "children": [ + }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9encOptions6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9encOptions6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9encOptions6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9encOptions6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "decOption", - "printedName": "decOption", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9decOptions6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9decOptions6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -640,39 +509,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9decOptions6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9decOptions6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "successStatus", - "printedName": "successStatus", + "name": "url", + "printedName": "url", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -681,99 +619,82 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "evaluate", - "printedName": "evaluate(_:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" }, { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV8evaluate_4withSbs5Int32V_s6UInt32VtF", - "mangledName": "$s9ZTCoreKit5ZTAESV8evaluate_4withSbs5Int32V_s6UInt32VtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:iv:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit5ZTAESV3key2ivACSgSS_SStcfc", - "mangledName": "$s9ZTCoreKit5ZTAESV3key2ivACSgSS_SStcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { - "kind": "Function", - "name": "encrypt", - "printedName": "encrypt(data:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", @@ -788,73 +709,109 @@ } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV7encrypt4data10Foundation4DataVSgAH_tF", - "mangledName": "$s9ZTCoreKit5ZTAESV7encrypt4data10Foundation4DataVSgAH_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decrypt", - "printedName": "decrypt(data:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV7decrypt4data10Foundation4DataVSgAI_tF", - "mangledName": "$s9ZTCoreKit5ZTAESV7decrypt4data10Foundation4DataVSgAI_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "crypt", - "printedName": "crypt(data:option:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:fileName:mimeType:description:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + }, { "kind": "TypeNominal", "name": "Optional", @@ -867,32 +824,123 @@ "usr": "s:10Foundation4DataV" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMediaFileTemplate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "Convenience", + "Required" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV5crypt4data6option10Foundation4DataVSgAJ_s6UInt32VtF", - "mangledName": "$s9ZTCoreKit5ZTAESV5crypt4data6option10Foundation4DataVSgAJ_s6UInt32VtF", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -901,13 +949,30 @@ "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit5ZTAESV", - "mangledName": "$s9ZTCoreKit5ZTAESV", + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" + }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } ] }, { @@ -921,37 +986,13 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTRetryPolicy", - "printedName": "ZTRetryPolicy", - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTRetryPolicyC", - "mangledName": "$s9ZTCoreKit13ZTRetryPolicyC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTConnectionLostRetryPolicy", - "printedName": "ZTConnectionLostRetryPolicy", - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTConnectionLostRetryPolicyC", - "mangledName": "$s9ZTCoreKit27ZTConnectionLostRetryPolicyC", + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit13ZTRetryPolicyC", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTRetryPolicy" + "ImplementationOnly" ] }, { @@ -964,43 +1005,41 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTCommandsCharacteristic", - "printedName": "ZTCommandsCharacteristic", + "name": "ZTBatteryLevel", + "printedName": "ZTBatteryLevel", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -1010,52 +1049,97 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "right", + "printedName": "right", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -1068,131 +1152,194 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "left", + "printedName": "left", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandsCharacteristic", - "printedName": "ZTCoreKit.ZTCommandsCharacteristic", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "kind": "Var", + "name": "min", + "printedName": "min", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPairedDevice", - "printedName": "ZTPairedDevice", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { "kind": "Var", - "name": "macAddress", - "printedName": "macAddress", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -1202,8 +1349,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -1223,13 +1370,63 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelVACycfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelVACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, { "kind": "Constructor", "name": "init", @@ -1237,9 +1434,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTPairedDevice", - "printedName": "ZTCoreKit.ZTPairedDevice", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" }, { "kind": "TypeNominal", @@ -1249,8 +1446,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -1274,8 +1471,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -1283,14 +1480,21 @@ } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" + }, { "kind": "Conformance", "name": "Decodable", @@ -1309,8 +1513,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -1318,315 +1522,11 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTDfuPackageType", - "printedName": "ZTDfuPackageType", - "children": [ - { - "kind": "Var", - "name": "APP", - "printedName": "APP", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "BL", - "printedName": "BL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD", - "printedName": "SD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD_BL", - "printedName": "SD_BL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD_BL_APP", - "printedName": "SD_BL_APP", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDfuPackageType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" }, { "kind": "Import", @@ -1638,17 +1538,10 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTPairedSolesCharacteristic", - "printedName": "ZTPairedSolesCharacteristic", + "name": "ZTDfuService", + "printedName": "ZTDfuService", "children": [ { "kind": "Var", @@ -1663,8 +1556,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", "static": true, "declAttributes": [ @@ -1690,8 +1583,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", "moduleName": "ZTCoreKit", "static": true, "implicit": true, @@ -1704,33 +1597,48 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -1741,359 +1649,190 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPairedSolesCharacteristic", - "printedName": "ZTCoreKit.ZTPairedSolesCharacteristic", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SecureDFUServiceInitiator", - "printedName": "SecureDFUServiceInitiator", - "children": [ - { - "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "startWithTargetWithIdentifier:", - "declAttributes": [ - "ObjC", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SecureDFUServiceInitiator", - "printedName": "ZTCoreKit.SecureDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", - "moduleName": "ZTCoreKit", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithCentralManager:target:", - "declAttributes": [ - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "SecureDFUServiceInitiator", - "printedName": "ZTCoreKit.SecureDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "ZTDfuService", + "printedName": "ZTCoreKit.ZTDfuService", + "usr": "s:9ZTCoreKit12ZTDfuServiceC" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "usr": "s:9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", "declAttributes": [ - "ObjC", - "Override" + "Required" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC", + "usr": "s:9ZTCoreKit12ZTDfuServiceC", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ZTCoreKit.DFUServiceInitiator", - "ObjectiveC.NSObject" + "ZTCoreKit.ZTService" ], "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" + }, { "kind": "Conformance", "name": "Equatable", "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ + "ImplementationOnly", "RawDocComment" ] }, @@ -2107,44 +1846,39 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTNotifyCharacteristic", - "printedName": "ZTNotifyCharacteristic", + "name": "ZTMessageGeneralState", + "printedName": "ZTMessageGeneralState", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "byte0", + "printedName": "byte0", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2153,56 +1887,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "byte1", + "printedName": "byte1", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2212,133 +1945,140 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "byte2", + "printedName": "byte2", "children": [ { "kind": "TypeNominal", - "name": "ZTNotifyCharacteristic", - "printedName": "ZTCoreKit.ZTNotifyCharacteristic", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "kind": "Var", + "name": "byte3", + "printedName": "byte3", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTMessageBootloaderInfo", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -2346,9 +2086,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" }, { "kind": "TypeNominal", @@ -2366,8 +2106,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -2375,26 +2115,74 @@ ], "init_kind": "Designated" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "activityStartedRight", + "printedName": "activityStartedRight", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2403,39 +2191,37 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "bootloaderVersion", - "printedName": "bootloaderVersion", + "name": "activityStartedLeft", + "printedName": "activityStartedLeft", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2444,39 +2230,37 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appSupportVersion", - "printedName": "appSupportVersion", + "name": "pairIsConnected", + "printedName": "pairIsConnected", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2485,39 +2269,37 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "softDeviceId", - "printedName": "softDeviceId", + "name": "memsHasError", + "printedName": "memsHasError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2526,47 +2308,115 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "dfuState", - "printedName": "dfuState", + "name": "firmwareDifferent", + "printedName": "firmwareDifferent", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualState", + "printedName": "actualState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "previousState", + "printedName": "previousState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } ], + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2575,23 +2425,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "usr": "s:Sq" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] @@ -2609,13 +2452,13 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2630,607 +2473,428 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "TypeDecl", - "name": "DfuState", - "printedName": "DfuState", + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCommandResponse", + "printedName": "ZTCommandResponse", + "children": [ + { + "kind": "Var", + "name": "bytes", + "printedName": "bytes", "children": [ { - "kind": "Var", - "name": "none", - "printedName": "none", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "inProgress", - "printedName": "inProgress", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "received", - "printedName": "received", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "readyForCopy", - "printedName": "readyForCopy", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rightModule", + "printedName": "rightModule", + "children": [ { - "kind": "Var", - "name": "activation", - "printedName": "activation", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "done", - "printedName": "done", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "leftModule", + "printedName": "leftModule", + "children": [ { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "validationError", - "printedName": "validationError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "command", + "printedName": "command", + "children": [ { - "kind": "Var", - "name": "activationError", - "printedName": "activationError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV", + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTCommandResponseC", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "hasMissingDesignatedInitializers": true }, { "kind": "TypeDecl", - "name": "ZTEnvironment", - "printedName": "ZTEnvironment", + "name": "ZTCommandStatus", + "printedName": "ZTCommandStatus", "children": [ { "kind": "Var", - "name": "dev", - "printedName": "dev", + "name": "success", + "printedName": "success", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3238,36 +2902,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO3devyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO3devyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "staging", - "printedName": "staging", + "name": "busy", + "printedName": "busy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3275,36 +2942,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "production", - "printedName": "production", + "name": "invalidParam", + "printedName": "invalidParam", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3312,36 +2982,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcdev", - "printedName": "zcdev", + "name": "invalidState", + "printedName": "invalidState", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3349,36 +3022,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcstaging", - "printedName": "zcstaging", + "name": "forbidden", + "printedName": "forbidden", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3386,36 +3062,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcproduction", - "printedName": "zcproduction", + "name": "notSupported", + "printedName": "notSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3423,162 +3102,79 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "unknownCommand", + "printedName": "unknownCommand", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTEnvironmentO", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declAttributes": [ + "RawDocComment" + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTModuleSide", - "printedName": "ZTModuleSide", - "children": [ { "kind": "Var", - "name": "left", - "printedName": "left", + "name": "commandInProgress", + "printedName": "commandInProgress", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTModuleSide.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3586,36 +3182,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTModuleSideO4leftyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO4leftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "right", - "printedName": "right", + "name": "noPeerresponse", + "printedName": "noPeerresponse", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTModuleSide.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3623,9 +3222,52 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTModuleSideO5rightyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO5rightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Constructor", @@ -3635,27 +3277,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTModuleSide?", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -3667,14 +3309,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvp", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -3685,14 +3327,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvg", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -3701,14 +3343,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTModuleSideO", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO", + "usr": "s:9ZTCoreKit15ZTCommandStatusO", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -3736,118 +3378,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Function", - "name": "decodeData", - "printedName": "decodeData(_:for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", - "mangledName": "$s9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encodeData", - "printedName": "encodeData(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", - "mangledName": "$s9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { @@ -3862,26 +3402,34 @@ }, { "kind": "TypeDecl", - "name": "ZTEnum", - "printedName": "ZTEnum", + "name": "ZTSettings", + "printedName": "ZTSettings", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvp", - "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvp", + "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvpZ", + "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvpZ", "moduleName": "ZTCoreKit", - "protocolReq": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -3890,45 +3438,33 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvg", - "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvg", + "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvgZ", + "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvgZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", - "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -3937,1062 +3473,715 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", - "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "defaultReadChunkSize", - "printedName": "defaultReadChunkSize", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20defaultReadChunkSizes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit20defaultReadChunkSizes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20defaultReadChunkSizes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit20defaultReadChunkSizes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultWriteChunkSize", - "printedName": "defaultWriteChunkSize", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultFilePermissions", - "printedName": "defaultFilePermissions", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22defaultFilePermissionss6UInt16Vvp", - "mangledName": "$s9ZTCoreKit22defaultFilePermissionss6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22defaultFilePermissionss6UInt16Vvg", - "mangledName": "$s9ZTCoreKit22defaultFilePermissionss6UInt16Vvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultDirectoryPermissions", - "printedName": "defaultDirectoryPermissions", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvp", - "mangledName": "$s9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvg", - "mangledName": "$s9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTArchive", - "printedName": "ZTArchive", - "children": [ - { - "kind": "TypeDecl", - "name": "ArchiveError", - "printedName": "ArchiveError", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "unreadableArchive", - "printedName": "unreadableArchive", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unreadableD0yA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unreadableD0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "unwritableArchive", - "printedName": "unwritableArchive", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] - } + "Final" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unwritableD0yA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unwritableD0yA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "accessorKind": "get" }, { - "kind": "Var", - "name": "invalidEntryPath", - "printedName": "invalidEntryPath", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO16invalidEntryPathyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO16invalidEntryPathyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidCompressionMethod", - "printedName": "invalidCompressionMethod", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO24invalidCompressionMethodyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO24invalidCompressionMethodyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logLevel", + "printedName": "logLevel", + "children": [ { - "kind": "Var", - "name": "invalidStartOfCentralDirectoryOffset", - "printedName": "invalidStartOfCentralDirectoryOffset", + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO36invalidStartOfCentralDirectoryOffsetyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO36invalidStartOfCentralDirectoryOffsetyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "missingEndOfCentralDirectoryRecord", - "printedName": "missingEndOfCentralDirectoryRecord", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO34missingEndOfCentralDirectoryRecordyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO34missingEndOfCentralDirectoryRecordyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidNumberOfEntriesOnDisk", - "printedName": "invalidNumberOfEntriesOnDisk", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO28invalidNumberOfEntriesOnDiskyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO28invalidNumberOfEntriesOnDiskyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "environment", + "printedName": "environment", + "children": [ { - "kind": "Var", - "name": "invalidNumberOfEntriesInCentralDirectory", - "printedName": "invalidNumberOfEntriesInCentralDirectory", + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO40invalidNumberOfEntriesInCentralDirectoryyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO40invalidNumberOfEntriesInCentralDirectoryyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "cancelledOperation", - "printedName": "cancelledOperation", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO18cancelledOperationyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO18cancelledOperationyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidBufferSize", - "printedName": "invalidBufferSize", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO17invalidBufferSizeyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO17invalidBufferSizeyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoConnect", + "printedName": "autoConnect", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO4hash4intoys6HasherVz_tF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableEventLogging", + "printedName": "enableEventLogging", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AccessMode", - "printedName": "AccessMode", - "children": [ - { - "kind": "Var", - "name": "create", - "printedName": "create", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO6createyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO6createyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "read", - "printedName": "read", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO4readyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO4readyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldObtaineMissedChunks", + "printedName": "shouldObtaineMissedChunks", + "children": [ { - "kind": "Var", - "name": "update", - "printedName": "update", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO6updateyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO6updateyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive.AccessMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueAESgSu_tcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueAESgSu_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableRawDataCheck", + "printedName": "enableRawDataCheck", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt", - "conformances": [ + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "shouldAutoResendData", + "printedName": "shouldAutoResendData", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvp", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -5002,46 +4191,94 @@ "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvg", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "accessMode", - "printedName": "accessMode", + "name": "activityDataSyncThreshold", + "printedName": "activityDataSyncThreshold", "children": [ { "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovp", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -5051,203 +4288,192 @@ "children": [ { "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovg", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(url:accessMode:preferredEncoding:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTArchive", - "printedName": "ZTCoreKit.ZTArchive", - "usr": "s:9ZTCoreKit9ZTArchiveC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableBackgroundDFU", + "printedName": "enableBackgroundDFU", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10accessMode17preferredEncodingACSg10Foundation3URLV_AC06AccessF0OSSAHE0H0VSgtcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10accessMode17preferredEncodingACSg10Foundation3URLV_AC06AccessF0OSSAHE0H0VSgtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:accessMode:preferredEncoding:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTArchive", - "printedName": "ZTCoreKit.ZTArchive", - "usr": "s:9ZTCoreKit9ZTArchiveC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "hasDefaultArg": true, - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10accessMode17preferredEncodingACSg10Foundation4DataV_AC06AccessF0OSSAHE0H0VSgtcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10accessMode17preferredEncodingACSg10Foundation4DataV_AC06AccessF0OSSAHE0H0VSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "makeIterator", - "printedName": "makeIterator()", - "children": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "AnyIterator", - "printedName": "Swift.AnyIterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Void", + "printedName": "()" } ], - "usr": "s:s11AnyIteratorV" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12makeIterators03AnyE0VyAA7ZTEntryVGyF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12makeIterators03AnyE0VyAA7ZTEntryVGyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Var", + "name": "enableBackgroundDataStreaming", + "printedName": "enableBackgroundDataStreaming", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScip", - "mangledName": "$s9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScip", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -5256,156 +4482,192 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScig", - "mangledName": "$s9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScig", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ "Final" ], - "accessorKind": "get" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "totalUnitCountForRemoving", - "printedName": "totalUnitCountForRemoving(_:)", + "kind": "Var", + "name": "activityChunkStoreForFreeMemory", + "printedName": "activityChunkStoreForFreeMemory", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC25totalUnitCountForRemovingys5Int64VAA7ZTEntryVF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC25totalUnitCountForRemovingys5Int64VAA7ZTEntryVF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "totalUnitCountForReading", - "printedName": "totalUnitCountForReading(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC24totalUnitCountForReadingys5Int64VAA7ZTEntryVF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC24totalUnitCountForReadingys5Int64VAA7ZTEntryVF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "totalUnitCountForAddingItem", - "printedName": "totalUnitCountForAddingItem(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC27totalUnitCountForAddingItem2ats5Int64V10Foundation3URLV_tF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC27totalUnitCountForAddingItem2ats5Int64V10Foundation3URLV_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "activityChunkRetryLimit", + "printedName": "activityChunkRetryLimit", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -5414,457 +4676,219 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ "Final" ], - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:relativeTo:compressionMethod:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" }, { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with10relativeTo17compressionMethod10bufferSize8progressySS_10Foundation3URLVAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with10relativeTo17compressionMethod10bufferSize8progressySS_10Foundation3URLVAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:fileURL:compressionMethod:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with7fileURL17compressionMethod10bufferSize8progressySS_10Foundation0H0VAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with7fileURL17compressionMethod10bufferSize8progressySS_10Foundation0H0VAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:type:uncompressedSize:modificationDate:permissions:compressionMethod:bufferSize:progress:provider:)", + "kind": "Var", + "name": "checkFirmwareUpdatePeriod", + "printedName": "checkFirmwareUpdatePeriod", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "hasDefaultArg": true, - "usr": "s:10Foundation4DateV" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", - "children": [ - { - "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "hasDefaultArg": true, - "usr": "s:Sq" + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with4type16uncompressedSize16modificationDate11permissions17compressionMethod06bufferI08progress8providerySS_AA7ZTEntryV0E4TypeOs6UInt32V10Foundation0K0Vs6UInt16VSgAA013ZTCompressionN0OASSo10NSProgressCSgAT4DataVSi_SitKXEtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with4type16uncompressedSize16modificationDate11permissions17compressionMethod06bufferI08progress8providerySS_AA7ZTEntryV0E4TypeOs6UInt32V10Foundation0K0Vs6UInt16VSgAA013ZTCompressionN0OASSo10NSProgressCSgAT4DataVSi_SitKXEtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "remove", - "printedName": "remove(_:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC6remove_10bufferSize8progressyAA7ZTEntryV_s6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC6remove_10bufferSize8progressyAA7ZTEntryV_s6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "extract", - "printedName": "extract(_:to:bufferSize:skipCRC32:progress:)", + "kind": "Var", + "name": "enableAnalyticsData", + "printedName": "enableAnalyticsData", "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", - "hasDefaultArg": true, "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", - "children": [ - { - "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC7extract_2to10bufferSize9skipCRC328progresss6UInt32VAA7ZTEntryV_10Foundation3URLVAJSbSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC7extract_2to10bufferSize9skipCRC328progresss6UInt32VAA7ZTEntryV_10Foundation3URLVAJSbSo10NSProgressCSgtKF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "extract", - "printedName": "extract(_:bufferSize:skipCRC32:progress:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -5873,148 +4897,64 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC7extract_10bufferSize9skipCRC328progress8consumers6UInt32VAA7ZTEntryV_AJSbSo10NSProgressCSgy10Foundation4DataVKXEtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC7extract_10bufferSize9skipCRC328progress8consumers6UInt32VAA7ZTEntryV_AJSbSo10NSProgressCSgy10Foundation4DataVKXEtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTArchiveC", - "mangledName": "$s9ZTCoreKit9ZTArchiveC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ] + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "AnyIterator", - "printedName": "Swift.AnyIterator", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:s11AnyIteratorV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSignal", - "printedName": "ZTSignal", - "children": [ + ] + }, { "kind": "Var", - "name": "fireCount", - "printedName": "fireCount", + "name": "autorestartBackgroundDfu", + "printedName": "autorestartBackgroundDfu", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivp", - "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivp", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -6027,29 +4967,75 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivg", - "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivg", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "retainLastData", - "printedName": "retainLastData", + "name": "getChunksOnApplicationDidBecomeActive", + "printedName": "getChunksOnApplicationDidBecomeActive", "children": [ { "kind": "TypeNominal", @@ -6059,8 +5045,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -6084,11 +5070,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6113,11 +5097,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvs", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6136,11 +5118,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvM", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6151,32 +5131,24 @@ }, { "kind": "Var", - "name": "lastDataFired", - "printedName": "lastDataFired", + "name": "enablePacketsDataLogging", + "printedName": "enablePacketsDataLogging", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -6189,158 +5161,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "observers", - "printedName": "observers", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[AnyObject]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[AnyObject]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "declAttributes": [ "Final" ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(retainLastData:)", + "kind": "Var", + "name": "cachedPacketsBatchUploadSize", + "printedName": "cachedPacketsBatchUploadSize", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "subscribe", - "printedName": "subscribe(with:callback:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -6349,108 +5285,107 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribeOnce", - "printedName": "subscribeOnce(with:callback:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chunkDuration", + "printedName": "chunkDuration", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", - "DiscardableResult", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribePast", - "printedName": "subscribePast(with:callback:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -6459,252 +5394,132 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribePastOnce", - "printedName": "subscribePastOnce(with:callback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "fire", - "printedName": "fire(_:)", + "name": "clear", + "printedName": "clear()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC4fireyyxF", - "mangledName": "$s9ZTCoreKit8ZTSignalC4fireyyxF", + "usr": "s:9ZTCoreKit10ZTSettingsC5clearyyF", + "mangledName": "$s9ZTCoreKit10ZTSettingsC5clearyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTSettingsC", + "mangledName": "$s9ZTCoreKit10ZTSettingsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTPacketDfuCharacteristic", + "printedName": "ZTPacketDfuCharacteristic", + "children": [ { - "kind": "Function", - "name": "cancelSubscription", - "printedName": "cancelSubscription(for:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", - "mangledName": "$s9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "cancelAllSubscriptions", - "printedName": "cancelAllSubscriptions()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", - "mangledName": "$s9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearLastData", - "printedName": "clearLastData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13clearLastDatayyF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13clearLastDatayyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fire", - "printedName": "fire()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", - "mangledName": "$s9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == ()>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTSignalC", - "mangledName": "$s9ZTCoreKit8ZTSignalC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "Final", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSignalSubscription", - "printedName": "ZTSignalSubscription", - "children": [ - { - "kind": "Var", - "name": "observer", - "printedName": "observer", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "AnyObject?" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ReferenceOwnership", - "RawDocComment" - ], - "ownership": 1, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -6714,113 +5529,53 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "AnyObject?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "static": true, "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AnyObject?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "once", - "printedName": "once", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -6831,210 +5586,68 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "filter", - "printedName": "filter(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sample", - "printedName": "sample(every:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + "name": "ZTPacketDfuCharacteristic", + "printedName": "ZTCoreKit.ZTPacketDfuCharacteristic", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onQueue", - "printedName": "onQueue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", - "DiscardableResult", + "Required", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "cancel", - "printedName": "cancel()", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", @@ -7043,82 +5656,58 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", + "Override", "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "Final", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] }, { - "kind": "OperatorDecl", - "name": "=>", - "printedName": "=>", - "declKind": "InfixOperator", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "Infix" + "RawDocComment" ] }, { - "kind": "Function", - "name": "=>", - "printedName": "=>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", - "mangledName": "$s9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" }, { "kind": "Import", @@ -7132,218 +5721,328 @@ }, { "kind": "TypeDecl", - "name": "ZTMessageTime", - "printedName": "ZTMessageTime", + "name": "ZTBleManagerState", + "printedName": "ZTBleManagerState", "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "off", + "printedName": "off", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "on", + "printedName": "on", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "scanning", + "printedName": "scanning", "children": [ { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resetting", + "printedName": "resetting", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", @@ -7358,12 +6057,11 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -7379,51 +6077,17 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit13ZTMessageTimeV", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "DFUPeripheralSelectorDelegate", - "children": [ + }, { "kind": "Function", - "name": "select", - "printedName": "select(_:advertisementData:RSSI:hint:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", @@ -7433,154 +6097,120 @@ }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : AnyObject]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)select:advertisementData:RSSI:hint:", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, + "static": true, + "implicit": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "filterBy", - "printedName": "filterBy(hint:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)filterByHint:", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP8filterBy4hintSaySo6CBUUIDCGSgAG_tF", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "filterByHint:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, + "implicit": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP", + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } ] }, { @@ -7595,359 +6225,707 @@ }, { "kind": "TypeDecl", - "name": "ZTDateTransform", - "printedName": "ZTDateTransform", + "name": "ZTRealtimeMetric", + "printedName": "ZTRealtimeMetric", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "duration", + "printedName": "duration", "children": [ { - "kind": "TypeNominal", - "name": "ZTDateTransform", - "printedName": "ZTCoreKit.ZTDateTransform", - "usr": "s:9ZTCoreKit15ZTDateTransformC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTDateTransformCACycfc", - "mangledName": "$s9ZTCoreKit15ZTDateTransformCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "steps", + "printedName": "steps", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "cycleDuration", + "printedName": "cycleDuration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepCadence", + "printedName": "stepCadence", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSpeed", + "printedName": "stepSpeed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "kind": "Var", + "name": "distance", + "printedName": "distance", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "footDistance", + "printedName": "footDistance", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit15ZTDateTransformC", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + "RawDocComment" + ] + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Var", + "name": "energySum", + "printedName": "energySum", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walkingQualityScore", + "printedName": "walkingQualityScore", + "children": [ { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDateTransformUTC", - "printedName": "ZTDateTransformUTC", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "stairsClimbed", + "printedName": "stairsClimbed", "children": [ { - "kind": "TypeNominal", - "name": "ZTDateTransformUTC", - "printedName": "ZTCoreKit.ZTDateTransformUTC", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCCACycfc", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "intenseActivity", + "printedName": "intenseActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "slope", + "printedName": "slope", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "accelerationFoot", + "printedName": "accelerationFoot", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "kind": "Var", + "name": "strideLength", + "printedName": "strideLength", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "relativePronationAngleFoot", + "printedName": "relativePronationAngleFoot", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pronationAngleFFI", + "printedName": "pronationAngleFFI", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Var", + "name": "pronationAngleFFO", + "printedName": "pronationAngleFFO", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "plantarFlexionAngularSpeedMaxPropulsion", + "printedName": "plantarFlexionAngularSpeedMaxPropulsion", + "children": [ { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUStreamHexError", - "printedName": "DFUStreamHexError", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "invalidHexFile", - "printedName": "invalidHexFile", + "name": "symmetry", + "printedName": "symmetry", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamHexError.Type) -> ZTCoreKit.DFUStreamHexError", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamHexError.Type", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" } ] } @@ -7955,62 +6933,50 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "value", + "printedName": "value()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -8019,54 +6985,181 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(value:activityType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "init_kind": "Designated" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -8084,17 +7177,421 @@ }, { "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDateDefaultTransform", + "printedName": "ZTDateDefaultTransform", + "children": [ + { + "kind": "TypeDecl", + "name": "Unit", + "printedName": "Unit", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "milliseconds", + "printedName": "milliseconds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit?", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Double", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDateDefaultTransform", + "printedName": "ZTCoreKit.ZTDateDefaultTransform", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC" + }, + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } ] }, @@ -8108,6 +7605,46 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", "name": "ZTDataTransform", @@ -8268,6 +7805,16 @@ } ] }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -8287,33 +7834,34 @@ }, { "kind": "TypeDecl", - "name": "ZTCharacteristic", - "printedName": "ZTCharacteristic", + "name": "ZTNotifyCharacteristic", + "printedName": "ZTNotifyCharacteristic", "children": [ { "kind": "Var", - "name": "service", - "printedName": "service", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "ZTCoreKit.ZTService?" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "ReferenceOwnership", - "SetterAccess", "AccessControl", "RawDocComment" ], - "ownership": 1, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -8323,32 +7871,28 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTService?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", @@ -8366,13 +7910,17 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -8395,169 +7943,250 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "characteristic", - "printedName": "characteristic", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "CoreBluetooth.CBCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "usr": "s:Sq" + "name": "ZTNotifyCharacteristic", + "printedName": "ZTCoreKit.ZTNotifyCharacteristic", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", + "Required", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTAlgoPrecisionMode", + "children": [ + { + "kind": "Var", + "name": "defaultMode", + "printedName": "defaultMode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "CoreBluetooth.CBCharacteristic?", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "valueUpdatedTimeInterval", - "printedName": "valueUpdatedTimeInterval", + "name": "economicMode", + "printedName": "economicMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "performanceMode", + "printedName": "performanceMode", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "valueWrittenTimeInterval", - "printedName": "valueWrittenTimeInterval", + "name": "parameters", + "printedName": "parameters", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -8566,52 +8195,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isNotifying", - "printedName": "isNotifying", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -8620,305 +8274,176 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "onValueUpdated", - "printedName": "onValueUpdated", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onValueWritten", - "printedName": "onValueWritten", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Var", - "name": "onNotificationUpdated", - "printedName": "onNotificationUpdated", + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUServiceController", + "printedName": "DFUServiceController", + "children": [ + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)pause", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5pauseyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", "AccessControl", + "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Function", + "name": "resume", + "printedName": "resume()", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)resume", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6resumeyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "Required", + "ObjC", "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "abort", + "printedName": "abort()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)abort", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5abortSbyF", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueWritten", - "printedName": "valueWritten()", + "name": "restart", + "printedName": "restart()", "children": [ { "kind": "TypeNominal", @@ -8927,68 +8452,172 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)restart", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7restartyyF", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "readValue", - "printedName": "readValue()", + "kind": "Var", + "name": "paused", + "printedName": "paused", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC9readValueyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)paused", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)paused", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "notificationUpdated", - "printedName": "notificationUpdated()", + "kind": "Var", + "name": "aborted", + "printedName": "aborted", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)aborted", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)aborted", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] } ], "declKind": "Class", - "usr": "s:9ZTCoreKit16ZTCharacteristicC", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { @@ -9013,29 +8642,27 @@ }, { "kind": "TypeDecl", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTHardwareCharacteristic", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTMessageInactivityTimeout", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "left", + "printedName": "left", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -9049,20 +8676,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -9077,20 +8700,16 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -9105,47 +8724,35 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "right", + "printedName": "right", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -9156,227 +8763,59 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkConfig", - "printedName": "ZTMessageChunkConfig", - "children": [ - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte1", - "printedName": "byte1", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, @@ -9387,9 +8826,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" }, { "kind": "TypeNominal", @@ -9407,8 +8846,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -9423,9 +8862,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" }, { "kind": "TypeNominal", @@ -9435,8 +8874,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -9460,91 +8899,13 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Var", - "name": "side", - "printedName": "side", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "flag", - "printedName": "flag", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, { "kind": "Var", "name": "description", @@ -9558,8 +8919,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -9579,8 +8940,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" @@ -9589,8 +8950,8 @@ } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -9622,33 +8983,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSession", - "printedName": "ZTSession", - "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTSessionC", - "mangledName": "$s9ZTCoreKit9ZTSessionC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -9660,48 +8996,38 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTService", - "printedName": "ZTService", + "name": "ZTCBCentralManagerProtocol", + "printedName": "ZTCBCentralManagerProtocol", "children": [ { "kind": "Var", - "name": "device", - "printedName": "device", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "ZTCoreKit.ZTDevice?" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -9710,106 +9036,105 @@ "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "ZTCoreKit.ZTDevice?", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "service", - "printedName": "service", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Set", + "printedName": "Set()", + "children": [ { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "state", + "printedName": "state", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -9818,78 +9143,173 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "characteristics", - "printedName": "characteristics", + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "retrievePeripherals", + "printedName": "retrievePeripherals(withIdentifiers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.UUID]", + "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "retrieveConnectedPeripherals", + "printedName": "retrieveConnectedPeripherals(withServices:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } ], - "hasStorage": true, - "accessors": [ + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scanForPeripherals", + "printedName": "scanForPeripherals(withServices:options:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", @@ -9899,158 +9319,291 @@ }, { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "characteristic", - "printedName": "characteristic(_:)", + "name": "connect", + "printedName": "connect(_:options:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", - "mangledName": "$s9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCharacteristic>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Function", + "name": "cancelPeripheralConnection", + "printedName": "cancelPeripheralConnection(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCustomDateFormatTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(formatString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" + "AccessControl" ], "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" }, { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", "moduleName": "ZTCoreKit", - "static": true, + "overriding": true, + "implicit": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Override" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTServiceC", - "mangledName": "$s9ZTCoreKit9ZTServiceC", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" + ], + "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "superclassNames": [ + "ZTCoreKit.ZTDateFormatterTransform" ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } ] }, @@ -10066,30 +9619,39 @@ }, { "kind": "TypeDecl", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", + "name": "ZTMapError", + "printedName": "ZTMapError", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10098,52 +9660,107 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "currentValue", + "printedName": "currentValue", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10152,73 +9769,106 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "name": "reason", + "printedName": "reason", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10227,74 +9877,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "file", + "printedName": "file", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10303,215 +9987,390 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService, τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "LegacyDFUServiceInitiator", - "printedName": "LegacyDFUServiceInitiator", - "children": [ + }, { - "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", + "kind": "Var", + "name": "function", + "printedName": "function", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "startWithTargetWithIdentifier:", "declAttributes": [ - "ObjC", - "Override", + "HasInitialValue", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "LegacyDFUServiceInitiator", - "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "line", + "printedName": "line", + "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvp", "moduleName": "ZTCoreKit", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithCentralManager:target:", "declAttributes": [ - "ObjC", - "Override", - "Available" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "init_kind": "Designated" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "printedName": "init(key:currentValue:reason:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "LegacyDFUServiceInitiator", - "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + "name": "ZTMapError", + "printedName": "ZTCoreKit.ZTMapError", + "usr": "s:9ZTCoreKit10ZTMapErrorV" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Swift.UInt?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } ], "hasDefaultArg": true, @@ -10519,69 +10378,78 @@ } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "usr": "s:9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", "declAttributes": [ - "ObjC", - "Override" + "AccessControl" ], "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit10ZTMapErrorV", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.DFUServiceInitiator", - "ObjectiveC.NSObject" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -10589,13 +10457,6 @@ "printedName": "CustomStringConvertible", "usr": "s:s23CustomStringConvertibleP", "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -10611,10 +10472,13 @@ }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -10626,462 +10490,227 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "ZTPassthroughAlgo", - "printedName": "ZTPassthroughAlgo", + "name": "ZTPacketCachable", + "printedName": "ZTPacketCachable", "children": [ + { + "kind": "AssociatedType", + "name": "Activity", + "printedName": "Activity", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8ActivityQa", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8ActivityQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(id: ZTCoreKit.ZTAlgoStatus)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "startNewChunk", - "printedName": "startNewChunk", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "changeProductMode", - "printedName": "changeProductMode", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(mode: ZTCoreKit.ZTAlgoMode)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setPrecisionMode", - "printedName": "setPrecisionMode", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(mode: ZTCoreKit.ZTAlgoPrecisionMode)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setMinimumStepsForAnalysis", - "printedName": "setMinimumStepsForAnalysis", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setMinimumStridesForAnalysis", - "printedName": "setMinimumStridesForAnalysis", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setStreamingMode", - "printedName": "setStreamingMode", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "fulfilledAt", + "printedName": "fulfilledAt", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11090,161 +10719,180 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", + "kind": "Var", + "name": "sentAt", + "printedName": "sentAt", "children": [ { "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDfuService", - "printedName": "ZTDfuService", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11253,70 +10901,89 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11325,41 +10992,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -11374,41 +11019,19 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvs", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -11423,1039 +11046,773 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16VvM", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, - "declAttributes": [ - "Final" - ], + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Var", + "name": "statusRawValue", + "printedName": "statusRawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuService", - "printedName": "ZTCoreKit.ZTDfuService", - "usr": "s:9ZTCoreKit12ZTDfuServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvp", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit12ZTDfuServiceC", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTRealtimeMetric", - "printedName": "ZTRealtimeMetric", - "children": [ - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "steps", - "printedName": "steps", + "name": "status", + "printedName": "status", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "cycleDuration", - "printedName": "cycleDuration", + "name": "scheduledDeleted", + "printedName": "scheduledDeleted", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepCadence", - "printedName": "stepCadence", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "stepSpeed", - "printedName": "stepSpeed", + "name": "rawData", + "printedName": "rawData", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "distance", - "printedName": "distance", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "footDistance", - "printedName": "footDistance", + "name": "activity", + "printedName": "activity", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "DependentMember", + "printedName": "τ_0_0.Activity" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "DependentMember", + "printedName": "τ_0_0.Activity" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "energySum", - "printedName": "energySum", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "DependentMember", + "printedName": "τ_0_0.Activity" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "walkingQualityScore", - "printedName": "walkingQualityScore", + "name": "fwVersion", + "printedName": "fwVersion", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsClimbed", - "printedName": "stairsClimbed", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "intenseActivity", - "printedName": "intenseActivity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "slope", - "printedName": "slope", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "accelerationFoot", - "printedName": "accelerationFoot", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "strideLength", - "printedName": "strideLength", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "relativePronationAngleFoot", - "printedName": "relativePronationAngleFoot", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pronationAngleFFI", - "printedName": "pronationAngleFFI", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pronationAngleFFO", - "printedName": "pronationAngleFFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "plantarFlexionAngularSpeedMaxPropulsion", - "printedName": "plantarFlexionAngularSpeedMaxPropulsion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "symmetry", - "printedName": "symmetry", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(data:activity:fwVersion:context:name:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(value:activityType:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "usr": "s:9ZTCoreKit16ZTPacketCachableP4data8activity9fwVersion7context4namex10Foundation4DataV_AA010ZTActivityD0_pSgSSSgSo22NSManagedObjectContextCSStcfc", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP4data8activity9fwVersion7context4namex10Foundation4DataV_AA010ZTActivityD0_pSgSSSgSo22NSManagedObjectContextCSStcfc", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTPacketCachablePAAE2eeoiySbx_xtFZ", + "mangledName": "$s9ZTCoreKit16ZTPacketCachablePAAE2eeoiySbx_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit16ZTPacketCachableP", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : CoreData.NSManagedObject, τ_0_0.Activity : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "enumRawTypeName": "String", "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, { "kind": "Conformance", "name": "Hashable", @@ -12465,32 +11822,17 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -12499,261 +11841,72 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTCBCentralManagerProtocol", - "printedName": "ZTCBCentralManagerProtocol", + "name": "ZTServices", + "printedName": "ZTServices", "children": [ { - "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "kind": "TypeDecl", + "name": "Primary", + "printedName": "Primary", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "state", - "printedName": "state", - "children": [ - { - "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "stopScan", - "printedName": "stopScan()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "retrievePeripherals", - "printedName": "retrievePeripherals(withIdentifiers:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.UUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "retrieveConnectedPeripherals", - "printedName": "retrieveConnectedPeripherals(withServices:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -12762,38 +11915,23 @@ "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scanForPeripherals", - "printedName": "scanForPeripherals(withServices:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -12802,1605 +11940,921 @@ "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "commands", + "printedName": "commands", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] } ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "notifyData", + "printedName": "notifyData", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "indicateData", + "printedName": "indicateData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "batteryLevel", + "printedName": "batteryLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pairedSoles", + "printedName": "pairedSoles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "test", + "printedName": "test", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "cancelPeripheralConnection", - "printedName": "cancelPeripheralConnection(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTSessionDelegate", - "printedName": "ZTSessionDelegate", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSessionDelegate", - "printedName": "ZTCoreKit.ZTSessionDelegate", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate(im)init", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:didBecomeInvalidWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:didBecomeInvalidWithError:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:didBecomeInvalidWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didReceive:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "AuthChallengeDisposition", - "printedName": "Foundation.URLSession.AuthChallengeDisposition", - "usr": "c:@E@NSURLSessionAuthChallengeDisposition" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLCredential?", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLCredential", - "printedName": "Foundation.URLCredential", - "usr": "c:objc(cs)NSURLCredential" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didReceiveChallenge:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task10didReceive17completionHandlerySo12NSURLSessionC_So0L4TaskCSo28NSURLAuthenticationChallengeCySo0l4AuthO11DispositionV_So15NSURLCredentialCSgtctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didReceiveChallenge:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task15didSendBodyData14totalBytesSent0lm10ExpectedToI0ySo12NSURLSessionC_So0Q4TaskCs5Int64VA2NtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:needNewBodyStream:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.InputStream?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.InputStream?", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "InputStream", - "printedName": "Foundation.InputStream", - "usr": "c:objc(cs)NSInputStream" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:needNewBodyStream:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task17needNewBodyStreamySo12NSURLSessionC_So0L4TaskCySo07NSInputK0CSgctF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO", "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:needNewBodyStream:", "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", + "kind": "TypeDecl", + "name": "PrimaryOld", + "printedName": "PrimaryOld", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?) -> ()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task26willPerformHTTPRedirection10newRequest17completionHandlerySo12NSURLSessionC_So0O4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didFinishCollecting:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" }, { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didFinishCollectingMetrics:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0K4TaskCSo0kL7MetricsCtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didFinishCollectingMetrics:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didCompleteWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didCompleteWithError:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0L4TaskCs0K0_pSgtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didCompleteWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:taskIsWaitingForConnectivity:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:taskIsWaitingForConnectivity:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0L4TaskCtF", - "moduleName": "ZTCoreKit", - "intro_Macosx": "10.13", - "intro_iOS": "11.0", - "intro_tvOS": "11.0", - "intro_watchOS": "4.0", - "objc_name": "URLSession:taskIsWaitingForConnectivity:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Available", - "Available", - "Available", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:dataTask:didReceive:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:dataTask:didReceiveData:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0k4DataH0C10Foundation0L0VtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:dataTask:didReceiveData:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:dataTask:willCacheResponse:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.CachedURLResponse?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.CachedURLResponse?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:dataTask:willCacheResponse:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_8dataTask17willCacheResponse17completionHandlerySo12NSURLSessionC_So0n4DataH0CSo19NSCachedURLResponseCyAMSgctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:dataTask:willCacheResponse:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0p8DownloadH0Cs5Int64VAMtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask12didWriteData17totalBytesWritten0lm10ExpectedToJ0ySo12NSURLSessionC_So0q8DownloadH0Cs5Int64VA2NtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didFinishDownloadingTo:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" }, { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didFinishDownloadingToURL:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0m8DownloadH0C10Foundation3URLVtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didFinishDownloadingToURL:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ + "kind": "Var", + "name": "commands", + "printedName": "commands", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ + "kind": "Var", + "name": "notifyData", + "printedName": "notifyData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Var", + "name": "indicateData", + "printedName": "indicateData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Var", + "name": "batteryLevel", + "printedName": "batteryLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pairedSoles", + "printedName": "pairedSoles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ] }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTModelNumberCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeDecl", + "name": "DeviceInformation", + "printedName": "DeviceInformation", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", @@ -14409,593 +12863,1057 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", "moduleName": "ZTCoreKit", "static": true, - "implicit": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", "moduleName": "ZTCoreKit", "static": true, - "implicit": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "set" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "manufacturerName", + "printedName": "manufacturerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "modelNumber", + "printedName": "modelNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "firmwareRevision", + "printedName": "firmwareRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "hardwareRevision", + "printedName": "hardwareRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, "declAttributes": [ - "Final" + "AccessControl" ], - "accessorKind": "_modify" + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ] }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "TypeDecl", + "name": "DeviceDFU", + "printedName": "DeviceDFU", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + ] }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", + "children": [ + { + "kind": "Var", + "name": "dfuControlPoint", + "printedName": "dfuControlPoint", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfuPacket", + "printedName": "dfuPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfuButtonless", + "printedName": "dfuButtonless", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, "declAttributes": [ - "Required" - ], - "init_kind": "Designated" + "AccessControl" + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO", + "mangledName": "$s9ZTCoreKit10ZTServicesO", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTCBPeripheralProtocol", - "printedName": "ZTCBPeripheralProtocol", + "name": "ZTRealtimeSide", + "printedName": "ZTRealtimeSide", "children": [ { "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4noneyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4noneyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4leftyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4leftyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "right", + "printedName": "right", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO5rightyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO5rightyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "rssi", - "printedName": "rssi", + "name": "both", + "printedName": "both", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "state", - "printedName": "state", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheralState", - "printedName": "CoreBluetooth.CBPeripheralState", - "usr": "c:@E@CBPeripheralState" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheralState", - "printedName": "CoreBluetooth.CBPeripheralState", - "usr": "c:@E@CBPeripheralState" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4bothyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4bothyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "services", - "printedName": "services", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[CoreBluetooth.CBService]?", + "printedName": "ZTCoreKit.ZTRealtimeSide?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "usr": "s:Sa" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBService]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "identifier", - "printedName": "identifier", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "protocolReq": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -15004,152 +13922,102 @@ "children": [ { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "discoverServices", - "printedName": "discoverServices(_:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IntelHex2BinConverter", + "printedName": "IntelHex2BinConverter", + "children": [ { "kind": "Function", - "name": "discoverCharacteristics", - "printedName": "discoverCharacteristics(_:for:)", + "name": "convert", + "printedName": "convert(_:mbrSize:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "readValue", - "printedName": "readValue(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "writeValue", - "printedName": "writeValue(_:for:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Data", @@ -15158,67 +14026,115 @@ }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristicWriteType", - "printedName": "CoreBluetooth.CBCharacteristicWriteType", - "usr": "c:@E@CBCharacteristicWriteType" + "name": "UInt32", + "printedName": "Swift.UInt32", + "hasDefaultArg": true, + "usr": "s:s6UInt32V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", + "usr": "s:9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "setNotifyValue", - "printedName": "setNotifyValue(_:for:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "IntelHex2BinConverter", + "printedName": "ZTCoreKit.IntelHex2BinConverter", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter(im)init", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { @@ -15233,28 +14149,22 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreData", + "printedName": "CoreData", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreTelephony", + "printedName": "CoreTelephony", "declKind": "Import", "moduleName": "ZTCoreKit" }, @@ -15283,369 +14193,157 @@ "name": "CoreBluetooth", "printedName": "CoreBluetooth", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTRealtimeMessage", - "printedName": "ZTRealtimeMessage", + "name": "ZTCharacteristic", + "printedName": "ZTCharacteristic", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "service", + "printedName": "service", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "WeakStorage", + "printedName": "ZTCoreKit.ZTService?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "SetterAccess", "AccessControl", "RawDocComment" ], + "ownership": 1, + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Side", - "printedName": "Side", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "both", - "printedName": "both", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "ZTCoreKit.ZTService?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "senderSide", - "printedName": "senderSide", + "name": "characteristic", + "printedName": "characteristic", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "CoreBluetooth.CBCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15654,55 +14352,60 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "CoreBluetooth.CBCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "concernedSide", - "printedName": "concernedSide", + "name": "valueUpdatedTimeInterval", + "printedName": "valueUpdatedTimeInterval", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15712,54 +14415,59 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "eventType", - "printedName": "eventType", + "name": "valueWrittenTimeInterval", + "printedName": "valueWrittenTimeInterval", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15769,54 +14477,51 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "content", - "printedName": "content", + "name": "isNotifying", + "printedName": "isNotifying", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15825,91 +14530,53 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "onValueUpdated", + "printedName": "onValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessage", - "printedName": "ZTCoreKit.ZTRealtimeMessage", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15918,55 +14585,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "acknowledgment", - "printedName": "acknowledgment", + "name": "onValueWritten", + "printedName": "onValueWritten", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", "children": [ { "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15975,55 +14664,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", "children": [ { "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "realtimeEvent", - "printedName": "realtimeEvent", + "name": "onNotificationUpdated", + "printedName": "onNotificationUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -16032,394 +14743,690 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "realtimeMetrics", - "printedName": "realtimeMetrics", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", - "children": [ - { - "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" - } - ], - "usr": "s:Sq" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "Required", "RawDocComment" ], - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "valueWritten", + "printedName": "valueWritten()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notificationUpdated", + "printedName": "notificationUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit16ZTCharacteristicC", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmwareType", + "printedName": "DFUFirmwareType", + "children": [ + { + "kind": "Var", + "name": "softdevice", + "printedName": "softdevice", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10softdeviceyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", + "kind": "Var", + "name": "bootloader", + "printedName": "bootloader", "children": [ { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeBootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10bootloaderyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "application", + "printedName": "application", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeApplication", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO11applicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "softdeviceBootloader", + "printedName": "softdeviceBootloader", + "children": [ { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO20softdeviceBootloaderyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "softdeviceBootloaderApplication", + "printedName": "softdeviceBootloaderApplication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloaderApplication", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO31softdeviceBootloaderApplicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUFirmwareType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "algoMode", - "printedName": "algoMode", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmwareError", + "printedName": "DFUFirmwareError", + "children": [ + { + "kind": "TypeDecl", + "name": "FileType", + "printedName": "FileType", + "children": [ + { + "kind": "Var", + "name": "zip", + "printedName": "zip", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "precisionMode", - "printedName": "precisionMode", + "name": "binOrHex", + "printedName": "binOrHex", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "consecutiveSteps", - "printedName": "consecutiveSteps", + "name": "dat", + "printedName": "dat", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, + { + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -16428,186 +15435,221 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "declKind": "Enum", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } ] }, { - "kind": "TypeDecl", - "name": "Acknowledgment", - "printedName": "Acknowledgment", + "kind": "Var", + "name": "type", + "printedName": "type", "children": [ { - "kind": "Var", - "name": "command", - "printedName": "command", + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" - } - ], - "usr": "s:Sq" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "Var", - "name": "status", - "printedName": "status", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmware", + "printedName": "DFUFirmware", + "children": [ + { + "kind": "Var", + "name": "fileName", + "printedName": "fileName", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -16616,19 +15658,32 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileName", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -16637,416 +15692,435 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileName", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "ObjC" ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] }, { - "kind": "TypeDecl", - "name": "Event", - "printedName": "Event", + "kind": "Var", + "name": "fileUrl", + "printedName": "fileUrl", "children": [ { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileUrl", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "eventType", - "printedName": "eventType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileUrl", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "valid", + "printedName": "valid", + "children": [ { - "kind": "Var", - "name": "motionId", - "printedName": "motionId", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)valid", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)valid", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ { - "kind": "Var", - "name": "intensity", - "printedName": "intensity", + "kind": "TypeNominal", + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)size", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)size", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parts", + "printedName": "parts", + "children": [ { - "kind": "Var", - "name": "arguments", - "printedName": "arguments", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)parts", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)parts", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToZipFile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFileAC10Foundation3URLV_tKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToZipFile:error:", + "declAttributes": [ + "AccessControl", + "Convenience", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToZipFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFile4typeAC10Foundation3URLV_AA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToZipFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(zipFile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFileAC10Foundation4DataV_tKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithZipFile:error:", + "declAttributes": [ + "AccessControl", + "Convenience", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(zipFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFile4typeAC10Foundation4DataV_AA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithZipFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToBinOrHexFile:urlToDatFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "usr": "s:Sq" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToBinOrHexFile:urlToDatFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC17urlToBinOrHexFile0de3DatI04typeAC10Foundation3URLV_AISgAA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToBinOrHexFile:urlToDatFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(binFile:datFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" - }, { "kind": "TypeNominal", "name": "Data", @@ -17054,1210 +16128,1126 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + "usr": "s:Sq" }, { - "kind": "TypeDecl", - "name": "EventType", - "printedName": "EventType", - "children": [ - { - "kind": "Var", - "name": "motion", - "printedName": "motion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithBinFile:datFile:type:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7binFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithBinFile:datFile:type:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hexFile:datFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ { - "kind": "Var", - "name": "transition", - "printedName": "transition", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithHexFile:datFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7hexFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithHexFile:datFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)init", + "mangledName": "$s9ZTCoreKit11DFUFirmwareCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCore", + "printedName": "ZTCore", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C7versionSSvpZ", + "mangledName": "$s9ZTCoreKit0A0C7versionSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C7versionSSvgZ", + "mangledName": "$s9ZTCoreKit0A0C7versionSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zcVersion", + "printedName": "zcVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvp", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvg", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvs", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvM", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCore", + "printedName": "ZTCoreKit.ZTCore", + "usr": "s:9ZTCoreKit0A0C" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C6sharedACvpZ", + "mangledName": "$s9ZTCoreKit0A0C6sharedACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCore", + "printedName": "ZTCoreKit.ZTCore", + "usr": "s:9ZTCoreKit0A0C" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C6sharedACvgZ", + "mangledName": "$s9ZTCoreKit0A0C6sharedACvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bleManager", + "printedName": "bleManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", + "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", + "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastCommand", + "printedName": "lastCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastCommandResponses", + "printedName": "lastCommandResponses", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", + "children": [ { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } - ] - }, + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeDecl", - "name": "MotionId", - "printedName": "MotionId", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "stepForward", - "printedName": "stepForward", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "stepBackward", - "printedName": "stepBackward", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "stepSideLeft", - "printedName": "stepSideLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepSideRight", - "printedName": "stepSideRight", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepUp", - "printedName": "stepUp", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepDown", - "printedName": "stepDown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastActivityId", + "printedName": "lastActivityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeDecl", - "name": "MotionIntensity", - "printedName": "MotionIntensity", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "low", - "printedName": "low", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "medium", - "printedName": "medium", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "high", - "printedName": "high", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] }, { - "kind": "TypeDecl", - "name": "Metrics", - "printedName": "Metrics", + "kind": "Var", + "name": "leftModuleCommandStatus", + "printedName": "leftModuleCommandStatus", "children": [ { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "kind": "TypeNominal", + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", + "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "usr": "s:Sq" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", + "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectedDevice", + "printedName": "connectedDevice", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "metricId", - "printedName": "metricId", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTDevice?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastDeviceSerialNumber", + "printedName": "lastDeviceSerialNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "metric", - "printedName": "metric", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastDeviceQRCode", + "printedName": "lastDeviceQRCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.UInt8]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastQRCode", + "printedName": "lastQRCode", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -18266,19 +17256,29 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -18287,141 +17287,44 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTPacketDfuCharacteristic", - "printedName": "ZTPacketDfuCharacteristic", - "children": [ + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "isDfuInProgress", + "printedName": "isDfuInProgress", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvp", + "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -18431,16 +17334,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvg", + "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, "declAttributes": [ "Final" @@ -18451,34 +17353,28 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "dfuDelegate", + "printedName": "dfuDelegate", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "ReferenceOwnership", + "AccessControl", + "RawDocComment" ], + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -18489,157 +17385,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTDfuDelegate", + "printedName": "any ZTCoreKit.ZTDfuDelegate", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPacketDfuCharacteristic", - "printedName": "ZTCoreKit.ZTPacketDfuCharacteristic", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTMessageInactivityTimeout", - "children": [ - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -18654,16 +17419,27 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDfuDelegate", + "printedName": "any ZTCoreKit.ZTDfuDelegate", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -18678,33 +17454,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "right", - "printedName": "right", + "name": "firmwareDfuState", + "printedName": "firmwareDfuState", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "ZTCoreKit.DFUState?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", + "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", + "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], @@ -18717,16 +17506,76 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "ZTCoreKit.DFUState?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", + "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentDfuState", + "printedName": "currentDfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -18741,16 +17590,19 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -18765,121 +17617,50 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "onDfuStateUpdated", + "printedName": "onDfuStateUpdated", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", + "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", + "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -18888,328 +17669,318 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", + "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", + "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareType", - "printedName": "DFUFirmwareType", - "children": [ { "kind": "Var", - "name": "softdevice", - "printedName": "softdevice", + "name": "onDfuUploadProgress", + "printedName": "onDfuUploadProgress", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "Swift.Float?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10softdeviceyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", + "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "bootloader", - "printedName": "bootloader", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", + "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeBootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10bootloaderyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 + ] }, { "kind": "Var", - "name": "application", - "printedName": "application", + "name": "onDfuFinishedLeft", + "printedName": "onDfuFinishedLeft", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeApplication", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO11applicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "softdeviceBootloader", - "printedName": "softdeviceBootloader", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO20softdeviceBootloaderyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 + ] }, { "kind": "Var", - "name": "softdeviceBootloaderApplication", - "printedName": "softdeviceBootloaderApplication", + "name": "onDfuFinishedRight", + "printedName": "onDfuFinishedRight", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloaderApplication", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO31softdeviceBootloaderApplicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 4 - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUFirmwareType?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "onDfuFinished", + "printedName": "onDfuFinished", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -19218,372 +17989,210 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "onDfuCopied", + "printedName": "onDfuCopied", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareError", - "printedName": "DFUFirmwareError", - "children": [ - { - "kind": "TypeDecl", - "name": "FileType", - "printedName": "FileType", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "zip", - "printedName": "zip", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setup", + "printedName": "setup(apiKey:secret:appId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "binOrHex", - "printedName": "binOrHex", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Var", - "name": "dat", - "printedName": "dat", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "type", - "printedName": "type", + "kind": "Function", + "name": "clearUser", + "printedName": "clearUser()", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C9clearUseryyF", + "mangledName": "$s9ZTCoreKit0A0C9clearUseryyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "kind": "Function", + "name": "updateOrganization", + "printedName": "updateOrganization(code:appType:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", @@ -19596,90 +18205,9 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmware", - "printedName": "DFUFirmware", - "children": [ - { - "kind": "Var", - "name": "fileName", - "printedName": "fileName", - "children": [ + }, { "kind": "TypeNominal", "name": "Optional", @@ -19692,735 +18220,615 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileName", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", + "mangledName": "$s9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scan", + "printedName": "scan(for:timeout:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileName", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fileUrl", - "printedName": "fileUrl", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.URL?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileUrl", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileUrl", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "valid", - "printedName": "valid", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)valid", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", "moduleName": "ZTCoreKit", + "deprecated": true, "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)valid", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "size", - "printedName": "size", + "kind": "Function", + "name": "scan", + "printedName": "scan(for:timeout:deviceDiscovered:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)size", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)size", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "parts", - "printedName": "parts", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)parts", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)parts", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToZipFile:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFileAC10Foundation3URLV_tKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToZipFile:error:", - "declAttributes": [ - "AccessControl", - "Convenience", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToZipFile:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFile4typeAC10Foundation3URLV_AA0C4TypeOtKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToZipFile:type:error:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(zipFile:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFileAC10Foundation4DataV_tKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithZipFile:error:", - "declAttributes": [ - "AccessControl", - "Convenience", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(zipFile:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFile4typeAC10Foundation4DataV_AA0C4TypeOtKcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", "moduleName": "ZTCoreKit", - "objc_name": "initWithZipFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToBinOrHexFile:urlToDatFile:type:)", + "kind": "Function", + "name": "scan", + "printedName": "scan(macAddress:timeout:deviceDiscovered:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.URL?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToBinOrHexFile:urlToDatFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC17urlToBinOrHexFile0de3DatI04typeAC10Foundation3URLV_AISgAA0C4TypeOtKcfc", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToBinOrHexFile:urlToDatFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(binFile:datFile:type:)", + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C8stopScanyyF", + "mangledName": "$s9ZTCoreKit0A0C8stopScanyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectWithDevice", + "printedName": "connectWithDevice(_:timeout:isDfu:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithBinFile:datFile:type:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7binFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", "moduleName": "ZTCoreKit", - "objc_name": "initWithBinFile:datFile:type:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(hexFile:datFile:type:)", + "kind": "Function", + "name": "connect", + "printedName": "connect(withCode:timeout:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithHexFile:datFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7hexFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtKcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", + "mangledName": "$s9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", "moduleName": "ZTCoreKit", - "objc_name": "initWithHexFile:datFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "connectWithCode", + "printedName": "connectWithCode(_:timeout:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)init", - "mangledName": "$s9ZTCoreKit11DFUFirmwareCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTIndicateCharacteristic", - "printedName": "ZTIndicateCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -20429,788 +18837,1147 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo(code:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "Function", + "name": "tryReconnect", + "printedName": "tryReconnect(completion:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkConnectedDevice", + "printedName": "checkConnectedDevice(completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Function", + "name": "setDeepSleepMode", + "printedName": "setDeepSleepMode()", "children": [ { "kind": "TypeNominal", - "name": "ZTIndicateCharacteristic", - "printedName": "ZTCoreKit.ZTIndicateCharacteristic", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC" + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "mangledName": "$s9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initiateBackgroundDFU", + "printedName": "initiateBackgroundDFU(isRestartRequired:isManualMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", + "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Final", "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "initiateBackgroundDFU", + "printedName": "initiateBackgroundDFU(path:isManualMode:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", + "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", + "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Final", "AccessControl", - "Override", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "OperatorDecl", - "name": "<<-", - "printedName": "<<-", - "declKind": "InfixOperator", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Infix", - "RawDocComment" - ] - }, - { - "kind": "OperatorDecl", - "name": "->>", - "printedName": "->>", - "declKind": "InfixOperator", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Infix", - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "isFirmwareUpdateRequired", + "printedName": "isFirmwareUpdateRequired(firmwareRevision:completion:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "mangledName": "$s9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Function", + "name": "isPendingEmbeddedActivity", + "printedName": "isPendingEmbeddedActivity(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "mangledName": "$s9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "pushPendingEmbeddedActivities", + "printedName": "pushPendingEmbeddedActivities(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", + "mangledName": "$s9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Function", + "name": "updateFirmware", + "printedName": "updateFirmware(packageType:isButtonless:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDfuPackageType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "mangledName": "$s9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "updateFirmware", + "printedName": "updateFirmware(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C14updateFirmware4pathySS_tF", + "mangledName": "$s9ZTCoreKit0A0C14updateFirmware4pathySS_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "dfuStateDidChange", + "printedName": "dfuStateDidChange(to:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "mangledName": "$s9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuStateDidChangeTo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "dfuFailed", + "printedName": "dfuFailed(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C9dfuFailed5erroryAA7ZTErrorO_tF", + "mangledName": "$s9ZTCoreKit0A0C9dfuFailed5erroryAA7ZTErrorO_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "dfuError", + "printedName": "dfuError(_:didOccurWithMessage:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "mangledName": "$s9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuError:didOccurWithMessage:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "dfuProgressDidChange", + "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "mangledName": "$s9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Function", + "name": "logWith", + "printedName": "logWith(_:message:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", + "mangledName": "$s9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", + "moduleName": "ZTCoreKit", + "objc_name": "logWith:message:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Function", + "name": "checkDfuState", + "printedName": "checkDfuState()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C13checkDfuStateyyF", + "mangledName": "$s9ZTCoreKit0A0C13checkDfuStateyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit0A0C", + "mangledName": "$s9ZTCoreKit0A0C", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + "hasMissingDesignatedInitializers": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "DFUServiceDelegate", + "printedName": "DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "kind": "Conformance", + "name": "DFUProgressDelegate", + "printedName": "DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "LoggerDelegate", + "printedName": "LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "ZTDatabaseService", + "printedName": "ZTDatabaseService", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Var", + "name": "currentActivityId", + "printedName": "currentActivityId", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Constructor", + "name": "init", + "printedName": "init(context:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "ZTDatabaseService", + "printedName": "ZTCoreKit.ZTDatabaseService<τ_0_0, τ_0_1>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_0" + "printedName": "τ_0_1" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "hasDefaultArg": true, + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC7contextACyxq_GSo22NSManagedObjectContextC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC7contextACyxq_GSo22NSManagedObjectContextC_tcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Function", + "name": "fetchActivity", + "printedName": "fetchActivity(withId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13fetchActivity6withIdq_SgSS_tYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13fetchActivity6withIdq_SgSS_tYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchActivity", + "printedName": "fetchActivity(withSerial:)", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "τ_0_1?", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_0" + "printedName": "τ_0_1" } ], - "usr": "s:Sa" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13fetchActivity10withSerialq_SgSS_tYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13fetchActivity10withSerialq_SgSS_tYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Function", + "name": "createActivity", + "printedName": "createActivity(withId:updateBlock:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", @@ -21219,669 +19986,349 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "((τ_0_1) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14createActivity6withId11updateBlockq_SgSS_yq_cSgtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14createActivity6withId11updateBlockq_SgSS_yq_cSgtYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", + "kind": "Function", + "name": "updateActivity", + "printedName": "updateActivity(id:updateBlock:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1) -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", - "children": [ + ] + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:SD" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14updateActivity2id0E5Block10completionySS_yq_cys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14updateActivity2id0E5Block10completionySS_yq_cys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Function", + "name": "deleteActivity", + "printedName": "deleteActivity(withId:completion:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14deleteActivity6withId10completionySS_ys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14deleteActivity6withId10completionySS_ys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Function", + "name": "createPacket", + "printedName": "createPacket(data:activity:fwVersion:updateBlock:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } ], - "usr": "s:Sa" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Optional", + "printedName": "((τ_0_0) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> ()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12createPacket4data8activity9fwVersion11updateBlockx10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgyxcSgtYaF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12createPacket4data8activity9fwVersion11updateBlockx10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgyxcSgtYaF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Function", + "name": "fetchPackets", + "printedName": "fetchPackets(for:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[τ_0_0], any Swift.Error>) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[τ_0_0], any Swift.Error>", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" + "usr": "s:s6ResultO" } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12fetchPackets3for10completionySS_ys6ResultOySayxGs5Error_pGctF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12fetchPackets3for10completionySS_ys6ResultOySayxGs5Error_pGctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Function", + "name": "fetchPackets", + "printedName": "fetchPackets(forActivityId:from:to:in:)", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", @@ -21889,1116 +20336,942 @@ "printedName": "τ_0_0" } ], - "usr": "s:Sh" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sh" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IntelHex2BinConverter", - "printedName": "IntelHex2BinConverter", - "children": [ - { - "kind": "Function", - "name": "convert", - "printedName": "convert(_:mbrSize:)", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12fetchPackets13forActivityId4from2to2inSayxGSS_s5Int16VSgALSo22NSManagedObjectContextCtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12fetchPackets13forActivityId4from2to2inSayxGSS_s5Int16VSgALSo22NSManagedObjectContextCtYaKF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "trashOldPackets", + "printedName": "trashOldPackets()", "children": [ { "kind": "TypeNominal", - "name": "IntelHex2BinConverter", - "printedName": "ZTCoreKit.IntelHex2BinConverter", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter(im)init", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterCACycfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC15trashOldPacketsyyF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC15trashOldPacketsyyF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCompressionMethod", - "printedName": "ZTCompressionMethod", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", + "kind": "Function", + "name": "updatePackets", + "printedName": "updatePackets(for:from:to:withStatus:completion:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCompressionMethod.Type) -> ZTCoreKit.ZTCompressionMethod", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCompressionMethod.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO4noneyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO4noneyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13updatePackets3for4from2to10withStatus10completionySS_s5Int16VAkA8ZTPacketC0K0Oys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13updatePackets3for4from2to10withStatus10completionySS_s5Int16VAkA8ZTPacketC0K0Oys5Error_pSgctF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "deflate", - "printedName": "deflate", + "kind": "Function", + "name": "add", + "printedName": "add(_:to:in:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCompressionMethod.Type) -> ZTCoreKit.ZTCompressionMethod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCompressionMethod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO7deflateyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO7deflateyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC3add_2to2inyx_SSSo22NSManagedObjectContextCtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC3add_2to2inyx_SSSo22NSManagedObjectContextCtYaKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "update", + "printedName": "update(_:withNewStatus:in:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCompressionMethod?", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValueACSgs6UInt16V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValueACSgs6UInt16V_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC6update_13withNewStatus2inySayxG_AA8ZTPacketC0H0OSo22NSManagedObjectContextCtYaF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC6update_13withNewStatus2inySayxG_AA8ZTPacketC0H0OSo22NSManagedObjectContextCtYaF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "update", + "printedName": "update(packet:updateBlock:completion:)", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvp", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvg", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt16", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + ] + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC6update6packet0E5Block10completionyx_yxcys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC6update6packet0E5Block10completionyx_yxcys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "Import", - "name": "Compression", - "printedName": "Compression", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTAlgoState", - "printedName": "ZTAlgoState", + "name": "ZTUser", + "printedName": "ZTUser", "children": [ { "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "name": "attributes", + "printedName": "attributes", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "walking", - "printedName": "walking", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "running", - "printedName": "running", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pedaling", - "printedName": "pedaling", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvs", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsUp", - "printedName": "stairsUp", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsDown", - "printedName": "stairsDown", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "standing", - "printedName": "standing", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "sitting", - "printedName": "sitting", + "name": "organizationId", + "printedName": "organizationId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "kneeling", - "printedName": "kneeling", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "tiptoe", - "printedName": "tiptoe", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "vibration", - "printedName": "vibration", + "name": "appId", + "printedName": "appId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "slip", - "printedName": "slip", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "incident", - "printedName": "incident", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "freewheel", - "printedName": "freewheel", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoState?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23007,198 +21280,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit11ZTAlgoStateO", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "userId", + "printedName": "userId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvp", "moduleName": "ZTCoreKit", - "protocolReq": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23208,26 +21391,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" }, { @@ -23243,26 +21423,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "set" }, { @@ -23277,42 +21454,101 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, "implicit": true, - "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTUser?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTUser", + "printedName": "ZTCoreKit.ZTUser", + "usr": "s:9ZTCoreKit6ZTUserC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Required", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP", + "declKind": "Class", + "usr": "s:9ZTCoreKit6ZTUserC", + "mangledName": "$s9ZTCoreKit6ZTUserC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, @@ -23326,16 +21562,6 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "Import", "name": "Foundation", @@ -23348,333 +21574,260 @@ }, { "kind": "TypeDecl", - "name": "LogLevel", - "printedName": "LogLevel", + "name": "ZTAchievement", + "printedName": "ZTAchievement", "children": [ { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelDebug", - "mangledName": "$s9ZTCoreKit8LogLevelO5debugyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "verbose", - "printedName": "verbose", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelVerbose", - "mangledName": "$s9ZTCoreKit8LogLevelO7verboseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelInfo", - "mangledName": "$s9ZTCoreKit8LogLevelO4infoyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + ] }, { "kind": "Var", - "name": "application", - "printedName": "application", + "name": "type", + "printedName": "type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelApplication", - "mangledName": "$s9ZTCoreKit8LogLevelO11applicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelWarning", - "mangledName": "$s9ZTCoreKit8LogLevelO7warningyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelError", - "mangledName": "$s9ZTCoreKit8LogLevelO5erroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Function", - "name": "name", - "printedName": "name()", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8LogLevelO4nameSSyF", - "mangledName": "$s9ZTCoreKit8LogLevelO4nameSSyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "activityId", + "printedName": "activityId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.LogLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivp", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23683,220 +21836,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivg", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@LogLevel", - "mangledName": "$s9ZTCoreKit8LogLevelO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "LoggerDelegate", - "printedName": "LoggerDelegate", - "children": [ - { - "kind": "Function", - "name": "logWith", - "printedName": "logWith(_:message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate(im)logWith:message:", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP7logWith_7messageyAA8LogLevelO_SStF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.LoggerDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTFirmwareCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -23909,225 +21947,107 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUServiceController", - "printedName": "DFUServiceController", - "children": [ - { - "kind": "Function", - "name": "pause", - "printedName": "pause()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)pause", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5pauseyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resume", - "printedName": "resume()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)resume", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6resumeyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "abort", - "printedName": "abort()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)abort", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5abortSbyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "restart", - "printedName": "restart()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)restart", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7restartyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "paused", - "printedName": "paused", + "name": "appuserId", + "printedName": "appuserId", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)paused", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvp", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24136,43 +22056,121 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)paused", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvg", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "aborted", - "printedName": "aborted", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)aborted", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvp", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24181,634 +22179,571 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)aborted", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvg", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], + "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTTXPower", - "printedName": "ZTTXPower", - "children": [ - { - "kind": "Var", - "name": "dBm0", - "printedName": "dBm0", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm2", - "printedName": "dBm2", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm3", - "printedName": "dBm3", + "name": "duration", + "printedName": "duration", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm4", - "printedName": "dBm4", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm5", - "printedName": "dBm5", + "name": "calories", + "printedName": "calories", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm6", - "printedName": "dBm6", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm7", - "printedName": "dBm7", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm8", - "printedName": "dBm8", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTTXPower?", + "printedName": "ZTCoreKit.ZTAchievement?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "ZTAchievement", + "printedName": "ZTCoreKit.ZTAchievement", + "usr": "s:9ZTCoreKit13ZTAchievementC" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], "init_kind": "Designated" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTTXPowerO", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO", + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTAchievementC", + "mangledName": "$s9ZTCoreKit13ZTAchievementC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "Import", "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTPlist", - "printedName": "ZTPlist", + "name": "ZTService", + "printedName": "ZTService", "children": [ { "kind": "Var", - "name": "folderName", - "printedName": "folderName", + "name": "device", + "printedName": "device", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "WeakStorage", + "printedName": "ZTCoreKit.ZTDevice?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10folderNameSSvpZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC10folderNameSSvpZ", + "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", + "ReferenceOwnership", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isLet": true, + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -24818,43 +22753,47 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ImplicitlyUnwrappedOptional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10folderNameSSvgZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC10folderNameSSvgZ", + "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "service", + "printedName": "service", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC3url10Foundation3URLVvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC3url10Foundation3URLVvp", + "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "HasStorage", + "Final", "AccessControl", "RawDocComment" ], @@ -24868,14 +22807,14 @@ "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC3url10Foundation3URLVvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC3url10Foundation3URLVvg", + "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ @@ -24887,77 +22826,33 @@ }, { "kind": "Var", - "name": "encrypted", - "printedName": "encrypted", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC9encryptedSbvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC9encryptedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC9encryptedSbvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC9encryptedSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "encryption", - "printedName": "encryption", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvp", + "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24966,114 +22861,68 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvg", + "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "static": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "dictionary", - "printedName": "dictionary", + "name": "characteristics", + "printedName": "characteristics", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cache", - "printedName": "cache", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvp", + "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Lazy", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -25082,226 +22931,56 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", "children": [ { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvs", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvM", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvM", + "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "volume", - "printedName": "volume", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC6volumes5Int64Vvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC6volumes5Int64Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC6volumes5Int64Vvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC6volumes5Int64Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "size", - "printedName": "size", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC4sizeSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC4sizeSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC4sizeSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC4sizeSSvg", - "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "fileName", - "printedName": "fileName", + "kind": "Function", + "name": "characteristic", + "printedName": "characteristic(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC8fileNameSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC8fileNameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC8fileNameSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC8fileNameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC4nameSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -25310,32 +22989,18 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC4nameSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "save", - "printedName": "save()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4saveyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4saveyyF", + "usr": "s:9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", + "mangledName": "$s9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCharacteristic>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" @@ -25343,191 +23008,148 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(insideBundleUrl:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC15insideBundleUrlAC10Foundation3URLV_tcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC15insideBundleUrlAC10Foundation3URLV_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(withNameAtDocumentDirectory:folderName:)", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE0ACSS_SStcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE0ACSS_SStcfc", + "usr": "s:9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "Required", "RawDocComment" ], "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(withNameAtDocumentDirectory:folderName:encryption:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE010encryptionACSS_SSAA5ZTAESVtcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE010encryptionACSS_SSAA5ZTAESVtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "Convenience", + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Convenience" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit9ZTServiceC", + "mangledName": "$s9ZTCoreKit9ZTServiceC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DataConvertible", + "printedName": "DataConvertible", + "children": [ { "kind": "Function", - "name": "delete", - "printedName": "delete(_:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTPlist?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6deleteyyACSgzFZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC6deleteyyACSgzFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "asCollection", - "printedName": "asCollection()", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[(key: Any, value: Any)]", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: Any, value: Any)", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ] - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC12asCollectionSayyp3key_yp5valuetGyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC12asCollectionSayyp3key_yp5valuetGyF", + "usr": "s:9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "set", - "printedName": "set(_:for:)", + "name": "+=", + "printedName": "+=(_:_:)", "children": [ { "kind": "TypeNominal", @@ -25536,94 +23158,68 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3set_3foryypSg_SStF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3set_3foryypSg_SStF", + "usr": "s:9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "get", - "printedName": "get(_:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3getyypSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3getyypSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clean", - "printedName": "clean()", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5cleanyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cleanyyF", + "usr": "s:9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "remove", - "printedName": "remove(_:)", + "name": "+=", + "printedName": "+=(_:_:)", "children": [ { "kind": "TypeNominal", @@ -25632,227 +23228,346 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6removeyySSd_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6removeyySSd_tF", + "usr": "s:9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUPeripheralSelector", + "printedName": "DFUPeripheralSelector", + "children": [ { "kind": "Function", - "name": "remove", - "printedName": "remove(keys:)", + "name": "select", + "printedName": "select(_:advertisementData:RSSI:hint:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : AnyObject]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6remove4keysySaySSG_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6remove4keysySaySSG_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "bool", - "printedName": "bool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4boolySbSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4boolySbSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "int", - "printedName": "int(_:)", - "children": [ + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3intySiSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3intySiSgSSF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)select:advertisementData:RSSI:hint:", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "select:advertisementData:RSSI:hint:", "declAttributes": [ - "RawDocComment" + "ObjC", + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "double", - "printedName": "double(_:)", + "name": "filterBy", + "printedName": "filterBy(hint:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6doubleySdSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6doubleySdSgSSF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)filterByHint:", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC8filterBy4hintSaySo6CBUUIDCGSgAG_tF", "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "filterByHint:", "declAttributes": [ - "RawDocComment" + "ObjC", + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "float", - "printedName": "float(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUPeripheralSelector", + "printedName": "ZTCoreKit.DFUPeripheralSelector", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5floatySfSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5floatySfSgSSF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)init", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", "declAttributes": [ - "RawDocComment" + "Dynamic", + "ObjC", + "Override" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Starscream", + "printedName": "Starscream", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTControlPointDfuCharacteristic", + "printedName": "ZTControlPointDfuCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -25860,740 +23575,611 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6stringySSSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6stringySSSgSSF", + "declKind": "Var", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "dictionary", - "printedName": "dictionary(_:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionaryySDySSypGSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionaryySDySSypGSgSSF", + "declKind": "Var", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "collection", - "printedName": "collection(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC10collectionySayypGSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC10collectionySayypGSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "date", - "printedName": "date(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "ZTControlPointDfuCharacteristic", + "printedName": "ZTCoreKit.ZTControlPointDfuCharacteristic", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4datey10Foundation4DateVSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4datey10Foundation4DateVSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "data", - "printedName": "data(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4datay10Foundation4DataVSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4datay10Foundation4DataVSgSSF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ + "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "null", - "printedName": "null(_:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4nullyySSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nullyySSF", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ + "AccessControl", + "Override", "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTBleManager", + "printedName": "ZTBleManager", + "children": [ { - "kind": "TypeDecl", - "name": "Error", - "printedName": "Error", + "kind": "Var", + "name": "advertisingServices", + "printedName": "advertisingServices", "children": [ { - "kind": "Var", - "name": "notFound", - "printedName": "notFound", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO8notFoundyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO8notFoundyAE10Foundation3URLVSg_tcAEmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "deleted", - "printedName": "deleted", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO7deletedyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO7deletedyAE10Foundation3URLVSg_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "parse", - "printedName": "parse", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO5parseyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO5parseyAE10Foundation3URLVSg_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "filemanagerRemove", - "printedName": "filemanagerRemove", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (any Swift.Error) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(any Swift.Error) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(with: any Swift.Error)", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO17filemanagerRemoveyAEsAD_p_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO17filemanagerRemoveyAEsAD_p_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "managerState", + "printedName": "managerState", + "children": [ { - "kind": "Var", - "name": "aesKeyFail", - "printedName": "aesKeyFail", + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: Swift.String)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10aesKeyFailyAESS_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10aesKeyFailyAESS_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "aesInitialVectorFail", - "printedName": "aesInitialVectorFail", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(iv: Swift.String)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO20aesInitialVectorFailyAESS_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO20aesInitialVectorFailyAESS_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "aesCryptFail", - "printedName": "aesCryptFail", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.Int32) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(status: Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO12aesCryptFailyAEs5Int32V_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO12aesCryptFailyAEs5Int32V_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ { - "kind": "Var", - "name": "noData", - "printedName": "noData", + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO6noDatayA2EmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO6noDatayA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvgZ", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvgZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "centralManager", + "printedName": "centralManager", + "children": [ { - "kind": "Var", - "name": "stringNotInUtf8", - "printedName": "stringNotInUtf8", + "kind": "TypeNominal", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "ZTCBCentralManagerProtocol", + "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] + "name": "ZTCBCentralManagerProtocol", + "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO15stringNotInUtf8yA2EmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO15stringNotInUtf8yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macAddress", + "printedName": "macAddress", + "children": [ { - "kind": "Var", - "name": "identifier", - "printedName": "identifier", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -26602,67 +24188,23 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvpZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvgZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "raise", - "printedName": "raise()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO5raiseyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO5raiseyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -26679,179 +24221,194 @@ "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInfo", + "printedName": "deviceInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Function", - "name": "encrypt", - "printedName": "encrypt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC7encrypty10Foundation4DataVSgypSgF", - "mangledName": "$s9ZTCoreKit7ZTPlistC7encrypty10Foundation4DataVSgypSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decrypt", - "printedName": "decrypt(_:)", + "kind": "Var", + "name": "serviceTypes", + "printedName": "serviceTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC7decrypty10Foundation4DataVSgAHF", - "mangledName": "$s9ZTCoreKit7ZTPlistC7decrypty10Foundation4DataVSgAHF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDictionary", - "printedName": "decryptedDictionary(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", "children": [ { "kind": "TypeNominal", @@ -26861,392 +24418,377 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "usr": "s:SD" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "product", + "printedName": "product", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC19decryptedDictionary0D4DataSDySSypGSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC19decryptedDictionary0D4DataSDySSypGSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedCollection", - "printedName": "decryptedCollection(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC19decryptedCollection0D4DataSayypGSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC19decryptedCollection0D4DataSayypGSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedString", - "printedName": "decryptedString(decryptedData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC15decryptedString0D4DataSSSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC15decryptedString0D4DataSSSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decryptedBool", - "printedName": "decryptedBool(decryptedData:)", + "kind": "Var", + "name": "connectedDevice", + "printedName": "connectedDevice", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTDevice?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC13decryptedBool0D4DataSbSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC13decryptedBool0D4DataSbSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedInt", - "printedName": "decryptedInt(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "usr": "s:Sq" + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC12decryptedInt0D4DataSiSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC12decryptedInt0D4DataSiSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decryptedFloat", - "printedName": "decryptedFloat(decryptedData:)", + "kind": "Var", + "name": "foundPeripherals", + "printedName": "foundPeripherals", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "[CoreBluetooth.CBPeripheral]?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC14decryptedFloat0D4DataSfSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC14decryptedFloat0D4DataSfSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDouble", - "printedName": "decryptedDouble(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ImplicitlyUnwrappedOptional", + "printedName": "[CoreBluetooth.CBPeripheral]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scanning", + "printedName": "scanning", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC15decryptedDouble0D4DataSdSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC15decryptedDouble0D4DataSdSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDate", - "printedName": "decryptedDate(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "usr": "s:Sq" + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC13decryptedDate0D4Data10Foundation0E0VSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC13decryptedDate0D4Data10Foundation0E0VSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit7ZTPlistC", - "mangledName": "$s9ZTCoreKit7ZTPlistC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCommand", - "printedName": "ZTCommand", - "children": [ + ] + }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "isDfuMode", + "printedName": "isDfuMode", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", + "SetterAccess", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -27255,1285 +24797,1307 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "generalState", - "printedName": "generalState", + "name": "onBluetoothStateChange", + "printedName": "onBluetoothStateChange", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12generalStateyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12generalStateyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "startNewActivity", - "printedName": "startNewActivity", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "stopNewActivity", - "printedName": "stopNewActivity", + "name": "onDeviceStateChange", + "printedName": "onDeviceStateChange", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "resendData", - "printedName": "resendData", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10resendDatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10resendDatayA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "deepSleep", - "printedName": "deepSleep", + "name": "onDeviceDiscovered", + "printedName": "onDeviceDiscovered", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "reboot", - "printedName": "reboot", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO6rebootyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO6rebootyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "detailedBattery", - "printedName": "detailedBattery", + "name": "onDeviceConnectionFailed", + "printedName": "onDeviceConnectionFailed", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "hardwareInformation", - "printedName": "hardwareInformation", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "firmwareInformation", - "printedName": "firmwareInformation", + "name": "onScanFinished", + "printedName": "onScanFinished", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "bootloaderVersion", - "printedName": "bootloaderVersion", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setInactivityTimeout", - "printedName": "setInactivityTimeout", + "name": "onReconnectFailed", + "printedName": "onReconnectFailed", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setDFUInstall", - "printedName": "setDFUInstall", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setDFUMode", - "printedName": "setDFUMode", + "name": "onGeneralStateUpdated", + "printedName": "onGeneralStateUpdated", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setChunkConfig", - "printedName": "setChunkConfig", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setChunkMinutesInterval", - "printedName": "setChunkMinutesInterval", + "name": "onCommandAck", + "printedName": "onCommandAck", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setChunkSecondsInterval", - "printedName": "setChunkSecondsInterval", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "selectAlgorithm", - "printedName": "selectAlgorithm", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager(im)init", + "mangledName": "$s9ZTCoreKit12ZTBleManagerCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", "declAttributes": [ - "RawDocComment" - ] + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "freeMemory", - "printedName": "freeMemory", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:willRestoreState:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:willRestoreState:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16willRestoreStateySo09CBCentralD0C_SDySSypGtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:willRestoreState:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "getTimestamp", - "printedName": "getTimestamp", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:connectionEventDidOccur:for:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBConnectionEvent", + "printedName": "CoreBluetooth.CBConnectionEvent", + "usr": "c:@E@CBConnectionEvent" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:connectionEventDidOccur:forPeripheral:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23connectionEventDidOccur3forySo09CBCentralD0C_So012CBConnectionG0VSo12CBPeripheralCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:connectionEventDidOccur:forPeripheral:", "declAttributes": [ - "RawDocComment" - ] + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "passthroughAlgo", - "printedName": "passthroughAlgo", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didDiscover:advertisementData:rssi:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDiscoverPeripheral:advertisementData:RSSI:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_11didDiscover17advertisementData4rssiySo09CBCentralD0C_So12CBPeripheralCSDySSypGSo8NSNumberCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didDiscoverPeripheral:advertisementData:RSSI:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "resetActivity", - "printedName": "resetActivity", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didFailToConnect:error:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didFailToConnectPeripheral:error:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16didFailToConnect5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didFailToConnectPeripheral:error:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "getActivityMetadata", - "printedName": "getActivityMetadata", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didConnect:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didConnectPeripheral:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_10didConnectySo09CBCentralD0C_So12CBPeripheralCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didConnectPeripheral:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "disableHeating", - "printedName": "disableHeating", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didDisconnectPeripheral:error:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setHeating", - "printedName": "setHeating", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDisconnectPeripheral:error:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23didDisconnectPeripheral5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didDisconnectPeripheral:error:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "setTimer", - "printedName": "setTimer", + "kind": "Function", + "name": "centralManagerDidUpdateState", + "printedName": "centralManagerDidUpdateState(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO8setTimeryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManagerDidUpdateState:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD14DidUpdateStateyySo09CBCentralD0CF", "moduleName": "ZTCoreKit", + "objc_name": "centralManagerDidUpdateState:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "getTemperature", - "printedName": "getTemperature", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Var", - "name": "getTimer", - "printedName": "getTimer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO8getTimeryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO8getTimeryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPairedDevice", + "printedName": "ZTPairedDevice", + "children": [ { "kind": "Var", - "name": "startPostureCalibration", - "printedName": "startPostureCalibration", + "name": "macAddress", + "printedName": "macAddress", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setUserParameters", - "printedName": "setUserParameters", - "children": [ + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "resetCalibration", - "printedName": "resetCalibration", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTPairedDevice", + "printedName": "ZTCoreKit.ZTPairedDevice", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "getCalibrationState", - "printedName": "getCalibrationState", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUStreamHexError", + "printedName": "DFUStreamHexError", + "children": [ { "kind": "Var", - "name": "rawDataSend", - "printedName": "rawDataSend", + "name": "invalidHexFile", + "printedName": "invalidHexFile", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamHexError.Type) -> ZTCoreKit.DFUStreamHexError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamHexError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" } ] } @@ -28541,239 +26105,237 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, { - "kind": "Var", - "name": "rawDataEnable", - "printedName": "rawDataEnable", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "rawDataLookup", - "printedName": "rawDataLookup", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "rawDataDebug", - "printedName": "rawDataDebug", - "children": [ + "implicit": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "calibrateStatic", - "printedName": "calibrateStatic", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTScannerResult", + "printedName": "ZTScannerResult", + "children": [ { "kind": "Var", - "name": "clearCalibrateStatic", - "printedName": "clearCalibrateStatic", + "name": "success", + "printedName": "success", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> (ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(device: ZTCoreKit.ZTDevice)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ] } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "cancelCalibrateStatic", - "printedName": "cancelCalibrateStatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28781,8 +26343,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -28790,30 +26352,30 @@ }, { "kind": "Var", - "name": "getCalibrateStaticMessage", - "printedName": "getCalibrateStaticMessage", + "name": "cancelled", + "printedName": "cancelled", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28821,8 +26383,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -28830,70 +26392,51 @@ }, { "kind": "Var", - "name": "getCalibrateStaticData", - "printedName": "getCalibrateStaticData", + "name": "failed", + "printedName": "failed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "testCalibrateStatic", - "printedName": "testCalibrateStatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28901,199 +26444,910 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] - }, + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit15ZTScannerResultO", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ { - "kind": "Var", - "name": "memsConfig", - "printedName": "memsConfig", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Var", - "name": "updateTxPower", - "printedName": "updateTxPower", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPrimaryOldService", + "printedName": "ZTPrimaryOldService", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "Final", + "AccessControl", "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } ] }, { "kind": "Var", - "name": "updatePhy", - "printedName": "updatePhy", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ] } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "disconnect", - "printedName": "disconnect", - "children": [ + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } - ] + ], + "usr": "s:SD" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(device:service:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPrimaryOldService", + "printedName": "ZTCoreKit.ZTPrimaryOldService", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10disconnectyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTService" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUStreamZipError", + "printedName": "DFUStreamZipError", + "children": [ { "kind": "Var", - "name": "startDFURight", - "printedName": "startDFURight", + "name": "noManifest", + "printedName": "noManifest", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29101,8 +27355,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29110,30 +27364,30 @@ }, { "kind": "Var", - "name": "startDFULeft", - "printedName": "startDFULeft", + "name": "invalidManifest", + "printedName": "invalidManifest", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29141,8 +27395,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29150,30 +27404,30 @@ }, { "kind": "Var", - "name": "enablePeerConnection", - "printedName": "enablePeerConnection", + "name": "fileNotFound", + "printedName": "fileNotFound", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29181,8 +27435,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29190,30 +27444,30 @@ }, { "kind": "Var", - "name": "factoryReset", - "printedName": "factoryReset", + "name": "typeNotFound", + "printedName": "typeNotFound", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29221,32 +27475,62 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvp", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -29255,117 +27539,73 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvg", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", - "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -29374,39 +27614,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", - "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTCommandO", - "mangledName": "$s9ZTCoreKit9ZTCommandO", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -29424,199 +27662,24 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, { "kind": "Conformance", - "name": "Identifiable", - "printedName": "Identifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "ID", - "printedName": "ID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:s12IdentifiableP", - "mangledName": "$ss12IdentifiableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCustomDateFormatTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(formatString:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dateFormatter:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" - }, - { - "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "superclassNames": [ - "ZTCoreKit.ZTDateFormatterTransform" - ], - "conformances": [ { "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" } ] }, @@ -29630,22 +27693,15 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTMultipartFormData", - "printedName": "ZTMultipartFormData", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTFirmwareCharacteristic", "children": [ { "kind": "Var", - "name": "contentType", - "printedName": "contentType", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -29655,15 +27711,19 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvp", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvp", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Lazy", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -29678,122 +27738,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvg", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvs", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvs", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvM", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCommandResponse", - "printedName": "ZTCommandResponse", - "children": [ + }, { "kind": "Var", - "name": "bytes", - "printedName": "bytes", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -29805,315 +27789,162 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "rightModule", - "printedName": "rightModule", + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ "AccessControl", - "RawDocComment" + "Override" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "leftModule", - "printedName": "leftModule", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "command", - "printedName": "command", - "children": [ + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Required" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTCommandResponseC", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTCommandStatus", - "printedName": "ZTCommandStatus", + "name": "ZTPassthroughAlgo", + "printedName": "ZTPassthroughAlgo", "children": [ { "kind": "Var", - "name": "success", - "printedName": "success", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(id: ZTCoreKit.ZTAlgoStatus)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30121,8 +27952,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO7successyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30130,30 +27961,30 @@ }, { "kind": "Var", - "name": "busy", - "printedName": "busy", + "name": "startNewChunk", + "printedName": "startNewChunk", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30161,8 +27992,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30170,30 +28001,50 @@ }, { "kind": "Var", - "name": "invalidParam", - "printedName": "invalidParam", + "name": "changeProductMode", + "printedName": "changeProductMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(mode: ZTCoreKit.ZTAlgoMode)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30201,8 +28052,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30210,30 +28061,50 @@ }, { "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", + "name": "setPrecisionMode", + "printedName": "setPrecisionMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(mode: ZTCoreKit.ZTAlgoPrecisionMode)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30241,8 +28112,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30250,30 +28121,56 @@ }, { "kind": "Var", - "name": "forbidden", - "printedName": "forbidden", + "name": "setMinimumStepsForAnalysis", + "printedName": "setMinimumStepsForAnalysis", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30281,8 +28178,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30290,30 +28187,56 @@ }, { "kind": "Var", - "name": "notSupported", - "printedName": "notSupported", + "name": "setMinimumStridesForAnalysis", + "printedName": "setMinimumStridesForAnalysis", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30321,8 +28244,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30330,70 +28253,62 @@ }, { "kind": "Var", - "name": "unknownCommand", - "printedName": "unknownCommand", + "name": "setStreamingMode", + "printedName": "setStreamingMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "commandInProgress", - "printedName": "commandInProgress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30401,8 +28316,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30410,59 +28325,27 @@ }, { "kind": "Var", - "name": "noPeerresponse", - "printedName": "noPeerresponse", + "name": "parameters", + "printedName": "parameters", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -30475,14 +28358,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -30491,121 +28382,83 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, + "throwing": true, "init_kind": "Designated" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "throwing": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit15ZTCommandStatusO", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -30620,45 +28473,52 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTDefaults", - "printedName": "ZTDefaults", - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTDefaultsC", - "mangledName": "$s9ZTCoreKit10ZTDefaultsC", + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTDefaultsKey", - "printedName": "ZTDefaultsKey", + "name": "DFUFirmwareSize", + "printedName": "DFUFirmwareSize", "children": [ { "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", + "name": "softdevice", + "printedName": "softdevice", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)softdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvp", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", - "AccessControl" + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30668,154 +28528,47 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)softdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, + "isOpen": true, "declAttributes": [ - "Final" + "ObjC" ], "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit10ZTDefaultsC", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTDefaults" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTManufacturerNameCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "bootloader", + "printedName": "bootloader", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)bootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvp", "moduleName": "ZTCoreKit", - "static": true, + "isOpen": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", + "SetterAccess", "AccessControl", + "ObjC", "RawDocComment" ], "hasStorage": true, @@ -30827,104 +28580,48 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)bootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, + "isOpen": true, "declAttributes": [ - "Final" + "ObjC" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "application", + "printedName": "application", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)application", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvp", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ "HasInitialValue", "HasStorage", "SetterAccess", - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -30935,108 +28632,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)application", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvg", "moduleName": "ZTCoreKit", "implicit": true, "isOpen": true, + "declAttributes": [ + "ObjC" + ], "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, { "kind": "Constructor", "name": "init", - "printedName": "init(service:characteristic:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)init", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeCACycfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, + "objc_name": "init", "declAttributes": [ - "Required" + "Dynamic", + "ObjC", + "Override" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -31045,11 +28756,12 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ + "ImplementationOnly", "RawDocComment" ] }, @@ -31063,40 +28775,39 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTDevice", - "printedName": "ZTDevice", + "name": "ZTMessageChunkConfig", + "printedName": "ZTMessageChunkConfig", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "byte0", + "printedName": "byte0", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31105,94 +28816,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "peripheral", - "printedName": "peripheral", + "name": "byte1", + "printedName": "byte1", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "CoreBluetooth.CBPeripheral?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31202,59 +28874,130 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "CoreBluetooth.CBPeripheral?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "cbPeripheral", - "printedName": "cbPeripheral", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31263,48 +29006,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", + "name": "flag", + "printedName": "flag", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31313,47 +29045,40 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31362,390 +29087,646 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Var", - "name": "qrCode", - "printedName": "qrCode", - "children": [ - { + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LegacyDFUServiceInitiator", + "printedName": "LegacyDFUServiceInitiator", + "children": [ + { + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", + "children": [ + { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "startWithTargetWithIdentifier:", "declAttributes": [ + "ObjC", + "Override", "AccessControl" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rssi", - "printedName": "rssi", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "LegacyDFUServiceInitiator", + "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivp", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", "moduleName": "ZTCoreKit", + "deprecated": true, + "overriding": true, + "implicit": true, + "objc_name": "initWithCentralManager:target:", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "ObjC", + "Override", + "Available" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Var", - "name": "macAddressRight", - "printedName": "macAddressRight", + "kind": "Constructor", + "name": "init", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ + { + "kind": "TypeNominal", + "name": "LegacyDFUServiceInitiator", + "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.DFUServiceInitiator", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityLastStopReason", + "printedName": "ZTActivityLastStopReason", + "children": [ + { + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "macAddressLeft", - "printedName": "macAddressLeft", + "name": "userRequest", + "printedName": "userRequest", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "memoryFull", + "printedName": "memoryFull", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "inactivity", + "printedName": "inactivity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "advertisementData", - "printedName": "advertisementData", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTModelNumberCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -31759,37 +29740,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -31804,37 +29768,20 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -31849,44 +29796,48 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "manufacturer", - "printedName": "manufacturer", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ "HasInitialValue", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -31898,59 +29849,139 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "isOpen": true, "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "isOpen": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "children": [ { "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31959,60 +29990,52 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareRevision?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32021,60 +30044,73 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareRevision?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32083,48 +30119,74 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -32133,39 +30195,93 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService, τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, "accessorKind": "get" } ] - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMapContext", + "printedName": "ZTMapContext", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit12ZTMapContextP", + "mangledName": "$s9ZTCoreKit12ZTMapContextP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMap", + "printedName": "ZTMap", + "children": [ { "kind": "Var", - "name": "isConnected", - "printedName": "isConnected", + "name": "mappingType", + "printedName": "mappingType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvp", + "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "HasStorage", + "AccessControl" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32174,39 +30290,60 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "isActivityRunning", - "printedName": "isActivityRunning", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvp", + "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32215,23 +30352,40 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvg", + "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "isDeviceReady", - "printedName": "isDeviceReady", + "name": "isKeyPresent", + "printedName": "isKeyPresent", "children": [ { "kind": "TypeNominal", @@ -32241,13 +30395,17 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", + "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32262,42 +30420,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "info", - "printedName": "info", + "name": "currentValue", + "printedName": "currentValue", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32309,107 +30471,59 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "batterylevel", - "printedName": "batterylevel", + "name": "currentKey", + "printedName": "currentKey", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", + "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32421,49 +30535,52 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", + "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastActivityDate", - "printedName": "lastActivityDate", + "name": "nestedKeyDelimiter", + "printedName": "nestedKeyDelimiter", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", + "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", + "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32474,49 +30591,52 @@ "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", + "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", + "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "generalState", - "printedName": "generalState", + "name": "context", + "printedName": "context", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32528,23 +30648,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -32560,23 +30683,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -32591,64 +30717,38 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "softwareInfo", - "printedName": "softwareInfo", + "name": "shouldIncludeNilValues", + "printedName": "shouldIncludeNilValues", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32659,45 +30759,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -32712,45 +30786,19 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -32765,34 +30813,41 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "lowSoftwareInfo", - "printedName": "lowSoftwareInfo", + "name": "toObject", + "printedName": "toObject", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", + "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32801,50 +30856,126 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", + "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "activityInfo", - "printedName": "activityInfo", + "kind": "Constructor", + "name": "init", + "printedName": "init(mappingType:JSON:toObject:context:shouldIncludeNilValues:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], + "hasDefaultArg": true, "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapCyACSScip", + "mangledName": "$s9ZTCoreKit5ZTMapCyACSScip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -32853,130 +30984,202 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", + "usr": "s:9ZTCoreKit5ZTMapCyACSScig", + "mangledName": "$s9ZTCoreKit5ZTMapCyACSScig", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:delimiter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "bootloaderInfo", - "printedName": "bootloaderInfo", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:delimiter:)", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32985,151 +31188,72 @@ "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "inactivityTimeout", - "printedName": "inactivityTimeout", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33138,188 +31262,72 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "actualState", - "printedName": "actualState", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:delimiter:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "previousState", - "printedName": "previousState", - "children": [ + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33328,67 +31336,63 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "hasInitialUpdate", - "printedName": "hasInitialUpdate", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:ignoreNil:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Bool", @@ -33396,13 +31400,13 @@ "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], "accessors": [ { @@ -33410,6 +31414,24 @@ "name": "Get", "printedName": "Get()", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Bool", @@ -33418,75 +31440,68 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "onStateChanged", - "printedName": "onStateChanged", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:delimiter:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33495,53 +31510,47 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ "Final" ], @@ -33550,2904 +31559,2489 @@ ] }, { - "kind": "Var", - "name": "onRSSIChanged", - "printedName": "onRSSIChanged", + "kind": "Function", + "name": "value", + "printedName": "value()", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5valuexSgylF", + "mangledName": "$s9ZTCoreKit5ZTMapC5valuexSgylF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onServiceDiscovered", - "printedName": "onServiceDiscovered", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:using:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onServiceFeaturesIdentified", - "printedName": "onServiceFeaturesIdentified", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onCharacteristicDiscovered", - "printedName": "onCharacteristicDiscovered", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onAllCharacteristicsDiscovered", - "printedName": "onAllCharacteristicsDiscovered", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onAllCharacteristicsRead", - "printedName": "onAllCharacteristicsRead", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onCharacteristicValueUpdated", - "printedName": "onCharacteristicValueUpdated", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onCharacteristicValueWritten", - "printedName": "onCharacteristicValueWritten", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onCommandCharacteristicDiscovered", - "printedName": "onCommandCharacteristicDiscovered", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyValueUpdated", - "printedName": "onNotifyValueUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onBatteryValueUpdated", - "printedName": "onBatteryValueUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onGeneralStateUpdated", - "printedName": "onGeneralStateUpdated", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onActivityInfoUpdated", - "printedName": "onActivityInfoUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onSoftwareUpdated", - "printedName": "onSoftwareUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onTimeUpdated", - "printedName": "onTimeUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageTime?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageTime?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onActivityMetadataUpdated", - "printedName": "onActivityMetadataUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onRawDataHeaderUpdated", - "printedName": "onRawDataHeaderUpdated", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onRawDataFrameUpdated", - "printedName": "onRawDataFrameUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onInactivityTimeoutUpdated", - "printedName": "onInactivityTimeoutUpdated", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onFirmwareError", - "printedName": "onFirmwareError", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyCommonGroupUpdated", - "printedName": "onNotifyCommonGroupUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyWarmGroupUpdated", - "printedName": "onNotifyWarmGroupUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit5ZTMapC", + "mangledName": "$s9ZTCoreKit5ZTMapC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "ZIPFoundation", + "printedName": "ZIPFoundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityType", + "printedName": "ZTActivityType", + "children": [ + { + "kind": "Var", + "name": "staticType", + "printedName": "staticType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyRunningGroupUpdated", - "printedName": "onNotifyRunningGroupUpdated", + "name": "dynamic", + "printedName": "dynamic", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walking", + "printedName": "walking", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyCyclingGroupUpdated", - "printedName": "onNotifyCyclingGroupUpdated", + "name": "running", + "printedName": "running", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cycling", + "printedName": "cycling", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifySafetyGroupUpdated", - "printedName": "onNotifySafetyGroupUpdated", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsUp", + "printedName": "stairsUp", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyGenericGroupUpdated", - "printedName": "onNotifyGenericGroupUpdated", + "name": "stairsDown", + "printedName": "stairsDown", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "staticOther", + "printedName": "staticOther", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onCommandUpdated", - "printedName": "onCommandUpdated", + "name": "kneel", + "printedName": "kneel", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "tiptoe", + "printedName": "tiptoe", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onCommandAck", - "printedName": "onCommandAck", + "name": "vibration", + "printedName": "vibration", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onIndicateValueUpdated", - "printedName": "onIndicateValueUpdated", + "name": "trampling", + "printedName": "trampling", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "crawling", + "printedName": "crawling", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onBootloaderInfoUpdated", - "printedName": "onBootloaderInfoUpdated", + "name": "dynamicOther", + "printedName": "dynamicOther", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "slip", + "printedName": "slip", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyChunkSendStatusUpdated", - "printedName": "onNotifyChunkSendStatusUpdated", + "name": "trip", + "printedName": "trip", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "active", + "printedName": "active", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyChunkConfigUpdated", - "printedName": "onNotifyChunkConfigUpdated", + "name": "inactive", + "printedName": "inactive", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "onNotifyChunkDataUpdated", - "printedName": "onNotifyChunkDataUpdated", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -36456,447 +34050,628 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTActivityTypeO", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(peripheral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(cbPeripheral:)", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Function", - "name": "connect", - "printedName": "connect()", + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTTXPower", + "printedName": "ZTTXPower", + "children": [ + { + "kind": "Var", + "name": "dBm0", + "printedName": "dBm0", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC7connectyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC7connectyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "disconnect", - "printedName": "disconnect()", + "kind": "Var", + "name": "dBm2", + "printedName": "dBm2", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC10disconnectyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10disconnectyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "observeValue", - "printedName": "observeValue(forKeyPath:of:change:context:)", + "kind": "Var", + "name": "dBm3", + "printedName": "dBm3", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dBm4", + "printedName": "dBm4", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", "children": [ { "kind": "TypeNominal", - "name": "NSKeyValueChangeKey", - "printedName": "Foundation.NSKeyValueChangeKey", - "usr": "c:@T@NSKeyValueChangeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" } - ], - "usr": "s:SD" + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dBm5", + "printedName": "dBm5", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UnsafeMutableRawPointer?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "UnsafeMutableRawPointer", - "printedName": "Swift.UnsafeMutableRawPointer", - "usr": "s:Sv" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)observeValueForKeyPath:ofObject:change:context:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeye6ChangeG0aypGSgSvSgtF", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "observeValueForKeyPath:ofObject:change:context:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "service", - "printedName": "service(_:)", + "kind": "Var", + "name": "dBm6", + "printedName": "dBm6", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "checkBattery", - "printedName": "checkBattery(completion:)", + "kind": "Var", + "name": "dBm7", + "printedName": "dBm7", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool) -> ()", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" } ] } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "readGeneralState", - "printedName": "readGeneralState()", + "kind": "Var", + "name": "dBm8", + "printedName": "dBm8", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Optional", + "printedName": "ZTCoreKit.ZTTXPower?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)init", - "mangledName": "$s9ZTCoreKit8ZTDeviceCACycfc", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "overriding": true, "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit9ZTTXPowerO", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTBatteryCharacteristic", + "printedName": "ZTBatteryCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "isLowBattery", - "printedName": "isLowBattery", + "name": "batteryLevel", + "printedName": "batteryLevel", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36906,1445 +34681,1516 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didWriteValueFor:error:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTBatteryCharacteristic", + "printedName": "ZTCoreKit.ZTBatteryCharacteristic", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC" }, { "kind": "TypeNominal", - "name": "CBDescriptor", - "printedName": "CoreBluetooth.CBDescriptor", - "usr": "c:objc(cs)CBDescriptor" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForDescriptor:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didWriteValueForDescriptor:error:", + "overriding": true, "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverServices:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverServices:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_19didDiscoverServicesySo12CBPeripheralC_s5Error_pSgtF", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverServices:", + "overriding": true, "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl", + "Override", "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTInformationService", + "printedName": "ZTInformationService", + "children": [ { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverCharacteristicsFor:error:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverCharacteristicsForService:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didDiscoverCharacteristicsFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverCharacteristicsForService:error:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", + "Final", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateValueFor:error:)", + "kind": "Var", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateValueForCharacteristic:error:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didWriteValueFor:error:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "manufacturerName", + "printedName": "manufacturerName", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didWriteValueForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateNotificationStateFor:error:)", + "kind": "Var", + "name": "modelNumber", + "printedName": "modelNumber", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateNotificationStateForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didUpdateNotificationStateFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateNotificationStateForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didReadRSSI:error:)", + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didReadRSSI:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_11didReadRSSI5errorySo12CBPeripheralC_So8NSNumberCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didReadRSSI:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheralDidUpdateName", - "printedName": "peripheralDidUpdateName(_:)", + "kind": "Var", + "name": "firmwareRevision", + "printedName": "firmwareRevision", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralDidUpdateName:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23peripheralDidUpdateNameyySo12CBPeripheralCF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheralDidUpdateName:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didModifyServices:)", + "kind": "Var", + "name": "hardwareRevision", + "printedName": "hardwareRevision", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didModifyServices:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didModifyServicesySo12CBPeripheralC_SaySo9CBServiceCGtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didModifyServices:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverIncludedServicesFor:error:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTInformationService", + "printedName": "ZTCoreKit.ZTInformationService", + "usr": "s:9ZTCoreKit20ZTInformationServiceC" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", "name": "CBService", "printedName": "CoreBluetooth.CBService", "usr": "c:objc(cs)CBService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverIncludedServicesForService:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_30didDiscoverIncludedServicesFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverIncludedServicesForService:error:", + "overriding": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "Required" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTInformationServiceC", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTService" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverDescriptorsFor:error:)", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDeviceInfo", + "printedName": "ZTDeviceInfo", + "children": [ + { + "kind": "Var", + "name": "project", + "printedName": "project", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProjectCodeType?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverDescriptorsForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_25didDiscoverDescriptorsFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverDescriptorsForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProjectCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateValueFor:error:)", + "kind": "Var", + "name": "productCode", + "printedName": "productCode", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBDescriptor", - "printedName": "CoreBluetooth.CBDescriptor", - "usr": "c:objc(cs)CBDescriptor" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProductCodeType?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForDescriptor:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateValueForDescriptor:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheralIsReady", - "printedName": "peripheralIsReady(toSendWriteWithoutResponse:)", + "kind": "Var", + "name": "manufacturer", + "printedName": "manufacturer", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralIsReadyToSendWriteWithoutResponse:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17peripheralIsReady26toSendWriteWithoutResponseySo12CBPeripheralC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheralIsReadyToSendWriteWithoutResponse:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didOpen:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "CoreBluetooth.CBL2CAPChannel?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CBL2CAPChannel", - "printedName": "CoreBluetooth.CBL2CAPChannel", - "usr": "c:objc(cs)CBL2CAPChannel" + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "productType", + "printedName": "productType", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProductTypeCode?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didOpenL2CAPChannel:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_7didOpen5errorySo12CBPeripheralC_So14CBL2CAPChannelCSgs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didOpenL2CAPChannel:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCommand", - "printedName": "sendCommand(_:parameters:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductTypeCode?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hardwareVersion", + "printedName": "hardwareVersion", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "printedName": "Swift.Int8?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCommandWithAck", - "printedName": "sendCommandWithAck(command:parameters:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boardVersion", + "printedName": "boardVersion", + "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "sendCommandWithRightAck", - "printedName": "sendCommandWithRightAck(command:parameters:completion:)", + "kind": "Var", + "name": "testeur", + "printedName": "testeur", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.UInt8]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice", - "mangledName": "$s9ZTCoreKit8ZTDeviceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + ] }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Security", - "printedName": "Security", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTServerTrustManager", - "printedName": "ZTServerTrustManager", - "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTServerTrustManagerC", - "mangledName": "$s9ZTCoreKit20ZTServerTrustManagerC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTAlgoAcknowledgmentStatus", - "children": [ { "kind": "Var", - "name": "success", - "printedName": "success", + "name": "sizeRaw", + "printedName": "sizeRaw", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "busy", - "printedName": "busy", + "name": "year", + "printedName": "year", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "invalidParam", - "printedName": "invalidParam", + "name": "week", + "printedName": "week", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", + "name": "SN", + "printedName": "SN", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "fwResForbidden", - "printedName": "fwResForbidden", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] - } - ] - } + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notSupported", - "printedName": "notSupported", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "unknownCommand", - "printedName": "unknownCommand", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "commandInProgress", - "printedName": "commandInProgress", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noPeerResponse", - "printedName": "noPeerResponse", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "deviceIdentifier", + "printedName": "deviceIdentifier", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38353,314 +36199,156 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUStreamZipError", - "printedName": "DFUStreamZipError", - "children": [ - { - "kind": "Var", - "name": "noManifest", - "printedName": "noManifest", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "invalidManifest", - "printedName": "invalidManifest", + "name": "macAddressRight", + "printedName": "macAddressRight", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "fileNotFound", - "printedName": "fileNotFound", - "children": [ + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "typeNotFound", - "printedName": "typeNotFound", + "name": "macAddressLeft", + "printedName": "macAddressLeft", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38669,49 +36357,32 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", @@ -38729,13 +36400,16 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38758,109 +36432,39 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTBatteryCharacteristic", - "printedName": "ZTBatteryCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "size", + "printedName": "size", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -38869,56 +36473,53 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", + "name": "gender", + "printedName": "gender", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -38928,100 +36529,37 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBatteryCharacteristic", - "printedName": "ZTCoreKit.ZTBatteryCharacteristic", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] + "hasMissingDesignatedInitializers": true }, { "kind": "Import", @@ -39045,41 +36583,29 @@ }, { "kind": "TypeDecl", - "name": "ZTDeviceInfo", - "printedName": "ZTDeviceInfo", + "name": "ZTCommand", + "printedName": "ZTCommand", "children": [ { "kind": "Var", - "name": "project", - "printedName": "project", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", + "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39088,1179 +36614,1245 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "productCode", - "printedName": "productCode", + "name": "generalState", + "printedName": "generalState", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO12generalStateyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12generalStateyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "startNewActivity", + "printedName": "startNewActivity", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "manufacturer", - "printedName": "manufacturer", + "name": "stopNewActivity", + "printedName": "stopNewActivity", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "resendData", + "printedName": "resendData", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10resendDatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10resendDatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "productType", - "printedName": "productType", + "name": "deepSleep", + "printedName": "deepSleep", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "reboot", + "printedName": "reboot", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO6rebootyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO6rebootyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "hardwareVersion", - "printedName": "hardwareVersion", + "name": "detailedBattery", + "printedName": "detailedBattery", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "hardwareInformation", + "printedName": "hardwareInformation", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "boardVersion", - "printedName": "boardVersion", + "name": "firmwareInformation", + "printedName": "firmwareInformation", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "bootloaderVersion", + "printedName": "bootloaderVersion", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "testeur", - "printedName": "testeur", + "name": "setInactivityTimeout", + "printedName": "setInactivityTimeout", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setDFUInstall", + "printedName": "setDFUInstall", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "sizeRaw", - "printedName": "sizeRaw", + "name": "setDFUMode", + "printedName": "setDFUMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setChunkConfig", + "printedName": "setChunkConfig", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "year", - "printedName": "year", + "name": "setChunkMinutesInterval", + "printedName": "setChunkMinutesInterval", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setChunkSecondsInterval", + "printedName": "setChunkSecondsInterval", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "week", - "printedName": "week", + "name": "selectAlgorithm", + "printedName": "selectAlgorithm", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "freeMemory", + "printedName": "freeMemory", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "SN", - "printedName": "SN", + "name": "getTimestamp", + "printedName": "getTimestamp", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "passthroughAlgo", + "printedName": "passthroughAlgo", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", + "name": "resetActivity", + "printedName": "resetActivity", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "getActivityMetadata", + "printedName": "getActivityMetadata", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "deviceIdentifier", - "printedName": "deviceIdentifier", + "name": "disableHeating", + "printedName": "disableHeating", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddressRight", - "printedName": "macAddressRight", + "name": "setHeating", + "printedName": "setHeating", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setTimer", + "printedName": "setTimer", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddressLeft", - "printedName": "macAddressLeft", + "name": "getTemperature", + "printedName": "getTemperature", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "getTimer", + "printedName": "getTimer", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO8getTimeryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO8getTimeryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "code", - "printedName": "code", + "name": "startPostureCalibration", + "printedName": "startPostureCalibration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "size", - "printedName": "size", + "name": "setUserParameters", + "printedName": "setUserParameters", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "gender", - "printedName": "gender", + "name": "resetCalibration", + "printedName": "resetCalibration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProductType", - "printedName": "ZTProductType", - "children": [ + }, { "kind": "Var", - "name": "sports", - "printedName": "sports", + "name": "getCalibrationState", + "printedName": "getCalibrationState", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40268,36 +37860,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "warm", - "printedName": "warm", + "name": "rawDataSend", + "printedName": "rawDataSend", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40305,36 +37900,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO4warmyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO4warmyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "safety", - "printedName": "safety", + "name": "rawDataEnable", + "printedName": "rawDataEnable", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40342,36 +37940,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "podoSmart", - "printedName": "podoSmart", + "name": "rawDataLookup", + "printedName": "rawDataLookup", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40379,36 +37980,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "dfu", - "printedName": "dfu", + "name": "rawDataDebug", + "printedName": "rawDataDebug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40416,36 +38020,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "ztDfu", - "printedName": "ztDfu", + "name": "calibrateStatic", + "printedName": "calibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40453,36 +38060,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "baliston", - "printedName": "baliston", + "name": "clearCalibrateStatic", + "printedName": "clearCalibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40490,203 +38100,159 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvp", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvp", + "usr": "s:9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvg", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "cancelCalibrateStatic", + "printedName": "cancelCalibrateStatic", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "getCalibrateStaticMessage", + "printedName": "getCalibrateStaticMessage", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTProductTypeO", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "getCalibrateStaticData", + "printedName": "getCalibrateStaticData", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProjectCodeType", - "printedName": "ZTProjectCodeType", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Var", - "name": "zt1", - "printedName": "zt1", + "name": "testCalibrateStatic", + "printedName": "testCalibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40694,36 +38260,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt2", - "printedName": "zt2", + "name": "memsConfig", + "printedName": "memsConfig", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40731,36 +38300,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt3", - "printedName": "zt3", + "name": "updateTxPower", + "printedName": "updateTxPower", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40768,36 +38340,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt4", - "printedName": "zt4", + "name": "updatePhy", + "printedName": "updatePhy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40805,236 +38380,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProductCodeType", - "printedName": "ZTProductCodeType", - "children": [ - { - "kind": "Var", - "name": "WS", - "printedName": "WS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "WM", - "printedName": "WM", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", - "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "SP", - "printedName": "SP", + "name": "disconnect", + "printedName": "disconnect", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41042,36 +38420,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "SF", - "printedName": "SF", + "name": "startDFURight", + "printedName": "startDFURight", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41079,36 +38460,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "PS", - "printedName": "PS", + "name": "startDFULeft", + "printedName": "startDFULeft", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41116,36 +38500,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "SI", - "printedName": "SI", + "name": "enablePeerConnection", + "printedName": "enablePeerConnection", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41153,36 +38540,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "BA", - "printedName": "BA", + "name": "factoryReset", + "printedName": "factoryReset", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41190,14 +38580,17 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -41207,12 +38600,11 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -41228,8 +38620,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", + "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -41243,27 +38635,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -41275,14 +38667,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -41293,15 +38685,72 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", + "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, "accessorKind": "get" } @@ -41309,14 +38758,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO", + "usr": "s:9ZTCoreKit9ZTCommandO", + "mangledName": "$s9ZTCoreKit9ZTCommandO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -41344,601 +38793,515 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTManufacturerCodeType", - "printedName": "ZTManufacturerCodeType", - "children": [ - { - "kind": "Var", - "name": "a", - "printedName": "a", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "b", - "printedName": "b", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ] + ], + "usr": "s:Sa" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, { - "kind": "Var", - "name": "c", - "printedName": "c", + "kind": "Conformance", + "name": "Identifiable", + "printedName": "Identifiable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeWitness", + "name": "ID", + "printedName": "ID", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:s12IdentifiableP", + "mangledName": "$ss12IdentifiableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTImmutableMappable", + "printedName": "ZTImmutableMappable", + "children": [ { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "e", - "printedName": "e", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "f", - "printedName": "f", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" }, { - "kind": "Var", - "name": "z", - "printedName": "z", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSON:context:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "usr": "s:SD" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONObject:context:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit19ZTImmutableMappableP", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTProductTypeCode", - "printedName": "ZTProductTypeCode", + "name": "SecureDFUServiceInitiator", + "printedName": "SecureDFUServiceInitiator", "children": [ { - "kind": "Var", - "name": "ix", - "printedName": "ix", + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sx", - "printedName": "sx", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", + "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "startWithTargetWithIdentifier:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", - "moduleName": "ZTCoreKit" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "xx", - "printedName": "xx", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "SecureDFUServiceInitiator", + "printedName": "ZTCoreKit.SecureDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", + "moduleName": "ZTCoreKit", + "deprecated": true, + "overriding": true, + "implicit": true, + "objc_name": "initWithCentralManager:target:", + "declAttributes": [ + "ObjC", + "Override", + "Available" + ], + "init_kind": "Designated" }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ + { + "kind": "TypeNominal", + "name": "SecureDFUServiceInitiator", + "printedName": "ZTCoreKit.SecureDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "String", + "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.DFUServiceInitiator", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", @@ -41956,59 +39319,139 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPeriod", + "printedName": "ZTPeriod", + "children": [ + { + "kind": "Var", + "name": "day", + "printedName": "day", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPeriod.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTGenderCodeType", - "printedName": "ZTGenderCodeType", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPeriodO3dayyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO3dayyA2CmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "man", - "printedName": "man", + "name": "week", + "printedName": "week", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderCodeType.Type", + "printedName": "ZTCoreKit.ZTPeriod.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ] } @@ -42016,36 +39459,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", + "usr": "s:9ZTCoreKit8ZTPeriodO4weekyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO4weekyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "woman", - "printedName": "woman", + "name": "month", + "printedName": "month", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderCodeType.Type", + "printedName": "ZTCoreKit.ZTPeriod.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ] } @@ -42053,8 +39496,45 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", + "usr": "s:9ZTCoreKit8ZTPeriodO5monthyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO5monthyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "year", + "printedName": "year", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPeriod.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPeriodO4yearyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO4yearyA2CmF", "moduleName": "ZTCoreKit" }, { @@ -42065,13 +39545,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTGenderCodeType?", + "printedName": "ZTCoreKit.ZTPeriod?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ], "usr": "s:Sq" @@ -42084,8 +39564,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -42103,8 +39583,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -42121,8 +39601,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -42131,8 +39611,8 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO", + "usr": "s:9ZTCoreKit8ZTPeriodO", + "mangledName": "$s9ZTCoreKit8ZTPeriodO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -42178,1088 +39658,1412 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTGenderSizeCodeType", + "name": "ZTDateFormatterTransform", + "printedName": "ZTDateFormatterTransform", "children": [ { "kind": "Var", - "name": "a", - "printedName": "a", + "name": "dateFormatter", + "printedName": "dateFormatter", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "Final", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDateFormatterTransform", + "printedName": "ZTCoreKit.ZTDateFormatterTransform", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC" + }, + { + "kind": "TypeNominal", + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "b", - "printedName": "b", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "c", - "printedName": "c", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTSignal", + "printedName": "ZTSignal", + "children": [ { "kind": "Var", - "name": "e", - "printedName": "e", + "name": "fireCount", + "printedName": "fireCount", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivp", + "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivg", + "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "f", - "printedName": "f", + "name": "retainLastData", + "printedName": "retainLastData", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "g", - "printedName": "g", + "name": "lastDataFired", + "printedName": "lastDataFired", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "h", - "printedName": "h", + "name": "observers", + "printedName": "observers", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AnyObject]", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "i", - "printedName": "i", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "name": "Array", + "printedName": "[AnyObject]", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Var", - "name": "j", - "printedName": "j", + "kind": "Constructor", + "name": "init", + "printedName": "init(retainLastData:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "n", - "printedName": "n", + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "o", - "printedName": "o", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "p", - "printedName": "p", + "kind": "Function", + "name": "subscribeOnce", + "printedName": "subscribeOnce(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "q", - "printedName": "q", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "r", - "printedName": "r", + "kind": "Function", + "name": "subscribePast", + "printedName": "subscribePast(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "s", - "printedName": "s", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "t", - "printedName": "t", + "kind": "Function", + "name": "subscribePastOnce", + "printedName": "subscribePastOnce(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "u", - "printedName": "u", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "fire", + "printedName": "fire(_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC4fireyyxF", + "mangledName": "$s9ZTCoreKit8ZTSignalC4fireyyxF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "cancelSubscription", + "printedName": "cancelSubscription(for:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", + "mangledName": "$s9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelAllSubscriptions", + "printedName": "cancelAllSubscriptions()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", + "mangledName": "$s9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearLastData", + "printedName": "clearLastData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13clearLastDatayyF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13clearLastDatayyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "fire", + "printedName": "fire()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", + "mangledName": "$s9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 == ()>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTSignalC", + "mangledName": "$s9ZTCoreKit8ZTSignalC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Final", + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTUnitSizeCodeType", + "name": "ZTSignalSubscription", + "printedName": "ZTSignalSubscription", "children": [ { "kind": "Var", - "name": "a", - "printedName": "a", + "name": "observer", + "printedName": "observer", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "AnyObject?" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ReferenceOwnership", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Optional", + "printedName": "AnyObject?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "b", - "printedName": "b", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Optional", + "printedName": "AnyObject?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "c", - "printedName": "c", + "name": "once", + "printedName": "once", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Function", + "name": "filter", + "printedName": "filter(_:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(τ_0_0) -> Swift.Bool", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "e", - "printedName": "e", + "kind": "Function", + "name": "sample", + "printedName": "sample(every:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "f", - "printedName": "f", + "kind": "Function", + "name": "onQueue", + "printedName": "onQueue(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "n", - "printedName": "n", + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Final", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "OperatorDecl", + "name": "=>", + "printedName": "=>", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix" + ] + }, + { + "kind": "Function", + "name": "=>", + "printedName": "=>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "mangledName": "$s9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoMode", + "printedName": "ZTAlgoMode", + "children": [ { "kind": "Var", - "name": "o", - "printedName": "o", + "name": "monitoring", + "printedName": "monitoring", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "printedName": "ZTCoreKit.ZTAlgoMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ] } @@ -43267,36 +41071,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "p", - "printedName": "p", + "name": "gaming", + "printedName": "gaming", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "printedName": "ZTCoreKit.ZTAlgoMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ] } @@ -43304,46 +41108,65 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "usr": "s:9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "q", - "printedName": "q", + "name": "parameters", + "printedName": "parameters", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Constructor", @@ -43353,27 +41176,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType?", + "printedName": "ZTCoreKit.ZTAlgoMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -43385,14 +41208,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -43403,14 +41226,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -43419,14 +41242,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO", + "usr": "s:9ZTCoreKit10ZTAlgoModeO", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -43454,12402 +41277,1748 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "name": "DFUServiceInitiator", + "printedName": "DFUServiceInitiator", "children": [ { - "kind": "AssociatedType", - "name": "Object", - "printedName": "Object", - "declKind": "AssociatedType", - "usr": "s:9ZTCoreKit15ZTTransformTypeP6ObjectQa", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP6ObjectQa", - "moduleName": "ZTCoreKit", - "protocolReq": true - }, - { - "kind": "AssociatedType", - "name": "JSON", - "printedName": "JSON", - "declKind": "AssociatedType", - "usr": "s:9ZTCoreKit15ZTTransformTypeP4JSONQa", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP4JSONQa", - "moduleName": "ZTCoreKit", - "protocolReq": true - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)delegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUServiceDelegate", + "printedName": "any ZTCoreKit.DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)delegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.JSON?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.JSON" + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUServiceDelegate", + "printedName": "any ZTCoreKit.DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDelegate:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTError", - "printedName": "ZTError", - "children": [ + ] + }, { "kind": "Var", - "name": "scanning", - "printedName": "scanning", + "name": "progressDelegate", + "printedName": "progressDelegate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)progressDelegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.ScanningError)", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "DFUProgressDelegate", + "printedName": "any ZTCoreKit.DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "ble", - "printedName": "ble", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)progressDelegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.BleError)", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "DFUProgressDelegate", + "printedName": "any ZTCoreKit.DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setProgressDelegate:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.NetworkError)", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "store", - "printedName": "store", + "name": "logger", + "printedName": "logger", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.LoggerDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)logger", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.LoggerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.StoreError)", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] + "name": "LoggerDelegate", + "printedName": "any ZTCoreKit.LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" } - ] + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)logger", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.LoggerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "LoggerDelegate", + "printedName": "any ZTCoreKit.LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setLogger:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "custom", - "printedName": "custom", + "name": "peripheralSelector", + "printedName": "peripheralSelector", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(errorDescription: Swift.String?, error: (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)peripheralSelector", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)peripheralSelector", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPeripheralSelector:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "decoding", - "printedName": "decoding", + "name": "packetReceiptNotificationParameter", + "printedName": "packetReceiptNotificationParameter", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)packetReceiptNotificationParameter", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.DecodableError)", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)packetReceiptNotificationParameter", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPacketReceiptNotificationParameter:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "activity", - "printedName": "activity", + "name": "forceDfu", + "printedName": "forceDfu", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.ActivityError)", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dfu", - "printedName": "dfu", + "name": "forceScanningForNewAddressInLegacyDfu", + "printedName": "forceScanningForNewAddressInLegacyDfu", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceScanningForNewAddressInLegacyDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.DfuError)", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceScanningForNewAddressInLegacyDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceScanningForNewAddressInLegacyDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "TypeDecl", - "name": "Enums", - "printedName": "Enums", + "kind": "Var", + "name": "connectionTimeout", + "printedName": "connectionTimeout", "children": [ { - "kind": "TypeDecl", - "name": "ScanningError", - "printedName": "ScanningError", + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)connectionTimeout", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "cameraPermission", - "printedName": "cameraPermission", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongCode", - "printedName": "wrongCode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notLinkedUser", - "printedName": "notLinkedUser", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)connectionTimeout", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setConnectionTimeout:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvs", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataObjectPreparationDelay", + "printedName": "dataObjectPreparationDelay", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)dataObjectPreparationDelay", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)dataObjectPreparationDelay", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDataObjectPreparationDelay:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeDecl", - "name": "BleError", - "printedName": "BleError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "resetting", - "printedName": "resetting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "poweredOff", - "printedName": "poweredOff", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "timeout", - "printedName": "timeout", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unauthorized", - "printedName": "unauthorized", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notConnected", - "printedName": "notConnected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alternativeAdvertisingNameEnabled", + "printedName": "alternativeAdvertisingNameEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingNameEnabled", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Var", - "name": "notConnectedLeft", - "printedName": "notConnectedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingNameEnabled", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "activityIsRunning", - "printedName": "activityIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "busy", - "printedName": "busy", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingNameEnabled:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "dfu", - "printedName": "dfu", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alternativeAdvertisingName", + "printedName": "alternativeAdvertisingName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Var", - "name": "commandError", - "printedName": "commandError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingName", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingName", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingName:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "printedName": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setEnableUnsafeExperimentalButtonlessServiceInSecureDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "uuidHelper", + "printedName": "uuidHelper", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)uuidHelper", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "kind": "TypeNominal", + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)uuidHelper", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeDecl", - "name": "FirmwareError", - "printedName": "FirmwareError", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "Var", - "name": "differentFirmware", - "printedName": "differentFirmware", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "memsError", - "printedName": "memsError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, - { - "kind": "Var", - "name": "leftNoConnected", - "printedName": "leftNoConnected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "restartRequired", - "printedName": "restartRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "recoverFromDfu", - "printedName": "recoverFromDfu", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "minimumFwVersion", - "printedName": "minimumFwVersion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "updateRequired", - "printedName": "updateRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongProductType", - "printedName": "wrongProductType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "firstChunkIdIsGreater", - "printedName": "firstChunkIdIsGreater", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "startTimeZero", - "printedName": "startTimeZero", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DfuError", - "printedName": "DfuError", - "children": [ - { - "kind": "Var", - "name": "noLeftModule", - "printedName": "noLeftModule", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noUpdate", - "printedName": "noUpdate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongFile", - "printedName": "wrongFile", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noStart", - "printedName": "noStart", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "aborted", - "printedName": "aborted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "abortedRight", - "printedName": "abortedRight", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "abortedLeft", - "printedName": "abortedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "lowBattery", - "printedName": "lowBattery", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "inProgress", - "printedName": "inProgress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "updateRequired", - "printedName": "updateRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongProductType", - "printedName": "wrongProductType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StoreError", - "printedName": "StoreError", - "children": [ - { - "kind": "Var", - "name": "missing", - "printedName": "missing", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalid", - "printedName": "invalid", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Any?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrong", - "printedName": "wrong", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ActivityError", - "printedName": "ActivityError", - "children": [ - { - "kind": "Var", - "name": "notStarted", - "printedName": "notStarted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notStartedLeft", - "printedName": "notStartedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notStopped", - "printedName": "notStopped", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "modeNotSetActivityIsRunning", - "printedName": "modeNotSetActivityIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "previousNotStopped", - "printedName": "previousNotStopped", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "previousRestoring", - "printedName": "previousRestoring", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noUserParametersSet", - "printedName": "noUserParametersSet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "rawDataFlowIsRunning", - "printedName": "rawDataFlowIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalidMobilityScanResults", - "printedName": "invalidMobilityScanResults", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "outsideActivityDetected", - "printedName": "outsideActivityDetected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "anomalyDetected", - "printedName": "anomalyDetected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "mobility", - "printedName": "mobility", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NetworkError", - "printedName": "NetworkError", - "children": [ - { - "kind": "Var", - "name": "userLinkError", - "printedName": "userLinkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "inaccessible", - "printedName": "inaccessible", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "urlError", - "printedName": "urlError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "URLError", - "printedName": "Foundation.URLError", - "usr": "s:10Foundation8URLErrorV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "generalError", - "printedName": "generalError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "noResponse", - "printedName": "noResponse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "invalidResponseType", - "printedName": "invalidResponseType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "URLResponse", - "printedName": "Foundation.URLResponse", - "usr": "c:objc(cs)NSURLResponse" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "noResponseData", - "printedName": "noResponseData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "endpointError", - "printedName": "endpointError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "custom", - "printedName": "custom", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(errorCode: Swift.Int?, errorDescription: Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DecodableError", - "printedName": "DecodableError", - "children": [ - { - "kind": "Var", - "name": "invalidKeyPath", - "printedName": "invalidKeyPath", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "emptyKeyPath", - "printedName": "emptyKeyPath", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalidJSON", - "printedName": "invalidJSON", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFirmwareRevision", - "printedName": "ZTFirmwareRevision", - "children": [ - { - "kind": "Var", - "name": "fwSystemVersion", - "printedName": "fwSystemVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "productType", - "printedName": "productType", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmVersion", - "printedName": "bmVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "date", - "printedName": "date", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "code", - "printedName": "code", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "versions", - "printedName": "versions", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFwBmVersion?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFwBmVersion", - "printedName": "ZTCoreKit.ZTFwBmVersion", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFwBmVersion?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFwBmVersion", - "printedName": "ZTCoreKit.ZTFwBmVersion", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(code:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<", - "printedName": "<(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": ">=", - "printedName": ">=(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "fwSystemMajorVersion", - "printedName": "fwSystemMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemMinorVersion", - "printedName": "fwSystemMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemBuildVersion", - "printedName": "fwSystemBuildVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmMajorVersion", - "printedName": "bmMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmMinorVersion", - "printedName": "bmMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFwBmVersion", - "printedName": "ZTFwBmVersion", - "children": [ - { - "kind": "Var", - "name": "fwSystemMajorVersion", - "printedName": "fwSystemMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemMinorVersion", - "printedName": "fwSystemMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemBuildVersion", - "printedName": "fwSystemBuildVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "bmMajorVersion", - "printedName": "bmMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "bmMinorVersion", - "printedName": "bmMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkData", - "printedName": "ZTMessageChunkData", - "children": [ - { - "kind": "TypeDecl", - "name": "Mode", - "printedName": "Mode", - "children": [ - { - "kind": "Var", - "name": "manual", - "printedName": "manual", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "automatic", - "printedName": "automatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode?", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte1", - "printedName": "byte1", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte2", - "printedName": "byte2", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte3", - "printedName": "byte3", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "side", - "printedName": "side", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "mode", - "printedName": "mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "length", - "printedName": "length", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "payload", - "printedName": "payload", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTTextCharacteristic", - "printedName": "ZTTextCharacteristic", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTTextCharacteristic", - "printedName": "ZTCoreKit.ZTTextCharacteristic", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNSDecimalNumberTransform", - "printedName": "ZTNSDecimalNumberTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTNSDecimalNumberTransform", - "printedName": "ZTCoreKit.ZTNSDecimalNumberTransform", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDecimalNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDecimalNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "os.log", - "printedName": "os.log", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTLogLevel", - "printedName": "ZTLogLevel", - "children": [ - { - "kind": "Var", - "name": "all", - "printedName": "all", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO3allyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO3allyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5debugyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5debugyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO4infoyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO4infoyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5erroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "fatal", - "printedName": "fatal", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLogLevel?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTLogLevelO", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTLogCategory", - "printedName": "ZTLogCategory", - "children": [ - { - "kind": "Var", - "name": "networkAgent", - "printedName": "networkAgent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "modules", - "printedName": "modules", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "sdk", - "printedName": "sdk", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLogCategory?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTLogCategoryO", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTRealtimeMessageEventType", - "children": [ - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "acknowledgment", - "printedName": "acknowledgment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "realTimeEvent", - "printedName": "realTimeEvent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "realTimeMetrics", - "printedName": "realTimeMetrics", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "os.log", - "printedName": "os.log", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTLogger", - "printedName": "ZTLogger", - "children": [ - { - "kind": "Var", - "name": "instance", - "printedName": "instance", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogger", - "printedName": "ZTCoreKit.ZTLogger", - "usr": "s:9ZTCoreKit8ZTLoggerC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvpZ", - "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogger", - "printedName": "ZTCoreKit.ZTLogger", - "usr": "s:9ZTCoreKit8ZTLoggerC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvgZ", - "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "ztDebugPrint", - "printedName": "ztDebugPrint(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "debug", - "printedName": "debug(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "info", - "printedName": "info(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "error", - "printedName": "error(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fatal", - "printedName": "fatal(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "print", - "printedName": "print(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> Any", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5printyyypyXKF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5printyyypyXKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTLoggerC", - "mangledName": "$s9ZTCoreKit8ZTLoggerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTLoggerLine", - "printedName": "ZTLoggerLine", - "children": [ - { - "kind": "Var", - "name": "notification", - "printedName": "notification", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "ble", - "printedName": "ble", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "date", - "printedName": "date", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "message", - "printedName": "message", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "level", - "printedName": "level", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "category", - "printedName": "category", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerLine", - "printedName": "ZTCoreKit.ZTLoggerLine", - "usr": "s:9ZTCoreKit12ZTLoggerLineV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit12ZTLoggerLineV", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTNetworkReachabilityManager", - "printedName": "ZTNetworkReachabilityManager", - "children": [ - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableOnCellular", - "printedName": "isReachableOnCellular", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableOnEthernetOrWiFi", - "printedName": "isReachableOnEthernetOrWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "flags", - "printedName": "flags", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?", - "children": [ - { - "kind": "TypeNominal", - "name": "SCNetworkReachabilityFlags", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags", - "usr": "c:@E@SCNetworkReachabilityFlags" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?", - "children": [ - { - "kind": "TypeNominal", - "name": "SCNetworkReachabilityFlags", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags", - "usr": "c:@E@SCNetworkReachabilityFlags" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNotifyData", - "printedName": "ZTNotifyData", - "children": [ - { - "kind": "TypeDecl", - "name": "GroupID", - "printedName": "GroupID", - "children": [ - { - "kind": "Var", - "name": "common", - "printedName": "common", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warm", - "printedName": "warm", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "running", - "printedName": "running", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "cycling", - "printedName": "cycling", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "safety", - "printedName": "safety", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "generic", - "printedName": "generic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID?", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CommonMessageId", - "printedName": "CommonMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_GENERAL_STATES", - "printedName": "MSG_GENERAL_STATES", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_BATTERY_LEVEL", - "printedName": "MSG_BATTERY_LEVEL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_MEMS", - "printedName": "MSG_MEMS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_FLASH", - "printedName": "MSG_FLASH", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_TIME", - "printedName": "MSG_TIME", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HARDWARE", - "printedName": "MSG_HARDWARE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_SOFTWARE", - "printedName": "MSG_SOFTWARE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ACTIVITY_INFO", - "printedName": "MSG_ACTIVITY_INFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ACTIVITY_METADATA", - "printedName": "MSG_ACTIVITY_METADATA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_RAWDATA_HEADER", - "printedName": "MSG_RAWDATA_HEADER", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_RAWDATA_FRAME", - "printedName": "MSG_RAWDATA_FRAME", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_BTLOADER_INFO", - "printedName": "MSG_BTLOADER_INFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_INACTIVITY_TIMEOUT", - "printedName": "MSG_INACTIVITY_TIMEOUT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_SEND_STATUS", - "printedName": "MSG_CHUNK_SEND_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_DATA", - "printedName": "MSG_CHUNK_DATA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_CONFIG", - "printedName": "MSG_CHUNK_CONFIG", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_DEBUG", - "printedName": "MSG_DEBUG", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "WarmMessageId", - "printedName": "WarmMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_HEATING_TEMP_1", - "printedName": "MSG_HEATING_TEMP_1", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_TEMP_2", - "printedName": "MSG_HEATING_TEMP_2", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_STEP_R_CNT", - "printedName": "MSG_HEATING_STEP_R_CNT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_STEP_L_CNT", - "printedName": "MSG_HEATING_STEP_L_CNT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_SETPOINT_R", - "printedName": "MSG_HEATING_SETPOINT_R", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_SETPOINT_L", - "printedName": "MSG_HEATING_SETPOINT_L", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_GET_HEAT_TIMER", - "printedName": "MSG_GET_HEAT_TIMER", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_DEBUG_R", - "printedName": "MSG_HEATING_DEBUG_R", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_DEBUG_L", - "printedName": "MSG_HEATING_DEBUG_L", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setUuidHelper:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "RunningMessageId", - "printedName": "RunningMessageId", - "children": [ - { - "kind": "Var", - "name": "UNKNOWN", - "printedName": "UNKNOWN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId.Type) -> ZTCoreKit.ZTNotifyData.RunningMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } + "declAttributes": [ + "ObjC" ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "accessorKind": "_modify" } ] }, { - "kind": "TypeDecl", - "name": "CyclingMessageId", - "printedName": "CyclingMessageId", + "kind": "Var", + "name": "disableResume", + "printedName": "disableResume", "children": [ { - "kind": "Var", - "name": "MSG_CADENCE", - "printedName": "MSG_CADENCE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId.Type) -> ZTCoreKit.ZTNotifyData.CyclingMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)disableResume", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SafetyMessageId", - "printedName": "SafetyMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_CALIBRATION_SAFETY", - "printedName": "MSG_CALIBRATION_SAFETY", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ALGO_RT_EVENT", - "printedName": "MSG_ALGO_RT_EVENT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "GenericMessageId", - "printedName": "GenericMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_ALGO_RT_EVENT", - "printedName": "MSG_ALGO_RT_EVENT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId.Type) -> ZTCoreKit.ZTNotifyData.GenericMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "moduleName": "ZTCoreKit" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)disableResume", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDisableResume:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDeviceActualState", - "printedName": "ZTDeviceActualState", - "children": [ - { - "kind": "Var", - "name": "activityNone", - "printedName": "activityNone", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", - "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "activityStarting", - "printedName": "activityStarting", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "eraseMemory", - "printedName": "eraseMemory", - "children": [ + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityRunning", - "printedName": "activityRunning", - "children": [ + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityPaused", - "printedName": "activityPaused", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC14centralManager6targetACSo09CBCentralF0C_So12CBPeripheralCtcfc", + "moduleName": "ZTCoreKit", + "deprecated": true, + "objc_name": "initWithCentralManager:target:", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", - "moduleName": "ZTCoreKit" + "init_kind": "Designated" }, { - "kind": "Var", - "name": "activityStopping", - "printedName": "activityStopping", + "kind": "Constructor", + "name": "init", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5queue13delegateQueue08progressG006loggerG021centralManagerOptionsACSo012OS_dispatch_E0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "activityPendData", - "printedName": "activityPendData", + "kind": "Function", + "name": "with", + "printedName": "with(firmware:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)withFirmware:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC4with8firmwareAcA11DFUFirmwareC_tF", + "moduleName": "ZTCoreKit", + "objc_name": "withFirmware:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "activitySendData", - "printedName": "activitySendData", + "kind": "Function", + "name": "start", + "printedName": "start()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)start", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5startAA0C10ControllerCSgyF", + "moduleName": "ZTCoreKit", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "Function", + "name": "start", + "printedName": "start(target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTarget:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start6targetAA0C10ControllerCSgSo12CBPeripheralC_tF", "moduleName": "ZTCoreKit", + "objc_name": "startWithTarget:", "declAttributes": [ - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceActualState?", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start20targetWithIdentifierAA0C10ControllerCSg10Foundation4UUIDV_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "objc_name": "startWithTargetWithIdentifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)init", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", @@ -55867,39 +43036,38 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -55915,8 +43083,8 @@ }, { "kind": "TypeDecl", - "name": "ZTDictionaryTransform", - "printedName": "ZTDictionaryTransform", + "name": "ZTDateTransform", + "printedName": "ZTDateTransform", "children": [ { "kind": "Constructor", @@ -55925,29 +43093,15 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTDictionaryTransform", - "printedName": "ZTCoreKit.ZTDictionaryTransform<τ_0_0, τ_0_1>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV" + "name": "ZTDateTransform", + "printedName": "ZTCoreKit.ZTDateTransform", + "usr": "s:9ZTCoreKit15ZTDateTransformC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", + "usr": "s:9ZTCoreKit15ZTDateTransformCACycfc", + "mangledName": "$s9ZTCoreKit15ZTDateTransformCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -55961,25 +43115,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[τ_0_0 : τ_0_1]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" @@ -55999,11 +43141,9 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", + "usr": "s:9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -56017,12 +43157,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" @@ -56030,51 +43171,34 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[τ_0_0 : τ_0_1]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", + "usr": "s:9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV", + "declKind": "Class", + "usr": "s:9ZTCoreKit15ZTDateTransformC", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -56089,21 +43213,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ] }, @@ -56114,8 +43226,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } @@ -56125,632 +43238,211 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTScannerResult", - "printedName": "ZTScannerResult", - "children": [ - { - "kind": "Var", - "name": "success", - "printedName": "success", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> (ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(device: ZTCoreKit.ZTDevice)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "cancelled", - "printedName": "cancelled", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "failed", - "printedName": "failed", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit15ZTScannerResultO", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "ZTInformationService", - "printedName": "ZTInformationService", + "name": "ZTDateTransformUTC", + "printedName": "ZTDateTransformUTC", "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "ZTDateTransformUTC", + "printedName": "ZTCoreKit.ZTDateTransformUTC", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCCACycfc", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCCACycfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] + "init_kind": "Designated" }, - { - "kind": "Var", - "name": "manufacturerName", - "printedName": "manufacturerName", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } - ] - }, + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCommandsCharacteristic", + "printedName": "ZTCommandsCharacteristic", + "children": [ { "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "AccessControl" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -56759,54 +43451,56 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -56816,22 +43510,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] @@ -56839,67 +43534,75 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(device:service:)", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ZTInformationService", - "printedName": "ZTCoreKit.ZTInformationService", - "usr": "s:9ZTCoreKit20ZTInformationServiceC" + "name": "ZTCommandsCharacteristic", + "printedName": "ZTCoreKit.ZTCommandsCharacteristic", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC" }, { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", "overriding": true, - "implicit": true, "declAttributes": [ - "Required" + "AccessControl", + "Required", + "RawDocComment" ], "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTInformationServiceC", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } + "ZTCoreKit.ZTCharacteristic" ] }, { @@ -56912,563 +43615,499 @@ "RawDocComment" ] }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTServices", - "printedName": "ZTServices", + "name": "ZTProductType", + "printedName": "ZTProductType", "children": [ { - "kind": "TypeDecl", - "name": "Primary", - "printedName": "Primary", + "kind": "Var", + "name": "sports", + "printedName": "sports", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "warm", + "printedName": "warm", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO4warmyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO4warmyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "safety", + "printedName": "safety", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { - "kind": "Var", - "name": "commands", - "printedName": "commands", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notifyData", - "printedName": "notifyData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "indicateData", - "printedName": "indicateData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pairedSoles", - "printedName": "pairedSoles", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "test", - "printedName": "test", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "uid", - "printedName": "uid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ] - }, + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "podoSmart", + "printedName": "podoSmart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "ztDfu", + "printedName": "ztDfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", + "children": [ { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "baliston", + "printedName": "baliston", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ] } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityType", + "printedName": "activityType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvp", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvg", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } ] }, { - "kind": "TypeDecl", - "name": "PrimaryOld", - "printedName": "PrimaryOld", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -57477,457 +44116,731 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTProductTypeO", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProjectCodeType", + "printedName": "ZTProjectCodeType", + "children": [ + { + "kind": "Var", + "name": "zt1", + "printedName": "zt1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt2", + "printedName": "zt2", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt3", + "printedName": "zt3", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", "children": [ { - "kind": "Var", - "name": "commands", - "printedName": "commands", + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt4", + "printedName": "zt4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" }, { - "kind": "Var", - "name": "notifyData", - "printedName": "notifyData", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProjectCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProductCodeType", + "printedName": "ZTProductCodeType", + "children": [ + { + "kind": "Var", + "name": "WS", + "printedName": "WS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "indicateData", - "printedName": "indicateData", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "WM", + "printedName": "WM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SP", + "printedName": "SP", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "pairedSoles", - "printedName": "pairedSoles", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SF", + "printedName": "SF", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "PS", + "printedName": "PS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SI", + "printedName": "SI", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "BA", + "printedName": "BA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityType", + "printedName": "activityType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeDecl", - "name": "DeviceInformation", - "printedName": "DeviceInformation", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -57936,457 +44849,383 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTManufacturerCodeType", + "printedName": "ZTManufacturerCodeType", + "children": [ + { + "kind": "Var", + "name": "a", + "printedName": "a", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "b", + "printedName": "b", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", "children": [ { - "kind": "Var", - "name": "manufacturerName", - "printedName": "manufacturerName", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "c", + "printedName": "c", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ { - "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "d", + "printedName": "d", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ { - "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "e", + "printedName": "e", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "f", + "printedName": "f", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "z", + "printedName": "z", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeDecl", - "name": "DeviceDFU", - "printedName": "DeviceDFU", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -58395,426 +45234,332 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProductTypeCode", + "printedName": "ZTProductTypeCode", + "children": [ + { + "kind": "Var", + "name": "ix", + "printedName": "ix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "sx", + "printedName": "sx", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", "children": [ { - "kind": "Var", - "name": "dfuControlPoint", - "printedName": "dfuControlPoint", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dfuPacket", - "printedName": "dfuPacket", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dfuButtonless", - "printedName": "dfuButtonless", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ] - }, + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "xx", + "printedName": "xx", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductTypeCode?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO", - "mangledName": "$s9ZTCoreKit10ZTServicesO", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } ] }, { "kind": "TypeDecl", - "name": "ZTActivityType", - "printedName": "ZTActivityType", + "name": "ZTGenderCodeType", + "printedName": "ZTGenderCodeType", "children": [ { "kind": "Var", - "name": "staticType", - "printedName": "staticType", + "name": "man", + "printedName": "man", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" } ] } @@ -58822,36 +45567,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "dynamic", - "printedName": "dynamic", + "name": "woman", + "printedName": "woman", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" } ] } @@ -58859,36 +45604,162 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", "moduleName": "ZTCoreKit" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTGenderCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", - "name": "walking", - "printedName": "walking", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTGenderSizeCodeType", + "children": [ + { + "kind": "Var", + "name": "a", + "printedName": "a", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58896,36 +45767,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "running", - "printedName": "running", + "name": "b", + "printedName": "b", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58933,36 +45804,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "name": "c", + "printedName": "c", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58970,36 +45841,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "d", + "printedName": "d", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59007,36 +45878,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "stairsUp", - "printedName": "stairsUp", + "name": "e", + "printedName": "e", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59044,36 +45915,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "stairsDown", - "printedName": "stairsDown", + "name": "f", + "printedName": "f", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59081,36 +45952,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "staticOther", - "printedName": "staticOther", + "name": "g", + "printedName": "g", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59118,36 +45989,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "kneel", - "printedName": "kneel", + "name": "h", + "printedName": "h", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59155,36 +46026,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "tiptoe", - "printedName": "tiptoe", + "name": "i", + "printedName": "i", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59192,36 +46063,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "vibration", - "printedName": "vibration", + "name": "j", + "printedName": "j", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59229,36 +46100,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "trampling", - "printedName": "trampling", + "name": "n", + "printedName": "n", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59266,36 +46137,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "crawling", - "printedName": "crawling", + "name": "o", + "printedName": "o", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59303,36 +46174,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "dynamicOther", - "printedName": "dynamicOther", + "name": "p", + "printedName": "p", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59340,36 +46211,73 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "slip", - "printedName": "slip", + "name": "q", + "printedName": "q", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "r", + "printedName": "r", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59377,36 +46285,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "trip", - "printedName": "trip", + "name": "s", + "printedName": "s", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59414,36 +46322,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "active", - "printedName": "active", + "name": "t", + "printedName": "t", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59451,36 +46359,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "inactive", - "printedName": "inactive", + "name": "u", + "printedName": "u", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59488,8 +46396,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", "moduleName": "ZTCoreKit" }, { @@ -59500,27 +46408,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -59532,14 +46440,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -59550,14 +46458,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -59566,14 +46474,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTActivityTypeO", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -59601,597 +46509,86 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, { "kind": "TypeDecl", - "name": "ZTTransformOf", - "printedName": "ZTTransformOf", + "name": "ZTUnitSizeCodeType", + "printedName": "ZTUnitSizeCodeType", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(fromJSON:toJSON:)", + "kind": "Var", + "name": "a", + "printedName": "a", "children": [ - { - "kind": "TypeNominal", - "name": "ZTTransformOf", - "printedName": "ZTCoreKit.ZTTransformOf<τ_0_0, τ_0_1>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:9ZTCoreKit13ZTTransformOfC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_1?) -> τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" - } - ] - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(τ_0_0?) -> τ_0_1?", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTTransformOfC", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareSize", - "printedName": "DFUFirmwareSize", - "children": [ - { - "kind": "Var", - "name": "softdevice", - "printedName": "softdevice", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)softdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)softdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bootloader", - "printedName": "bootloader", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)bootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)bootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "application", - "printedName": "application", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)application", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)application", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)init", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", + "moduleName": "ZTCoreKit" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivityMode", - "printedName": "ZTActivityMode", - "children": [ { "kind": "Var", - "name": "safety", - "printedName": "safety", + "name": "b", + "printedName": "b", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60199,36 +46596,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "walking", - "printedName": "walking", + "name": "c", + "printedName": "c", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60236,36 +46633,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "running", - "printedName": "running", + "name": "d", + "printedName": "d", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60273,36 +46670,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "name": "e", + "printedName": "e", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60310,36 +46707,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "mobility", - "printedName": "mobility", + "name": "f", + "printedName": "f", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60347,227 +46744,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvp", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvg", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTActivityModeO", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTAlgoPrecisionMode", - "children": [ - { - "kind": "Var", - "name": "defaultMode", - "printedName": "defaultMode", + "name": "n", + "printedName": "n", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60575,39 +46781,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "economicMode", - "printedName": "economicMode", + "name": "o", + "printedName": "o", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60615,39 +46818,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "performanceMode", - "printedName": "performanceMode", + "name": "p", + "printedName": "p", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60655,68 +46855,46 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "q", + "printedName": "q", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", @@ -60726,27 +46904,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -60758,14 +46936,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -60776,14 +46954,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -60792,14 +46970,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -60827,36 +47005,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, @@ -60872,239 +47029,177 @@ }, { "kind": "TypeDecl", - "name": "Adapter", - "printedName": "Adapter", - "declKind": "Class", - "usr": "s:9ZTCoreKit7AdapterC", - "mangledName": "$s9ZTCoreKit7AdapterC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "Retrier", - "printedName": "Retrier", - "declKind": "Class", - "usr": "s:9ZTCoreKit7RetrierC", - "mangledName": "$s9ZTCoreKit7RetrierC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "Interceptor", - "printedName": "Interceptor", - "declKind": "Class", - "usr": "s:9ZTCoreKit11InterceptorC", - "mangledName": "$s9ZTCoreKit11InterceptorC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DataConvertible", - "printedName": "DataConvertible", + "name": "ZTURLTransform", + "printedName": "ZTURLTransform", "children": [ { - "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(shouldEncodeURLString:allowedCharacterSet:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTURLTransform", + "printedName": "ZTCoreKit.ZTURLTransform", + "usr": "s:9ZTCoreKit14ZTURLTransformC" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CharacterSet", + "printedName": "Foundation.CharacterSet", + "hasDefaultArg": true, + "usr": "s:10Foundation12CharacterSetV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "+=", - "printedName": "+=(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "paramValueOwnership": "InOut", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", + "usr": "s:9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, + "isOpen": true, "declAttributes": [ "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+=", - "printedName": "+=(_:_:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "paramValueOwnership": "InOut", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", + "usr": "s:9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, + "isOpen": true, "declAttributes": [ "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "declKind": "Class", + "usr": "s:9ZTCoreKit14ZTURLTransformC", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } ] }, { @@ -61119,288 +47214,578 @@ }, { "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Plister", + "printedName": "Plister", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" ] }, { "kind": "TypeDecl", - "name": "ZTImmutableMappable", - "printedName": "ZTImmutableMappable", + "name": "ZTDevice", + "printedName": "ZTDevice", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Var", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "protocolReq": true, - "throwing": true, - "reqNewWitnessTableEntry": true, - "init_kind": "Designated" + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Var", + "name": "peripheral", + "printedName": "peripheral", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "CoreBluetooth.CBPeripheral?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreBluetooth.CBPeripheral?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", + "kind": "Var", + "name": "cbPeripheral", + "printedName": "cbPeripheral", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSON:context:)", + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "qrCode", + "printedName": "qrCode", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONObject:context:)", + "kind": "Var", + "name": "rssi", + "printedName": "rssi", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macAddressRight", + "printedName": "macAddressRight", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit19ZTImmutableMappableP", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPrimaryOldService", - "printedName": "ZTPrimaryOldService", - "children": [ + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "macAddressLeft", + "printedName": "macAddressLeft", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -61409,64 +47794,117 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "name": "advertisementData", + "printedName": "advertisementData", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -61480,41 +47918,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -61529,41 +47963,37 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -61578,618 +48008,569 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Var", + "name": "manufacturer", + "printedName": "manufacturer", "children": [ { "kind": "TypeNominal", - "name": "ZTPrimaryOldService", - "printedName": "ZTCoreKit.ZTPrimaryOldService", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, "declAttributes": [ - "Required" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "DFUUuidType", - "printedName": "DFUUuidType", - "children": [ - { - "kind": "Var", - "name": "legacyService", - "printedName": "legacyService", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyServiceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 + ] }, { "kind": "Var", - "name": "legacyControlPoint", - "printedName": "legacyControlPoint", + "name": "hardwareRevision", + "printedName": "hardwareRevision", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyControlPoint", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO18legacyControlPointyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "legacyPacket", - "printedName": "legacyPacket", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyPacket", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12legacyPacketyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + ] }, { "kind": "Var", - "name": "legacyVersion", - "printedName": "legacyVersion", + "name": "firmwareRevision", + "printedName": "firmwareRevision", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareRevision?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyVersion", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyVersionyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "secureService", - "printedName": "secureService", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareRevision?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureServiceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 + ] }, { "kind": "Var", - "name": "secureControl", - "printedName": "secureControl", + "name": "modelNumber", + "printedName": "modelNumber", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureControl", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureControlyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 5 - }, - { - "kind": "Var", - "name": "securePacket", - "printedName": "securePacket", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecurePacket", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12securePacketyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 6 + ] }, { "kind": "Var", - "name": "buttonlessService", - "printedName": "buttonlessService", + "name": "uuid", + "printedName": "uuid", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isConnected", + "printedName": "isConnected", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO17buttonlessServiceyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 7 + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "buttonlessCharacteristic", - "printedName": "buttonlessCharacteristic", + "name": "isActivityRunning", + "printedName": "isActivityRunning", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isDeviceReady", + "printedName": "isDeviceReady", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessCharacteristic", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO24buttonlessCharacteristicyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 8 + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "buttonlessWithoutBondSharing", - "printedName": "buttonlessWithoutBondSharing", + "name": "info", + "printedName": "info", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithoutBondSharing", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO28buttonlessWithoutBondSharingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 9 - }, - { - "kind": "Var", - "name": "buttonlessWithBondSharing", - "printedName": "buttonlessWithBondSharing", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithBondSharing", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO25buttonlessWithBondSharingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 10 + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "batterylevel", + "printedName": "batterylevel", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUUuidType?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivp", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62198,99 +48579,51 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "ZTCoreKit.ZTBatteryLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivg", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUUuid", - "printedName": "DFUUuid", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "lastActivityDate", + "printedName": "lastActivityDate", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)uuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -62300,48 +48633,50 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)uuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "generalState", + "printedName": "generalState", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)type", - "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -62351,177 +48686,127 @@ "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)type", - "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(withUUID:forType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" }, { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)initWithUUID:forType:", - "mangledName": "$s9ZTCoreKit7DFUUuidC8withUUID7forTypeACSo6CBUUIDC_AA0cG0Otcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUUID:forType:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)init", - "mangledName": "$s9ZTCoreKit7DFUUuidCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + ] }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUUuidHelper", - "printedName": "DFUUuidHelper", - "children": [ { "kind": "Var", - "name": "legacyDFUService", - "printedName": "legacyDFUService", + "name": "softwareInfo", + "printedName": "softwareInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62533,47 +48818,140 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "legacyDFUControlPoint", - "printedName": "legacyDFUControlPoint", + "name": "lowSoftwareInfo", + "printedName": "lowSoftwareInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62582,44 +48960,47 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "legacyDFUPacket", - "printedName": "legacyDFUPacket", + "name": "activityInfo", + "printedName": "activityInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62631,44 +49012,127 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "legacyDFUVersion", - "printedName": "legacyDFUVersion", + "name": "bootloaderInfo", + "printedName": "bootloaderInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUVersion", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62680,44 +49144,148 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUVersion", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUService", - "printedName": "secureDFUService", + "name": "inactivityTimeout", + "printedName": "inactivityTimeout", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62729,44 +49297,98 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUControlPoint", - "printedName": "secureDFUControlPoint", + "name": "actualState", + "printedName": "actualState", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62778,44 +49400,82 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUPacket", - "printedName": "secureDFUPacket", + "name": "previousState", + "printedName": "previousState", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62827,47 +49487,82 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "buttonlessExperimentalService", - "printedName": "buttonlessExperimentalService", + "name": "hasInitialUpdate", + "printedName": "hasInitialUpdate", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62876,46 +49571,80 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "buttonlessExperimentalCharacteristic", - "printedName": "buttonlessExperimentalCharacteristic", + "name": "onStateChanged", + "printedName": "onStateChanged", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalCharacteristic", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -62925,18 +49654,55 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalCharacteristic", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } @@ -62944,27 +49710,49 @@ }, { "kind": "Var", - "name": "buttonlessWithoutBonds", - "printedName": "buttonlessWithoutBonds", + "name": "onRSSIChanged", + "printedName": "onRSSIChanged", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithoutBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -62974,18 +49762,39 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithoutBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } @@ -62993,27 +49802,49 @@ }, { "kind": "Var", - "name": "buttonlessWithBonds", - "printedName": "buttonlessWithBonds", + "name": "onServiceDiscovered", + "printedName": "onServiceDiscovered", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63023,196 +49854,89 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)init", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(customUuids:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.DFUUuid]", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)initWithCustomUuids:", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC11customUuidsACSayAA0C0CG_tcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithCustomUuids:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTUser", - "printedName": "ZTUser", - "children": [ { "kind": "Var", - "name": "attributes", - "printedName": "attributes", + "name": "onServiceFeaturesIdentified", + "printedName": "onServiceFeaturesIdentified", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvp", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63222,117 +49946,157 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvg", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCharacteristicDiscovered", + "printedName": "onCharacteristicDiscovered", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvs", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvM", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "onAllCharacteristicsDiscovered", + "printedName": "onAllCharacteristicsDiscovered", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63342,107 +50106,61 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "organizationId", - "printedName": "organizationId", + "name": "onAllCharacteristicsRead", + "printedName": "onAllCharacteristicsRead", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63452,107 +50170,152 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCharacteristicValueUpdated", + "printedName": "onCharacteristicValueUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appId", - "printedName": "appId", + "name": "onCharacteristicValueWritten", + "printedName": "onCharacteristicValueWritten", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63562,107 +50325,188 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCommandCharacteristicDiscovered", + "printedName": "onCommandCharacteristicDiscovered", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onNotifyValueUpdated", + "printedName": "onNotifyValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63672,107 +50516,97 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "onBatteryValueUpdated", + "printedName": "onBatteryValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63782,107 +50616,62 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "userId", - "printedName": "userId", + "name": "onGeneralStateUpdated", + "printedName": "onGeneralStateUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63892,210 +50681,145 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onActivityInfoUpdated", + "printedName": "onActivityInfoUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Var", + "name": "onSoftwareUpdated", + "printedName": "onSoftwareUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUser?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTUser", - "printedName": "ZTCoreKit.ZTUser", - "usr": "s:9ZTCoreKit6ZTUserC" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Required", - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit6ZTUserC", - "mangledName": "$s9ZTCoreKit6ZTUserC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTSerialNumberCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", "Final", @@ -64103,6 +50827,7 @@ "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64112,105 +50837,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "onTimeUpdated", + "printedName": "onTimeUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageTime?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64220,149 +50919,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageTime?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "isOpen": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAchievement", - "printedName": "ZTAchievement", - "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "onActivityMetadataUpdated", + "printedName": "onActivityMetadataUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64372,107 +51001,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onRawDataHeaderUpdated", + "printedName": "onRawDataHeaderUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "onRawDataFrameUpdated", + "printedName": "onRawDataFrameUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64482,107 +51165,153 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onInactivityTimeoutUpdated", + "printedName": "onInactivityTimeoutUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "name": "onFirmwareError", + "printedName": "onFirmwareError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64592,107 +51321,208 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyCommonGroupUpdated", + "printedName": "onNotifyCommonGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "code", - "printedName": "code", + "name": "onNotifyWarmGroupUpdated", + "printedName": "onNotifyWarmGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64702,107 +51532,237 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyRunningGroupUpdated", + "printedName": "onNotifyRunningGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appuserId", - "printedName": "appuserId", + "name": "onNotifyCyclingGroupUpdated", + "printedName": "onNotifyCyclingGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64812,120 +51772,245 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifySafetyGroupUpdated", + "printedName": "onNotifySafetyGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "onNotifyGenericGroupUpdated", + "printedName": "onNotifyGenericGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64935,134 +52020,182 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCommandUpdated", + "printedName": "onCommandUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "ZTCoreKit.ZTCommandResponse?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "onCommandAck", + "printedName": "onCommandAck", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65072,108 +52205,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onIndicateValueUpdated", + "printedName": "onIndicateValueUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int64?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "calories", - "printedName": "calories", + "name": "onBootloaderInfoUpdated", + "printedName": "onBootloaderInfoUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65183,107 +52369,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyChunkSendStatusUpdated", + "printedName": "onNotifyChunkSendStatusUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onNotifyChunkConfigUpdated", + "printedName": "onNotifyChunkConfigUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65293,107 +52533,142 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyChunkDataUpdated", + "printedName": "onNotifyChunkDataUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTMessageChunkData?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkData?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(peripheral:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAchievement?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAchievement", - "printedName": "ZTCoreKit.ZTAchievement", - "usr": "s:9ZTCoreKit13ZTAchievementC" - } - ], - "usr": "s:Sq" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -65403,134 +52678,88 @@ "init_kind": "Designated" }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(cbPeripheral:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit8ZTDeviceC7connectyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC7connectyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTAchievementC", - "mangledName": "$s9ZTCoreKit13ZTAchievementC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTWebSocket", - "printedName": "ZTWebSocket", - "declKind": "Class", - "usr": "s:9ZTCoreKit11ZTWebSocketC", - "mangledName": "$s9ZTCoreKit11ZTWebSocketC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivity", - "printedName": "ZTActivity", - "children": [ - { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC10disconnectyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10disconnectyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeValue", + "printedName": "observeValue(forKeyPath:of:change:context:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -65539,149 +52768,96 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "NSKeyValueChangeKey", + "printedName": "Foundation.NSKeyValueChangeKey", + "usr": "c:@T@NSKeyValueChangeKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityIdentifier", - "printedName": "activityIdentifier", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)observeValueForKeyPath:ofObject:change:context:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeye6ChangeG0aypGSgSvSgtF", "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "observeValueForKeyPath:ofObject:change:context:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", + "Override", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "service", + "printedName": "service(_:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "appId", - "printedName": "appId", - "children": [ { "kind": "TypeNominal", "name": "Optional", @@ -65694,52 +52870,36 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkBattery", + "printedName": "checkBattery(completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", @@ -65748,1060 +52908,880 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "kind": "Function", + "name": "readGeneralState", + "printedName": "readGeneralState()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)init", + "mangledName": "$s9ZTCoreKit8ZTDeviceCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didWriteValueFor:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBDescriptor", + "printedName": "CoreBluetooth.CBDescriptor", + "usr": "c:objc(cs)CBDescriptor" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForDescriptor:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didWriteValueForDescriptor:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "startDate", - "printedName": "startDate", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverServices:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverServices:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_19didDiscoverServicesySo12CBPeripheralC_s5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverServices:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverCharacteristicsFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverCharacteristicsForService:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didDiscoverCharacteristicsFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverCharacteristicsForService:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "endDate", - "printedName": "endDate", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateValueFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateValueForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didWriteValueFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didWriteValueForCharacteristic:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "startTimestamp", - "printedName": "startTimestamp", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateNotificationStateFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int64?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateNotificationStateForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didUpdateNotificationStateFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateNotificationStateForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didReadRSSI:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didReadRSSI:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_11didReadRSSI5errorySo12CBPeripheralC_So8NSNumberCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didReadRSSI:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "endTimestamp", - "printedName": "endTimestamp", + "kind": "Function", + "name": "peripheralDidUpdateName", + "printedName": "peripheralDidUpdateName(_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralDidUpdateName:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23peripheralDidUpdateNameyySo12CBPeripheralCF", "moduleName": "ZTCoreKit", + "objc_name": "peripheralDidUpdateName:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didModifyServices:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didModifyServices:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didModifyServicesySo12CBPeripheralC_SaySo9CBServiceCGtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didModifyServices:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "tz", - "printedName": "tz", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverIncludedServicesFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverIncludedServicesForService:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_30didDiscoverIncludedServicesFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverIncludedServicesForService:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverDescriptorsFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverDescriptorsForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_25didDiscoverDescriptorsFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverDescriptorsForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateValueFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBDescriptor", + "printedName": "CoreBluetooth.CBDescriptor", + "usr": "c:objc(cs)CBDescriptor" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForDescriptor:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateValueForDescriptor:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "state", - "printedName": "state", + "kind": "Function", + "name": "peripheralIsReady", + "printedName": "peripheralIsReady(toSendWriteWithoutResponse:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralIsReadyToSendWriteWithoutResponse:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17peripheralIsReady26toSendWriteWithoutResponseySo12CBPeripheralC_tF", "moduleName": "ZTCoreKit", + "objc_name": "peripheralIsReadyToSendWriteWithoutResponse:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didOpen:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreBluetooth.CBL2CAPChannel?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CBL2CAPChannel", + "printedName": "CoreBluetooth.CBL2CAPChannel", + "usr": "c:objc(cs)CBL2CAPChannel" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetsIds", - "printedName": "packetsIds", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didOpenL2CAPChannel:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_7didOpen5errorySo12CBPeripheralC_So14CBL2CAPChannelCSgs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didOpenL2CAPChannel:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommand", + "printedName": "sendCommand(_:parameters:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.UInt16]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cachedPackets", - "printedName": "cachedPackets", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommandWithAck", + "printedName": "sendCommandWithAck(command:parameters:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -66810,109 +53790,75 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "metaData", - "printedName": "metaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommandWithRightAck", + "printedName": "sendCommandWithRightAck(command:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -66922,76 +53868,96 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "stopReason", - "printedName": "stopReason", + "name": "isLowBattery", + "printedName": "isLowBattery", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -67001,95 +53967,135 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice", + "mangledName": "$s9ZTCoreKit8ZTDeviceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTIndicateCharacteristic", + "printedName": "ZTIndicateCharacteristic", + "children": [ { "kind": "Var", - "name": "isRawDataMode", - "printedName": "isRawDataMode", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -67103,16 +54109,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -67127,16 +54137,20 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -67151,33 +54165,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvM", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "isAutomatic", - "printedName": "isAutomatic", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvp", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], @@ -67190,600 +54217,1530 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvg", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTIndicateCharacteristic", + "printedName": "ZTCoreKit.ZTIndicateCharacteristic", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "forceStop", - "printedName": "forceStop", + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", + "Override", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "OperatorDecl", + "name": "<<-", + "printedName": "<<-", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix", + "RawDocComment" + ] + }, + { + "kind": "OperatorDecl", + "name": "->>", + "printedName": "->>", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Var", - "name": "isInterrupted", - "printedName": "isInterrupted", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Var", - "name": "firstChunkId", - "printedName": "firstChunkId", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" }, { - "kind": "Var", - "name": "lastChunkId", - "printedName": "lastChunkId", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" }, { - "kind": "Var", - "name": "chunkCount", - "printedName": "chunkCount", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ { - "kind": "Accessor", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", "name": "Set", - "printedName": "Set()", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:Sh" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "anchorTimestamp", - "printedName": "anchorTimestamp", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageSoftware", + "printedName": "ZTMessageSoftware", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -67792,109 +55749,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customActivityStartTimestamp", - "printedName": "customActivityStartTimestamp", + "name": "baseMajor", + "printedName": "baseMajor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -67903,109 +55789,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customActivityFirstChunkId", - "printedName": "customActivityFirstChunkId", + "name": "baseMinor", + "printedName": "baseMinor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68014,109 +55829,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", + "name": "baseBuild", + "printedName": "baseBuild", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68125,109 +55869,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shoesSerial", - "printedName": "shoesSerial", + "name": "app", + "printedName": "app", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68236,316 +55909,179 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTActivityCACycfc", - "mangledName": "$s9ZTCoreKit10ZTActivityCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "save", - "printedName": "save()", + "kind": "Var", + "name": "appMajor", + "printedName": "appMajor", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC4saveyyF", - "mangledName": "$s9ZTCoreKit10ZTActivityC4saveyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(firstChunkId:lastChunkId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appMinor", + "printedName": "appMinor", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA13ZTSegmentDataCGs6UInt16VSg_ALtF", - "mangledName": "$s9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA13ZTSegmentDataCGs6UInt16VSg_ALtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "lastSavedChunkId", - "printedName": "lastSavedChunkId(startId:lastId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s6UInt16VAHSg_AItF", - "mangledName": "$s9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s6UInt16VAHSg_AItF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addToCache", - "printedName": "addToCache(_:)", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC10addToCacheyyAA13ZTSegmentDataCF", - "mangledName": "$s9ZTCoreKit10ZTActivityC10addToCacheyyAA13ZTSegmentDataCF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "uploadCache", - "printedName": "uploadCache(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", - "mangledName": "$s9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "saveCachedPackets", - "printedName": "saveCachedPackets()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", - "mangledName": "$s9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Constructor", @@ -68554,9 +56090,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" }, { "kind": "TypeNominal", @@ -68566,13 +56102,10 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTActivityC4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit10ZTActivityC4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Required" - ], "throwing": true, "init_kind": "Designated" }, @@ -68594,67 +56127,30 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit10ZTActivityC6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, - "isOpen": true, "throwing": true, "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTActivityC", - "mangledName": "$s9ZTCoreKit10ZTActivityC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, { "kind": "Conformance", "name": "Decodable", @@ -68683,30 +56179,68 @@ }, { "kind": "TypeDecl", - "name": "ZTDfuDelegate", - "printedName": "ZTDfuDelegate", + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTSerialNumberCharacteristic", "children": [ { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(firmwareDownloaded:version:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -68714,238 +56248,218 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(didFinish:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(didFail:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(leftDidFinish:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "overriding": true, + "isOpen": true, + "declAttributes": [ + "AccessControl", + "Override" + ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(rightDidFinish:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP", + "declKind": "Class", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "DFUServiceInitiator", - "printedName": "DFUServiceInitiator", + "name": "ZTActivityCachable", + "printedName": "ZTActivityCachable", "children": [ { "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)delegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -68954,27 +56468,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceDelegate", - "printedName": "any ZTCoreKit.DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)delegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -68989,27 +56495,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceDelegate", - "printedName": "any ZTCoreKit.DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDelegate:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69024,39 +56522,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "progressDelegate", - "printedName": "progressDelegate", + "name": "packets", + "printedName": "packets", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)progressDelegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -69066,26 +56568,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", + "printedName": "Foundation.NSMutableOrderedSet?", "children": [ { "kind": "TypeNominal", - "name": "DFUProgressDelegate", - "printedName": "any ZTCoreKit.DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)progressDelegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -69101,26 +56603,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", + "printedName": "Foundation.NSMutableOrderedSet?", "children": [ { "kind": "TypeNominal", - "name": "DFUProgressDelegate", - "printedName": "any ZTCoreKit.DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setProgressDelegate:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69135,39 +56637,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "logger", - "printedName": "logger", + "name": "startDate", + "printedName": "startDate", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.LoggerDelegate)?" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)logger", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -69177,26 +56683,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.LoggerDelegate)?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "LoggerDelegate", - "printedName": "any ZTCoreKit.LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)logger", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -69212,26 +56718,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.LoggerDelegate)?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "LoggerDelegate", - "printedName": "any ZTCoreKit.LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setLogger:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69246,37 +56752,454 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "upload", + "printedName": "upload(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTActivityCachableP6uploadyySayqd__GYaKAA08ZTPacketD0Rd__lF", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP6uploadyySayqd__GYaKAA08ZTPacketD0Rd__lF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable, τ_1_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTActivityCachablePAAE2eeoiySbx_xtFZ", + "mangledName": "$s9ZTCoreKit18ZTActivityCachablePAAE2eeoiySbx_xtFZ", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit18ZTActivityCachableP", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : CoreData.NSManagedObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogLevel", + "printedName": "LogLevel", + "children": [ { "kind": "Var", - "name": "peripheralSelector", - "printedName": "peripheralSelector", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelDebug", + "mangledName": "$s9ZTCoreKit8LogLevelO5debugyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "verbose", + "printedName": "verbose", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelVerbose", + "mangledName": "$s9ZTCoreKit8LogLevelO7verboseyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelInfo", + "mangledName": "$s9ZTCoreKit8LogLevelO4infoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "application", + "printedName": "application", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelApplication", + "mangledName": "$s9ZTCoreKit8LogLevelO11applicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "warning", + "printedName": "warning", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelWarning", + "mangledName": "$s9ZTCoreKit8LogLevelO7warningyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelError", + "mangledName": "$s9ZTCoreKit8LogLevelO5erroryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Function", + "name": "name", + "printedName": "name()", "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)peripheralSelector", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8LogLevelO4nameSSyF", + "mangledName": "$s9ZTCoreKit8LogLevelO4nameSSyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.LogLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -69285,90 +57208,399 @@ "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)peripheralSelector", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvg", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@LogLevel", + "mangledName": "$s9ZTCoreKit8LogLevelO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerDelegate", + "printedName": "LoggerDelegate", + "children": [ + { + "kind": "Function", + "name": "logWith", + "printedName": "logWith(_:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate(im)logWith:message:", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP7logWith_7messageyAA8LogLevelO_SStF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.LoggerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMappingType", + "printedName": "ZTMappingType", + "children": [ + { + "kind": "Var", + "name": "fromJSON", + "printedName": "fromJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" }, { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMappingType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPeripheralSelector:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "toJSON", + "printedName": "toJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMappingType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivp", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivg", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTMappingTypeO", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMapper", + "printedName": "ZTMapper", + "children": [ { "kind": "Var", - "name": "packetReceiptNotificationParameter", - "printedName": "packetReceiptNotificationParameter", + "name": "context", + "printedName": "context", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)packetReceiptNotificationParameter", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvp", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -69379,18 +57611,28 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)packetReceiptNotificationParameter", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvg", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -69406,18 +57648,28 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPacketReceiptNotificationParameter:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvs", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -69433,18 +57685,23 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "forceDfu", - "printedName": "forceDfu", + "name": "shouldIncludeNilValues", + "printedName": "shouldIncludeNilValues", "children": [ { "kind": "TypeNominal", @@ -69454,15 +57711,14 @@ } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvp", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -69479,12 +57735,14 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvg", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -69506,12 +57764,14 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvs", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -69527,878 +57787,1278 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "forceScanningForNewAddressInLegacyDfu", - "printedName": "forceScanningForNewAddressInLegacyDfu", + "kind": "Constructor", + "name": "init", + "printedName": "init(context:shouldIncludeNilValues:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapper", + "printedName": "ZTCoreKit.ZTMapper<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit8ZTMapperC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", + "hasDefaultArg": true, "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceScanningForNewAddressInLegacyDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", + "mangledName": "$s9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:toObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceScanningForNewAddressInLegacyDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:toObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:toObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceScanningForNewAddressInLegacyDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "connectionTimeout", - "printedName": "connectionTimeout", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)connectionTimeout", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)connectionTimeout", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setConnectionTimeout:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "dataObjectPreparationDelay", - "printedName": "dataObjectPreparationDelay", + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)dataObjectPreparationDelay", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)dataObjectPreparationDelay", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDataObjectPreparationDelay:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sa" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "alternativeAdvertisingNameEnabled", - "printedName": "alternativeAdvertisingNameEnabled", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingNameEnabled", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingNameEnabled", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } ], - "accessorKind": "get" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingNameEnabled:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:toDictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "alternativeAdvertisingName", - "printedName": "alternativeAdvertisingName", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:toDictionary:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingName", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingName", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingName:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "printedName": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArrayOfArrays", + "printedName": "mapArrayOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setEnableUnsafeExperimentalButtonlessServiceInSecureDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONStringIntoDictionary", + "printedName": "parseJSONStringIntoDictionary(JSONString:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "uuidHelper", - "printedName": "uuidHelper", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)uuidHelper", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)uuidHelper", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONString", + "printedName": "parseJSONString(JSONString:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setUuidHelper:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disableResume", - "printedName": "disableResume", - "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)disableResume", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)disableResume", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDisableResume:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC14centralManager6targetACSo09CBCentralF0C_So12CBPeripheralCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", "moduleName": "ZTCoreKit", - "deprecated": true, - "objc_name": "initWithCentralManager:target:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" + "Final" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", @@ -70420,667 +59080,484 @@ "usr": "s:SD" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5queue13delegateQueue08progressG006loggerG021centralManagerOptionsACSo012OS_dispatch_E0CSg_A3JSDySSypGSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", "moduleName": "ZTCoreKit", - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", + "Final", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "with", - "printedName": "with(firmware:)", + "name": "mapArray", + "printedName": "mapArray(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)withFirmware:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC4with8firmwareAcA11DFUFirmwareC_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", "moduleName": "ZTCoreKit", - "objc_name": "withFirmware:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start()", + "name": "mapArray", + "printedName": "mapArray(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)start", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5startAA0C10ControllerCSgyF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", "moduleName": "ZTCoreKit", - "deprecated": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start(target:)", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTarget:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start6targetAA0C10ControllerCSgSo12CBPeripheralC_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", "moduleName": "ZTCoreKit", - "objc_name": "startWithTarget:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", + "Final", "RawDocComment" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start20targetWithIdentifierAA0C10ControllerCSg10Foundation4UUIDV_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", "moduleName": "ZTCoreKit", - "objc_name": "startWithTargetWithIdentifier:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)init", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTPlistStorage", - "printedName": "ZTPlistStorage", - "children": [ - { - "kind": "Var", - "name": "plist", - "printedName": "plist", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvpZ", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvgZ", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvgZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPlistStorage>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit14ZTPlistStorageP", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBatteryLevel", - "printedName": "ZTBatteryLevel", - "children": [ - { - "kind": "Var", - "name": "rawData", - "printedName": "rawData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:SD" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", + "Final", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSON:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArrayOfArrays", + "printedName": "mapArrayOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sa" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "min", - "printedName": "min", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", + "Final", "RawDocComment" ], - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONfile:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", @@ -71088,724 +59565,852 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONfile:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelVACycfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelVACycfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", + "mangledName": "$s9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "toJSONArray", + "printedName": "toJSONArray(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUError", - "printedName": "DFUError", - "children": [ - { - "kind": "Var", - "name": "remoteLegacyDFUSuccess", - "printedName": "remoteLegacyDFUSuccess", + "kind": "Function", + "name": "toJSONDictionary", + "printedName": "toJSONDictionary(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteLegacyDFUSuccessyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUInvalidState", - "printedName": "remoteLegacyDFUInvalidState", + "kind": "Function", + "name": "toJSONDictionaryOfArrays", + "printedName": "toJSONDictionaryOfArrays(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUInvalidState", - "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUInvalidStateyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "remoteLegacyDFUNotSupported", - "printedName": "remoteLegacyDFUNotSupported", - "children": [ + ], + "usr": "s:SD" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUNotSupportedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 2 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUDataExceedsLimit", - "printedName": "remoteLegacyDFUDataExceedsLimit", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUDataExceedsLimit", - "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteLegacyDFUDataExceedsLimityA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 3 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUCrcError", - "printedName": "remoteLegacyDFUCrcError", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUCrcError", - "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteLegacyDFUCrcErroryA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 4 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUOperationFailed", - "printedName": "remoteLegacyDFUOperationFailed", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteLegacyDFUOperationFailedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 5 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUSuccess", - "printedName": "remoteSecureDFUSuccess", + "kind": "Function", + "name": "toJSONData", + "printedName": "toJSONData(_:options:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "WritingOptions", + "printedName": "Foundation.JSONSerialization.WritingOptions", + "usr": "c:@E@NSJSONWritingOptions" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteSecureDFUSuccessyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 6 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUOpCodeNotSupported", - "printedName": "remoteSecureDFUOpCodeNotSupported", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONString:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteSecureDFUOpCodeNotSupportedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 7 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInvalidParameter", - "printedName": "remoteSecureDFUInvalidParameter", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONObject:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidParameter", - "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteSecureDFUInvalidParameteryA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 8 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInsufficientResources", - "printedName": "remoteSecureDFUInsufficientResources", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONArray:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInsufficientResources", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUInsufficientResourcesyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 9 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInvalidObject", - "printedName": "remoteSecureDFUInvalidObject", + "kind": "Function", + "name": "toJSONSet", + "printedName": "toJSONSet(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidObject", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUInvalidObjectyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 10 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUSignatureMismatch", - "printedName": "remoteSecureDFUSignatureMismatch", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSignatureMismatch", - "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteSecureDFUSignatureMismatchyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 11 - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTMapperC", + "mangledName": "$s9ZTCoreKit8ZTMapperC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerComponent", + "printedName": "ZTLoggerComponent", + "children": [ { "kind": "Var", - "name": "remoteSecureDFUUnsupportedType", - "printedName": "remoteSecureDFUUnsupportedType", + "name": "api", + "printedName": "api", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71813,41 +60418,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUUnsupportedType", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUUnsupportedTypeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 12 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUOperationNotPermitted", - "printedName": "remoteSecureDFUOperationNotPermitted", + "name": "app", + "printedName": "app", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71855,41 +60455,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationNotPermitted", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUOperationNotPermittedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 13 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUOperationFailed", - "printedName": "remoteSecureDFUOperationFailed", + "name": "sdk", + "printedName": "sdk", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71897,41 +60492,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 14 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUExtendedError", - "printedName": "remoteSecureDFUExtendedError", + "name": "firmware", + "printedName": "firmware", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71939,167 +60529,161 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUExtendedError", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUExtendedErroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 15 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongCommandFormat", - "printedName": "remoteExtendedErrorWrongCommandFormat", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLoggerComponent?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongCommandFormat", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongCommandFormatyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 16 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteExtendedErrorUnknownCommand", - "printedName": "remoteExtendedErrorUnknownCommand", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorUnknownCommand", - "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteExtendedErrorUnknownCommandyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 17 + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "remoteExtendedErrorInitCommandInvalid", - "printedName": "remoteExtendedErrorInitCommandInvalid", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInitCommandInvalid", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorInitCommandInvalidyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 18 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerSeverity", + "printedName": "ZTLoggerSeverity", + "children": [ { "kind": "Var", - "name": "remoteExtendedErrorFwVersionFailure", - "printedName": "remoteExtendedErrorFwVersionFailure", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72107,41 +60691,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorFwVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorFwVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 19 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorHwVersionFailure", - "printedName": "remoteExtendedErrorHwVersionFailure", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72149,41 +60728,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHwVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorHwVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 20 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorSdVersionFailure", - "printedName": "remoteExtendedErrorSdVersionFailure", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72191,41 +60765,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSdVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSdVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 21 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorSignatureMissing", - "printedName": "remoteExtendedErrorSignatureMissing", + "name": "warn", + "printedName": "warn", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72233,167 +60802,171 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSignatureMissing", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSignatureMissingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 22 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongHashType", - "printedName": "remoteExtendedErrorWrongHashType", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLoggerSeverity?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongHashType", - "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteExtendedErrorWrongHashTypeyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 23 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteExtendedErrorHashFailed", - "printedName": "remoteExtendedErrorHashFailed", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHashFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO29remoteExtendedErrorHashFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 24 + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongSignatureType", - "printedName": "remoteExtendedErrorWrongSignatureType", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongSignatureType", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongSignatureTypeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 25 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDfuPackageType", + "printedName": "ZTDfuPackageType", + "children": [ { "kind": "Var", - "name": "remoteExtendedErrorVerificationFailed", - "printedName": "remoteExtendedErrorVerificationFailed", + "name": "APP", + "printedName": "APP", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72401,41 +60974,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorVerificationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorVerificationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 26 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorInsufficientSpace", - "printedName": "remoteExtendedErrorInsufficientSpace", + "name": "BL", + "printedName": "BL", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72443,41 +61011,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInsufficientSpace", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteExtendedErrorInsufficientSpaceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 27 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUSuccess", - "printedName": "remoteExperimentalButtonlessDFUSuccess", + "name": "SD", + "printedName": "SD", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72485,41 +61048,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO38remoteExperimentalButtonlessDFUSuccessyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 28 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUOpCodeNotSupported", - "printedName": "remoteExperimentalButtonlessDFUOpCodeNotSupported", + "name": "SD_BL", + "printedName": "SD_BL", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72527,41 +61085,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO49remoteExperimentalButtonlessDFUOpCodeNotSupportedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 29 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUOperationFailed", - "printedName": "remoteExperimentalButtonlessDFUOperationFailed", + "name": "SD_BL_APP", + "printedName": "SD_BL_APP", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72569,839 +61122,1322 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO46remoteExperimentalButtonlessDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 30 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteButtonlessDFUSuccess", - "printedName": "remoteButtonlessDFUSuccess", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDfuPackageType?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO26remoteButtonlessDFUSuccessyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 31 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteButtonlessDFUOpCodeNotSupported", - "printedName": "remoteButtonlessDFUOpCodeNotSupported", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteButtonlessDFUOpCodeNotSupportedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 32 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTHardwareCharacteristic", + "children": [ { "kind": "Var", - "name": "remoteButtonlessDFUOperationFailed", - "printedName": "remoteButtonlessDFUOperationFailed", + "name": "uuid", + "printedName": "uuid", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO34remoteButtonlessDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 33 + ] }, { "kind": "Var", - "name": "remoteButtonlessDFUInvalidAdvertisementName", - "printedName": "remoteButtonlessDFUInvalidAdvertisementName", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUInvalidAdvertisementName", - "mangledName": "$s9ZTCoreKit8DFUErrorO43remoteButtonlessDFUInvalidAdvertisementNameyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "Override" ], - "fixedbinaryorder": 34 + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteButtonlessDFUBusy", - "printedName": "remoteButtonlessDFUBusy", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageChunkData", + "printedName": "ZTMessageChunkData", + "children": [ + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "manual", + "printedName": "manual", "children": [ { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUBusy", - "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteButtonlessDFUBusyyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 35 - }, - { - "kind": "Var", - "name": "remoteButtonlessDFUNotBonded", - "printedName": "remoteButtonlessDFUNotBonded", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUNotBonded", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteButtonlessDFUNotBondedyA2CmF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl" ], - "fixedbinaryorder": 36 - }, - { - "kind": "Var", - "name": "fileNotSpecified", - "printedName": "fileNotSpecified", - "children": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileNotSpecified", - "mangledName": "$s9ZTCoreKit8DFUErrorO16fileNotSpecifiedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 37 + ] }, { "kind": "Var", - "name": "fileInvalid", - "printedName": "fileInvalid", + "name": "byte0", + "printedName": "byte0", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileInvalid", - "mangledName": "$s9ZTCoreKit8DFUErrorO11fileInvalidyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 38 + ] }, { "kind": "Var", - "name": "extendedInitPacketRequired", - "printedName": "extendedInitPacketRequired", + "name": "byte1", + "printedName": "byte1", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorExtendedInitPacketRequired", - "mangledName": "$s9ZTCoreKit8DFUErrorO26extendedInitPacketRequiredyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 39 - }, - { - "kind": "Var", - "name": "initPacketRequired", - "printedName": "initPacketRequired", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInitPacketRequired", - "mangledName": "$s9ZTCoreKit8DFUErrorO18initPacketRequiredyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 40 + ] }, { "kind": "Var", - "name": "failedToConnect", - "printedName": "failedToConnect", + "name": "byte2", + "printedName": "byte2", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFailedToConnect", - "mangledName": "$s9ZTCoreKit8DFUErrorO15failedToConnectyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 41 - }, - { - "kind": "Var", - "name": "deviceDisconnected", - "printedName": "deviceDisconnected", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceDisconnected", - "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceDisconnectedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 42 + ] }, { "kind": "Var", - "name": "bluetoothDisabled", - "printedName": "bluetoothDisabled", + "name": "byte3", + "printedName": "byte3", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBluetoothDisabled", - "mangledName": "$s9ZTCoreKit8DFUErrorO17bluetoothDisabledyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 43 - }, - { - "kind": "Var", - "name": "serviceDiscoveryFailed", - "printedName": "serviceDiscoveryFailed", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorServiceDiscoveryFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO22serviceDiscoveryFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 44 + ] }, { - "kind": "Var", - "name": "deviceNotSupported", - "printedName": "deviceNotSupported", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceNotSupportedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 45 + "init_kind": "Designated" }, { - "kind": "Var", - "name": "readingVersionFailed", - "printedName": "readingVersionFailed", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReadingVersionFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO20readingVersionFailedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } ], - "fixedbinaryorder": 46 + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "enablingControlPointFailed", - "printedName": "enablingControlPointFailed", + "name": "side", + "printedName": "side", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorEnablingControlPointFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO26enablingControlPointFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 47 + ] }, { "kind": "Var", - "name": "writingCharacteristicFailed", - "printedName": "writingCharacteristicFailed", + "name": "mode", + "printedName": "mode", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "length", + "printedName": "length", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorWritingCharacteristicFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO27writingCharacteristicFailedyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 48 + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "receivingNotificationFailed", - "printedName": "receivingNotificationFailed", + "name": "payload", + "printedName": "payload", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReceivingNotificationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO27receivingNotificationFailedyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], - "fixedbinaryorder": 49 + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoStatus", + "printedName": "ZTAlgoStatus", + "children": [ { "kind": "Var", - "name": "unsupportedResponse", - "printedName": "unsupportedResponse", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73409,41 +62445,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorUnsupportedResponse", - "mangledName": "$s9ZTCoreKit8DFUErrorO19unsupportedResponseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 50 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "bytesLost", - "printedName": "bytesLost", + "name": "modeId", + "printedName": "modeId", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73451,41 +62482,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBytesLost", - "mangledName": "$s9ZTCoreKit8DFUErrorO9bytesLostyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 51 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "crcError", - "printedName": "crcError", + "name": "precisionMode", + "printedName": "precisionMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73493,41 +62519,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorCrcError", - "mangledName": "$s9ZTCoreKit8DFUErrorO8crcErroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 52 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "invalidInternalState", - "printedName": "invalidInternalState", + "name": "numberOfSteps", + "printedName": "numberOfSteps", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73535,14 +62556,9 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInvalidInternalState", - "mangledName": "$s9ZTCoreKit8DFUErrorO20invalidInternalStateyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 53 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", @@ -73552,27 +62568,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUError?", + "printedName": "ZTCoreKit.ZTAlgoStatus?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -73584,14 +62600,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivp", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -73602,14 +62618,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivg", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -73618,15 +62634,14 @@ } ], "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUError", - "mangledName": "$s9ZTCoreKit8DFUErrorO", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "enumRawTypeName": "Int", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -73649,180 +62664,92 @@ "children": [ { "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUState", - "printedName": "DFUState", - "children": [ - { - "kind": "Var", - "name": "connecting", - "printedName": "connecting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateConnecting", - "mangledName": "$s9ZTCoreKit8DFUStateO10connectingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "starting", - "printedName": "starting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateStarting", - "mangledName": "$s9ZTCoreKit8DFUStateO8startingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "enablingDfuMode", - "printedName": "enablingDfuMode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, + "name": "RawValue", + "printedName": "RawValue", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateEnablingDfuMode", - "mangledName": "$s9ZTCoreKit8DFUStateO15enablingDfuModeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.log", + "printedName": "os.log", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTLogLevel", + "printedName": "ZTLogLevel", + "children": [ { "kind": "Var", - "name": "uploading", - "printedName": "uploading", + "name": "all", + "printedName": "all", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73830,41 +62757,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateUploading", - "mangledName": "$s9ZTCoreKit8DFUStateO9uploadingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO3allyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO3allyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 + "RawDocComment" + ] }, { "kind": "Var", - "name": "validating", - "printedName": "validating", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73872,41 +62797,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateValidating", - "mangledName": "$s9ZTCoreKit8DFUStateO10validatingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5debugyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5debugyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 + "RawDocComment" + ] }, { "kind": "Var", - "name": "disconnecting", - "printedName": "disconnecting", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73914,41 +62837,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateDisconnecting", - "mangledName": "$s9ZTCoreKit8DFUStateO13disconnectingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO4infoyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO4infoyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 + "RawDocComment" + ] }, { "kind": "Var", - "name": "completed", - "printedName": "completed", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73956,41 +62877,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateCompleted", - "mangledName": "$s9ZTCoreKit8DFUStateO9completedyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5erroryA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 6 + "RawDocComment" + ] }, { "kind": "Var", - "name": "aborted", - "printedName": "aborted", + "name": "fatal", + "printedName": "fatal", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73998,14 +62917,12 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateAborted", - "mangledName": "$s9ZTCoreKit8DFUStateO7abortedyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 7 + "RawDocComment" + ] }, { "kind": "Constructor", @@ -74015,27 +62932,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", + "printedName": "ZTCoreKit.ZTLogLevel?", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -74047,14 +62964,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivp", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -74065,14 +62982,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivg", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -74092,11 +63009,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvp", + "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "isFromExtension": true, "accessors": [ @@ -74113,8 +63031,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvg", + "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" @@ -74123,15 +63041,14 @@ } ], "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUState", - "mangledName": "$s9ZTCoreKit8DFUStateO", + "usr": "s:9ZTCoreKit10ZTLogLevelO", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "enumRawTypeName": "Int", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -74159,9 +63076,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } @@ -74180,500 +63097,166 @@ }, { "kind": "TypeDecl", - "name": "DFUProgressDelegate", - "printedName": "DFUProgressDelegate", - "children": [ - { - "kind": "Function", - "name": "dfuProgressDidChange", - "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate(im)dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avgnopQ0ySi_S2iS2dtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUProgressDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUServiceDelegate", - "printedName": "DFUServiceDelegate", - "children": [ - { - "kind": "Function", - "name": "dfuStateDidChange", - "printedName": "dfuStateDidChange(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuStateDidChangeTo:", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP17dfuStateDidChange2toyAA8DFUStateO_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "dfuStateDidChangeTo:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuError", - "printedName": "dfuError(_:didOccurWithMessage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuError:didOccurWithMessage:", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageSoftware", - "printedName": "ZTMessageSoftware", + "name": "ZTLogCategory", + "printedName": "ZTLogCategory", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "networkAgent", + "printedName": "networkAgent", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "modules", + "printedName": "modules", "children": [ { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "baseMajor", - "printedName": "baseMajor", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "baseMinor", - "printedName": "baseMinor", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } + "RawDocComment" ] }, { "kind": "Var", - "name": "baseBuild", - "printedName": "baseBuild", + "name": "sdk", + "printedName": "sdk", "children": [ { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "app", - "printedName": "app", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } + "RawDocComment" ] }, { - "kind": "Var", - "name": "appMajor", - "printedName": "appMajor", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLogCategory?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "appMinor", - "printedName": "appMinor", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "version", - "printedName": "version", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -74683,12 +63266,10 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -74703,9 +63284,10 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] @@ -74723,13 +63305,14 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", + "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -74744,94 +63327,67 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV", + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTLogCategoryO", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, @@ -74840,50 +63396,46 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTHexColorTransform", - "printedName": "ZTHexColorTransform", + "name": "ZTDictionaryTransform", + "printedName": "ZTDictionaryTransform", "children": [ { "kind": "Constructor", "name": "init", - "printedName": "init(prefixToJSON:alphaToJSON:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "ZTHexColorTransform", - "printedName": "ZTCoreKit.ZTHexColorTransform", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "ZTDictionaryTransform", + "printedName": "ZTCoreKit.ZTDictionaryTransform<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -74897,13 +63449,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIColor?", + "printedName": "[τ_0_0 : τ_0_1]?", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" @@ -74923,10 +63487,11 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -74940,13 +63505,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" @@ -74954,36 +63518,51 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIColor?", + "printedName": "[τ_0_0 : τ_0_1]?", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -74998,9 +63577,21 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ] }, @@ -75011,9 +63602,8 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ] } @@ -75025,8 +63615,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "ObjectiveC", + "printedName": "ObjectiveC", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -75045,40 +63635,65 @@ }, { "kind": "TypeDecl", - "name": "ZTActivityComment", - "printedName": "ZTActivityComment", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTMessageBootloaderInfo", "children": [ { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75087,108 +63702,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "timeZone", - "printedName": "timeZone", + "name": "bootloaderVersion", + "printedName": "bootloaderVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75197,108 +63743,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "appSupportVersion", + "printedName": "appSupportVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75307,108 +63784,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "softDeviceId", + "printedName": "softDeviceId", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75417,108 +63825,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "name": "dfuState", + "printedName": "dfuState", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75528,107 +63875,46 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75637,363 +63923,508 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DfuState", + "printedName": "DfuState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "inProgress", + "printedName": "inProgress", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "received", + "printedName": "received", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Var", + "name": "readyForCopy", + "printedName": "readyForCopy", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activation", + "printedName": "activation", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "done", + "printedName": "done", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "error", + "printedName": "error", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "mediaFiles", - "printedName": "mediaFiles", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "kind": "Var", + "name": "validationError", + "printedName": "validationError", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activationError", + "printedName": "activationError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" - } - ], - "usr": "s:Sa" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], + "implicit": true, + "throwing": true, "init_kind": "Designated" }, { "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -76002,25 +64433,23 @@ }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTActivityCommentC", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -76029,17 +64458,24 @@ "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -76053,34 +64489,36 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTSegmentData", - "printedName": "ZTSegmentData", + "name": "ZTMessageTime", + "printedName": "ZTMessageTime", "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -76097,22 +64535,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -76129,22 +64559,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvs", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -76161,8 +64583,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvM", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -76171,19 +64593,19 @@ }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "side", + "printedName": "side", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -76200,14 +64622,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -76224,14 +64646,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvs", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -76248,8 +64670,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16VvM", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -76257,147 +64679,61 @@ ] }, { - "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] + "init_kind": "Designated" }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -76406,1166 +64742,1267 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit13ZTMessageTimeV", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNotifyData", + "printedName": "ZTNotifyData", + "children": [ + { + "kind": "TypeDecl", + "name": "GroupID", + "printedName": "GroupID", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "common", + "printedName": "common", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "warm", + "printedName": "warm", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "Var", + "name": "running", + "printedName": "running", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "cycling", + "printedName": "cycling", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "safety", + "printedName": "safety", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "generic", + "printedName": "generic", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" } ], "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "timestampType", - "printedName": "timestampType", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SY", + "mangledName": "$sSY" } ] }, { - "kind": "Var", - "name": "bmTimestampType", - "printedName": "bmTimestampType", + "kind": "TypeDecl", + "name": "CommonMessageId", + "printedName": "CommonMessageId", "children": [ { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_GENERAL_STATES", + "printedName": "MSG_GENERAL_STATES", "children": [ { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_BATTERY_LEVEL", + "printedName": "MSG_BATTERY_LEVEL", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_MEMS", + "printedName": "MSG_MEMS", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetType", - "printedName": "packetType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_FLASH", + "printedName": "MSG_FLASH", "children": [ { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_TIME", + "printedName": "MSG_TIME", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_HARDWARE", + "printedName": "MSG_HARDWARE", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "originalTimestamp", - "printedName": "originalTimestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_SOFTWARE", + "printedName": "MSG_SOFTWARE", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_ACTIVITY_INFO", + "printedName": "MSG_ACTIVITY_INFO", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_ACTIVITY_METADATA", + "printedName": "MSG_ACTIVITY_METADATA", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetsNumber", - "printedName": "packetsNumber", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_RAWDATA_HEADER", + "printedName": "MSG_RAWDATA_HEADER", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_RAWDATA_FRAME", + "printedName": "MSG_RAWDATA_FRAME", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_BTLOADER_INFO", + "printedName": "MSG_BTLOADER_INFO", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "rawDescription", - "printedName": "rawDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_INACTIVITY_TIMEOUT", + "printedName": "MSG_INACTIVITY_TIMEOUT", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "MSG_CHUNK_SEND_STATUS", + "printedName": "MSG_CHUNK_SEND_STATUS", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_CHUNK_DATA", + "printedName": "MSG_CHUNK_DATA", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_CHUNK_CONFIG", + "printedName": "MSG_CHUNK_CONFIG", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_DEBUG", + "printedName": "MSG_DEBUG", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "retryCount", - "printedName": "retryCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivg", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivM", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CodingKeys", - "printedName": "CodingKeys", - "children": [ - { - "kind": "Var", - "name": "id", - "printedName": "id", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO2idyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO2idyA2EmF", - "moduleName": "ZTCoreKit" + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10activityIdyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10activityIdyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WarmMessageId", + "printedName": "WarmMessageId", + "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "MSG_HEATING_TEMP_1", + "printedName": "MSG_HEATING_TEMP_1", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77573,36 +66010,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO03rawD0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO03rawD0yA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "MSG_HEATING_TEMP_2", + "printedName": "MSG_HEATING_TEMP_2", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77610,36 +66047,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9timestampyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9timestampyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "MSG_HEATING_STEP_R_CNT", + "printedName": "MSG_HEATING_STEP_R_CNT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77647,36 +66084,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8durationyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8durationyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "MSG_HEATING_STEP_L_CNT", + "printedName": "MSG_HEATING_STEP_L_CNT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77684,36 +66121,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO6statusyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO6statusyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "packetType", - "printedName": "packetType", + "name": "MSG_HEATING_SETPOINT_R", + "printedName": "MSG_HEATING_SETPOINT_R", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77721,36 +66158,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10packetTypeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10packetTypeyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "timestampType", - "printedName": "timestampType", + "name": "MSG_HEATING_SETPOINT_L", + "printedName": "MSG_HEATING_SETPOINT_L", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77758,36 +66195,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO13timestampTypeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO13timestampTypeyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "originalTimestamp", - "printedName": "originalTimestamp", + "name": "MSG_GET_HEAT_TIMER", + "printedName": "MSG_GET_HEAT_TIMER", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77795,36 +66232,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO17originalTimestampyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO17originalTimestampyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "packetsNumber", - "printedName": "packetsNumber", + "name": "MSG_HEATING_DEBUG_R", + "printedName": "MSG_HEATING_DEBUG_R", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77832,36 +66269,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO13packetsNumberyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO13packetsNumberyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", + "name": "MSG_HEATING_DEBUG_L", + "printedName": "MSG_HEATING_DEBUG_L", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77869,94 +66306,58 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9fwVersionyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9fwVersionyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "retryCount", - "printedName": "retryCount", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId?", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10retryCountyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10retryCountyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO2eeoiySbAE_AEtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -77967,140 +66368,156 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RunningMessageId", + "printedName": "RunningMessageId", + "children": [ { "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", + "name": "UNKNOWN", + "printedName": "UNKNOWN", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId.Type) -> ZTCoreKit.ZTNotifyData.RunningMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", "name": "init", - "printedName": "init(stringValue:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys?", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId?", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueAESgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueAESgSS_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "intValue", - "printedName": "intValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -78111,70 +66528,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(intValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys?", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueAESgSi_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueAESgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -78192,311 +66566,59 @@ }, { "kind": "Conformance", - "name": "CodingKey", - "printedName": "CodingKey", - "usr": "s:s9CodingKeyP", - "mangledName": "$ss9CodingKeyP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4dataAC10Foundation0D0V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4dataAC10Foundation0D0V_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:activityId:fwversion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4data10activityId9fwversionAC10Foundation0D0V_S2SSgtcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4data10activityId9fwversionAC10Foundation0D0V_S2SSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Required", - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", - "children": [ - { - "kind": "Var", - "name": "new", - "printedName": "new", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO3newyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO3newyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sent", - "printedName": "sent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO4sentyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO4sentyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sending", - "printedName": "sending", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO7sendingyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO7sendingyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CyclingMessageId", + "printedName": "CyclingMessageId", + "children": [ { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "MSG_CADENCE", + "printedName": "MSG_CADENCE", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId.Type) -> ZTCoreKit.ZTNotifyData.CyclingMessageId", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" } ] } @@ -78504,8 +66626,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO5erroryA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO5erroryA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", "moduleName": "ZTCoreKit" }, { @@ -78516,27 +66638,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.Status?", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValueAESgs4Int8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValueAESgs4Int8V_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -78548,14 +66670,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -78566,14 +66688,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -78582,15 +66704,11 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], "isFromExtension": true, - "enumRawTypeName": "Int8", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -78618,63 +66736,49 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, { "kind": "TypeDecl", - "name": "TimestampType", - "printedName": "TimestampType", + "name": "SafetyMessageId", + "printedName": "SafetyMessageId", "children": [ { "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "name": "MSG_CALIBRATION_SAFETY", + "printedName": "MSG_CALIBRATION_SAFETY", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } ] } @@ -78682,36 +66786,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO7unknownyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "start", - "printedName": "start", + "name": "MSG_ALGO_RT_EVENT", + "printedName": "MSG_ALGO_RT_EVENT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } ] } @@ -78719,147 +66823,159 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5startyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5startyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "stop", - "printedName": "stop", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId?", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4stopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4stopyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "pause", - "printedName": "pause", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5pauseyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5pauseyA2EmF", - "moduleName": "ZTCoreKit" + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "resume", - "printedName": "resume", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6resumeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6resumeyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GenericMessageId", + "printedName": "GenericMessageId", + "children": [ { "kind": "Var", - "name": "reboot", - "printedName": "reboot", + "name": "MSG_ALGO_RT_EVENT", + "printedName": "MSG_ALGO_RT_EVENT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId.Type) -> ZTCoreKit.ZTNotifyData.GenericMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" } ] } @@ -78867,8 +66983,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6rebootyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6rebootyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", "moduleName": "ZTCoreKit" }, { @@ -78884,48 +67000,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -78944,8 +67020,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -78959,13 +67035,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType?", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId?", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" } ], "usr": "s:Sq" @@ -78978,8 +67054,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -78997,8 +67073,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -79015,8 +67091,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -79025,11 +67101,10 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], "isFromExtension": true, @@ -79070,1367 +67145,1761 @@ ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] - }, + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDeviceActualState", + "printedName": "ZTDeviceActualState", + "children": [ { - "kind": "TypeDecl", - "name": "BmTimestampType", - "printedName": "BmTimestampType", + "kind": "Var", + "name": "activityNone", + "printedName": "activityNone", "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO7unknownyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityStarting", + "printedName": "activityStarting", + "children": [ { - "kind": "Var", - "name": "shoeWearOn", - "printedName": "shoeWearOn", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO10shoeWearOnyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO10shoeWearOnyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "eraseMemory", + "printedName": "eraseMemory", + "children": [ { - "kind": "Var", - "name": "shoeWearOff", - "printedName": "shoeWearOff", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11shoeWearOffyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11shoeWearOffyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityRunning", + "printedName": "activityRunning", + "children": [ { - "kind": "Var", - "name": "walkingStart", - "printedName": "walkingStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12walkingStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12walkingStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityPaused", + "printedName": "activityPaused", + "children": [ { - "kind": "Var", - "name": "walkingStop", - "printedName": "walkingStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11walkingStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11walkingStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityStopping", + "printedName": "activityStopping", + "children": [ { - "kind": "Var", - "name": "runningStart", - "printedName": "runningStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12runningStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12runningStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityPendData", + "printedName": "activityPendData", + "children": [ { - "kind": "Var", - "name": "runningStop", - "printedName": "runningStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11runningStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11runningStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activitySendData", + "printedName": "activitySendData", + "children": [ { - "kind": "Var", - "name": "cyclingStart", - "printedName": "cyclingStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12cyclingStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12cyclingStartyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceActualState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "cyclingStop", - "printedName": "cyclingStop", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoState", + "printedName": "ZTAlgoState", + "children": [ + { + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11cyclingStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11cyclingStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walking", + "printedName": "walking", + "children": [ { - "kind": "Var", - "name": "transportStart", - "printedName": "transportStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO14transportStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO14transportStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pedaling", + "printedName": "pedaling", + "children": [ { - "kind": "Var", - "name": "transportStop", - "printedName": "transportStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "jump", + "printedName": "jump", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO13transportStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO13transportStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsUp", + "printedName": "stairsUp", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsDown", + "printedName": "stairsDown", + "children": [ { - "kind": "Var", - "name": "name", - "printedName": "name", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "standing", + "printedName": "standing", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType?", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "sitting", + "printedName": "sitting", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "kneeling", + "printedName": "kneeling", + "children": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeDecl", - "name": "PacketType", - "printedName": "PacketType", + "kind": "Var", + "name": "tiptoe", + "printedName": "tiptoe", "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO7unknownyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "vibration", + "printedName": "vibration", + "children": [ { - "kind": "Var", - "name": "quantification", - "printedName": "quantification", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14quantificationyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14quantificationyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "slip", + "printedName": "slip", + "children": [ { - "kind": "Var", - "name": "walkAnalysis", - "printedName": "walkAnalysis", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO12walkAnalysisyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO12walkAnalysisyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "incident", + "printedName": "incident", + "children": [ { - "kind": "Var", - "name": "runAnalysis", - "printedName": "runAnalysis", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11runAnalysisyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11runAnalysisyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "freewheel", + "printedName": "freewheel", + "children": [ { - "kind": "Var", - "name": "stairs", - "printedName": "stairs", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO6stairsyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO6stairsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" }, { - "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO7cyclingyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO7cyclingyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit11ZTAlgoStateO", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDfuDelegate", + "printedName": "ZTDfuDelegate", + "children": [ + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(firmwareDownloaded:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "jump", - "printedName": "jump", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO4jumpyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO4jumpyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(didFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "safety", - "printedName": "safety", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(didFail:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO6safetyyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO6safetyyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(progress:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "staticActivity", - "printedName": "staticActivity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14staticActivityyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14staticActivityyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(leftDidFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "debug", - "printedName": "debug", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO5debugyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO5debugyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(rightDidFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "debugTelemetry", - "printedName": "debugTelemetry", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14debugTelemetryyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14debugTelemetryyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageActivity", + "printedName": "ZTMessageActivity", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" }, { - "kind": "Var", - "name": "debugProba", - "printedName": "debugProba", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO10debugProbayA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO10debugProbayA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isRight", + "printedName": "isRight", + "children": [ { - "kind": "Var", - "name": "bmTimestampPacket", - "printedName": "bmTimestampPacket", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO011bmTimestampE0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO011bmTimestampE0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLeft", + "printedName": "isLeft", + "children": [ { - "kind": "Var", - "name": "fwTimestampPacket", - "printedName": "fwTimestampPacket", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO011fwTimestampE0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO011fwTimestampE0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selectedMode", + "printedName": "selectedMode", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeInterval", + "printedName": "timeInterval", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "lastSegmentId", - "printedName": "lastSegmentId(activityId:)", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, { "kind": "TypeNominal", "name": "String", @@ -80438,255 +68907,576 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13lastSegmentId08activityG0SiSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13lastSegmentId08activityG0SiSS_tFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "segmentsCount", - "printedName": "segmentsCount(activityId:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13segmentsCount10activityIdSiSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13segmentsCount10activityIdSiSS_tFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "loadUnsent", - "printedName": "loadUnsent(activityId:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadUnsent10activityIdSayACGSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadUnsent10activityIdSayACGSS_tFZ", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTMessageActivityV", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:)", + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityIdSayACGSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityIdSayACGSS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:startId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId05startH0SayACGSS_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId05startH0SayACGSS_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllPackets", - "printedName": "loadAllPackets(activityId:startId:lastId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14loadAllPackets10activityId05startI004lastI0SayACGSS_s6UInt16VSgAKtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14loadAllPackets10activityId05startI004lastI0SayACGSS_s6UInt16VSgAKtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllIds", - "printedName": "loadAllIds(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.Int]", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -80695,56 +69485,59 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadAllIds10activityId05startI003endI0SaySiGSS_s6UInt16VAJSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadAllIds10activityId05startI003endI0SaySiGSS_s6UInt16VAJSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "loadAllPacketsIds", - "printedName": "loadAllPacketsIds(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -80753,470 +69546,393 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17loadAllPacketsIds10activityId05startJ003endJ0Says6UInt16VGSS_A2ISgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17loadAllPacketsIds10activityId05startJ003endJ0Says6UInt16VGSS_A2ISgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "loadPrevious", - "printedName": "loadPrevious(activityId:chunkId:originalTimestamp:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12loadPrevious10activityId05chunkH017originalTimestampACSgSSSg_s6UInt16Vs5Int64VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12loadPrevious10activityId05chunkH017originalTimestampACSgSSSg_s6UInt16Vs5Int64VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadPacket", - "printedName": "loadPacket(activityId:id:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadPacket10activityId2idACSgSSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadPacket10activityId2idACSgSSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadLastFwVersionEvent", - "printedName": "loadLastFwVersionEvent(activityId:chunkId:startId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC22loadLastFwVersionEvent10activityId05chunkK005startK0ACSgSSSg_s6UInt16VAKSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC22loadLastFwVersionEvent10activityId05chunkK005startK0ACSgSSSg_s6UInt16VAKSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllChunks", - "printedName": "loadAllChunks(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTSegmentData>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:lastChunkId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId09lastChunkH0SayACGSS_s6UInt16VSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId09lastChunkH0SayACGSS_s6UInt16VSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:firstChunkId:lastChunkId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId010firstChunkH004lastjH0SayACGSS_s6UInt16VSgAKtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId010firstChunkH004lastjH0SayACGSS_s6UInt16VSgAKtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "clear", - "printedName": "clear(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC5clear10activityIdySSSg_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC5clear10activityIdySSSg_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "getMissedChunk", - "printedName": "getMissedChunk(activity:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" - } - ], - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14getMissedChunk8activitys6UInt16VSgAA10ZTActivityCSg_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14getMissedChunk8activitys6UInt16VSgAA10ZTActivityCSg_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "getMaxMissedChunk", - "printedName": "getMaxMissedChunk(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81225,50 +69941,59 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17getMaxMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17getMaxMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "getMissedPackets", - "printedName": "getMissedPackets(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt16]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81277,149 +70002,193 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC16getMissedPackets10activityId05startI003endI0Says6UInt16VGSgSS_A2ISgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC16getMissedPackets10activityId05startI003endI0Says6UInt16VGSgSS_A2ISgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "getMinMissedChunk", - "printedName": "getMinMissedChunk(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17getMinMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17getMinMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "getMinMissedPacketId", - "printedName": "getMinMissedPacketId(activityId:startId:lastId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC20getMinMissedPacketId08activityI005startI004lastI0s6UInt16VSgSS_AiJtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC20getMinMissedPacketId08activityI005startI004lastI0s6UInt16VSgSS_AiJtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "updateSegmentsTimestamp", - "printedName": "updateSegmentsTimestamp(activityId:startId:anchorTime:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81428,77 +70197,67 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC23updateSegmentsTimestamp10activityId05startI010anchorTimeySS_s6UInt16Vs5Int64VSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC23updateSegmentsTimestamp10activityId05startI010anchorTimeySS_s6UInt16Vs5Int64VSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "checkMissedChunks", - "printedName": "checkMissedChunks(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17checkMissedChunks10activityIdSbSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17checkMissedChunks10activityIdSbSS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Function", - "name": "hasMissedChunks", - "printedName": "hasMissedChunks(activityId:startIndex:endIndex:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81507,796 +70266,944 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15hasMissedChunks10activityId10startIndex03endK0SbSS_s6UInt16VSgAJtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15hasMissedChunks10activityId10startIndex03endK0SbSS_s6UInt16VSgAJtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "checkPacketToRemove", - "printedName": "checkPacketToRemove(activityId:packetId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0.Object]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC19checkPacketToRemove10activityId06packetJ0ySSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC19checkPacketToRemove10activityId06packetJ0ySSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "hasPreviousChunk", - "printedName": "hasPreviousChunk(activityId:currentIndex:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC16hasPreviousChunk10activityId12currentIndexSbSS_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC16hasPreviousChunk10activityId12currentIndexSbSS_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "isChunkSaved", - "printedName": "isChunkSaved(activityId:chunkId:startId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0.Object]]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12isChunkSaved10activityId05chunkI005startI0SbSSSg_s6UInt16VAJSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12isChunkSaved10activityId05chunkI005startI0SbSSSg_s6UInt16VAJSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "isSaved", - "printedName": "isSaved(activityId:chunkId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7isSaved10activityId05chunkH005startH003endH0SbSSSg_s6UInt16VAKSgALtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7isSaved10activityId05chunkH005startH003endH0SbSSSg_s6UInt16VAKSgALtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sa" }, { - "kind": "Function", - "name": "isChunkEmpty", - "printedName": "isChunkEmpty(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12isChunkEmpty10activityId05chunkI0SbSSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12isChunkEmpty10activityId05chunkI0SbSSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sa" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "save", - "printedName": "save()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4saveyyF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4saveyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "saveWithResult", - "printedName": "saveWithResult(_:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14saveWithResultyS2bF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14saveWithResultyS2bF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "forceSegmentsUpload", - "printedName": "forceSegmentsUpload(activityId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC19forceSegmentsUpload10activityIdySS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC19forceSegmentsUpload10activityIdySS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "updateSegment", - "printedName": "updateSegment(_:segment:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13updateSegment_7segmentySSSg_ACtF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13updateSegment_7segmentySSSg_ACtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTSegmentDataC", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC", + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" - ] + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTActivitySummaryStatus", + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", "children": [ { - "kind": "Var", - "name": "started", - "printedName": "started", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0.Object]]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "complete", - "printedName": "complete", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0.Object]]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "processing", - "printedName": "processing", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "errored", - "printedName": "errored", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:Sh" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0.Object>?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sh" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO", + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0.Object>?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sh" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTActivitySummary", - "printedName": "ZTActivitySummary", + "name": "ZTUserShoe", + "printedName": "ZTUserShoe", "children": [ { "kind": "Var", @@ -82305,14 +71212,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82329,14 +71244,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82353,14 +71276,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82377,8 +71308,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82387,19 +71318,27 @@ }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82415,14 +71354,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82439,14 +71386,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82463,8 +71418,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82473,19 +71428,40 @@ }, { "kind": "Var", - "name": "activityIdentifier", - "printedName": "activityIdentifier", + "name": "attributes", + "printedName": "attributes", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82501,14 +71477,35 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82525,14 +71522,35 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82549,8 +71567,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82559,27 +71577,27 @@ }, { "kind": "Var", - "name": "start", - "printedName": "start", + "name": "firmware", + "printedName": "firmware", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82596,21 +71614,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82628,21 +71646,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82659,8 +71677,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82669,8 +71687,8 @@ }, { "kind": "Var", - "name": "end", - "printedName": "end", + "name": "organizationId", + "printedName": "organizationId", "children": [ { "kind": "TypeNominal", @@ -82688,8 +71706,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82719,8 +71737,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82751,8 +71769,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82769,8 +71787,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82779,27 +71797,27 @@ }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "createdAt", + "printedName": "createdAt", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82816,21 +71834,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82848,21 +71866,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82879,8 +71897,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82889,27 +71907,27 @@ }, { "kind": "Var", - "name": "tz", - "printedName": "tz", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82926,21 +71944,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82958,21 +71976,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82989,8 +72007,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82998,183 +72016,409 @@ ] }, { - "kind": "Var", - "name": "startDate", - "printedName": "startDate", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTUserShoe?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTUserShoe", + "printedName": "ZTCoreKit.ZTUserShoe", + "usr": "s:9ZTCoreKit10ZTUserShoeC" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Firmware", + "printedName": "Firmware", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "arch", + "printedName": "arch", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "endDate", - "printedName": "endDate", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", @@ -83190,212 +72434,188 @@ "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummary?", - "children": [ + }, { "kind": "TypeNominal", - "name": "ZTActivitySummary", - "printedName": "ZTCoreKit.ZTActivitySummary", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC", "moduleName": "ZTCoreKit", "declAttributes": [ - "Required", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] } ], "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC", + "usr": "s:9ZTCoreKit10ZTUserShoeC", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" @@ -83427,31 +72647,51 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "ZTDateFormatterTransform", - "printedName": "ZTDateFormatterTransform", + "name": "ZTButtonlessDfuCharacteristic", + "printedName": "ZTButtonlessDfuCharacteristic", "children": [ { "kind": "Var", - "name": "dateFormatter", - "printedName": "dateFormatter", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "HasStorage", + "HasInitialValue", "Final", - "AccessControl" + "HasStorage", + "AccessControl", + "RawDocComment" ], "isLet": true, "hasStorage": true, @@ -83463,15 +72703,16 @@ "children": [ { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, "declAttributes": [ "Final" @@ -83481,184 +72722,138 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(dateFormatter:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "ZTDateFormatterTransform", - "printedName": "ZTCoreKit.ZTDateFormatterTransform", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC" - }, - { - "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTButtonlessDfuCharacteristic", + "printedName": "ZTCoreKit.ZTButtonlessDfuCharacteristic", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "isOpen": true, + "overriding": true, "declAttributes": [ - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "isOpen": true, + "overriding": true, "declAttributes": [ - "AccessControl" + "AccessControl", + "Override", + "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" ] }, { @@ -83666,23 +72861,6 @@ "name": "CoreBluetooth", "printedName": "CoreBluetooth", "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -83698,401 +72876,157 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTBleManager", - "printedName": "ZTBleManager", + "name": "ZTSamplingMode", + "printedName": "ZTSamplingMode", "children": [ { "kind": "Var", - "name": "advertisingServices", - "printedName": "advertisingServices", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } ] }, { "kind": "Var", - "name": "managerState", - "printedName": "managerState", + "name": "run", + "printedName": "run", "children": [ { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" }, { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "instance", - "printedName": "instance", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvpZ", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO3runyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO3runyA2CmF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvgZ", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } ] }, { "kind": "Var", - "name": "centralManager", - "printedName": "centralManager", + "name": "walk", + "printedName": "walk", "children": [ { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "ZTCBCentralManagerProtocol", - "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + }, { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCBCentralManagerProtocol", - "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddress", - "printedName": "macAddress", + "name": "parameters", + "printedName": "parameters", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -84102,62 +73036,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", + "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "deviceInfo", - "printedName": "deviceInfo", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "ZTCoreKit.ZTSamplingMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } ], - "hasStorage": true, + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84166,333 +73115,399 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTSamplingModeO", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTEnvironment", + "printedName": "ZTEnvironment", + "children": [ + { + "kind": "Var", + "name": "dev", + "printedName": "dev", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO3devyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO3devyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "serviceTypes", - "printedName": "serviceTypes", + "name": "staging", + "printedName": "staging", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ] } - ], - "usr": "s:SD" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "production", + "printedName": "production", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:SD" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "product", - "printedName": "product", + "name": "zcdev", + "printedName": "zcdev", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zcstaging", + "printedName": "zcstaging", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zcproduction", + "printedName": "zcproduction", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "connectedDevice", - "printedName": "connectedDevice", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivp", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84501,188 +73516,199 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivg", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "foundPeripherals", - "printedName": "foundPeripherals", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "[CoreBluetooth.CBPeripheral]?", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTEnvironmentO", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTModuleSide", + "printedName": "ZTModuleSide", + "children": [ + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTModuleSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTModuleSideO4leftyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO4leftyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "right", + "printedName": "right", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "[CoreBluetooth.CBPeripheral]?", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTModuleSide.Type", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "usr": "s:Sa" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTModuleSideO5rightyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO5rightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "scanning", - "printedName": "scanning", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTModuleSide?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "isDfuMode", - "printedName": "isDfuMode", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84691,1174 +73717,1126 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTModuleSideO", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "onBluetoothStateChange", - "printedName": "onBluetoothStateChange", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "decodeData", + "printedName": "decodeData(_:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", + "mangledName": "$s9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encodeData", + "printedName": "encodeData(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", + "mangledName": "$s9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUError", + "printedName": "DFUError", + "children": [ + { + "kind": "Var", + "name": "remoteLegacyDFUSuccess", + "printedName": "remoteLegacyDFUSuccess", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteLegacyDFUSuccessyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { "kind": "Var", - "name": "onDeviceStateChange", - "printedName": "onDeviceStateChange", + "name": "remoteLegacyDFUInvalidState", + "printedName": "remoteLegacyDFUInvalidState", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUInvalidState", + "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUInvalidStateyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "remoteLegacyDFUNotSupported", + "printedName": "remoteLegacyDFUNotSupported", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUNotSupportedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 }, { "kind": "Var", - "name": "onDeviceDiscovered", - "printedName": "onDeviceDiscovered", + "name": "remoteLegacyDFUDataExceedsLimit", + "printedName": "remoteLegacyDFUDataExceedsLimit", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUDataExceedsLimit", + "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteLegacyDFUDataExceedsLimityA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "remoteLegacyDFUCrcError", + "printedName": "remoteLegacyDFUCrcError", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUCrcError", + "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteLegacyDFUCrcErroryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "onDeviceConnectionFailed", - "printedName": "onDeviceConnectionFailed", + "name": "remoteLegacyDFUOperationFailed", + "printedName": "remoteLegacyDFUOperationFailed", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteLegacyDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "remoteSecureDFUSuccess", + "printedName": "remoteSecureDFUSuccess", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteSecureDFUSuccessyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 }, { "kind": "Var", - "name": "onScanFinished", - "printedName": "onScanFinished", + "name": "remoteSecureDFUOpCodeNotSupported", + "printedName": "remoteSecureDFUOpCodeNotSupported", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteSecureDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "remoteSecureDFUInvalidParameter", + "printedName": "remoteSecureDFUInvalidParameter", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidParameter", + "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteSecureDFUInvalidParameteryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 }, { "kind": "Var", - "name": "onReconnectFailed", - "printedName": "onReconnectFailed", + "name": "remoteSecureDFUInsufficientResources", + "printedName": "remoteSecureDFUInsufficientResources", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInsufficientResources", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUInsufficientResourcesyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "remoteSecureDFUInvalidObject", + "printedName": "remoteSecureDFUInvalidObject", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidObject", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUInvalidObjectyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 }, { "kind": "Var", - "name": "onGeneralStateUpdated", - "printedName": "onGeneralStateUpdated", + "name": "remoteSecureDFUSignatureMismatch", + "printedName": "remoteSecureDFUSignatureMismatch", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSignatureMismatch", + "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteSecureDFUSignatureMismatchyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "remoteSecureDFUUnsupportedType", + "printedName": "remoteSecureDFUUnsupportedType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUUnsupportedType", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUUnsupportedTypeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 12 }, { "kind": "Var", - "name": "onCommandAck", - "printedName": "onCommandAck", + "name": "remoteSecureDFUOperationNotPermitted", + "printedName": "remoteSecureDFUOperationNotPermitted", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationNotPermitted", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUOperationNotPermittedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "remoteSecureDFUOperationFailed", + "printedName": "remoteSecureDFUOperationFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager(im)init", - "mangledName": "$s9ZTCoreKit12ZTBleManagerCACycfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" + "fixedbinaryorder": 14 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:willRestoreState:)", + "kind": "Var", + "name": "remoteSecureDFUExtendedError", + "printedName": "remoteSecureDFUExtendedError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:SD" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:willRestoreState:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16willRestoreStateySo09CBCentralD0C_SDySSypGtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUExtendedError", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUExtendedErroryA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:willRestoreState:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 15 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:connectionEventDidOccur:for:)", + "kind": "Var", + "name": "remoteExtendedErrorWrongCommandFormat", + "printedName": "remoteExtendedErrorWrongCommandFormat", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBConnectionEvent", - "printedName": "CoreBluetooth.CBConnectionEvent", - "usr": "c:@E@CBConnectionEvent" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:connectionEventDidOccur:forPeripheral:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23connectionEventDidOccur3forySo09CBCentralD0C_So012CBConnectionG0VSo12CBPeripheralCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongCommandFormat", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongCommandFormatyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:connectionEventDidOccur:forPeripheral:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 16 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didDiscover:advertisementData:rssi:)", + "kind": "Var", + "name": "remoteExtendedErrorUnknownCommand", + "printedName": "remoteExtendedErrorUnknownCommand", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDiscoverPeripheral:advertisementData:RSSI:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_11didDiscover17advertisementData4rssiySo09CBCentralD0C_So12CBPeripheralCSDySSypGSo8NSNumberCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorUnknownCommand", + "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteExtendedErrorUnknownCommandyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didDiscoverPeripheral:advertisementData:RSSI:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 17 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didFailToConnect:error:)", + "kind": "Var", + "name": "remoteExtendedErrorInitCommandInvalid", + "printedName": "remoteExtendedErrorInitCommandInvalid", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didFailToConnectPeripheral:error:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16didFailToConnect5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInitCommandInvalid", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorInitCommandInvalidyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didFailToConnectPeripheral:error:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 18 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didConnect:)", + "kind": "Var", + "name": "remoteExtendedErrorFwVersionFailure", + "printedName": "remoteExtendedErrorFwVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didConnectPeripheral:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_10didConnectySo09CBCentralD0C_So12CBPeripheralCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorFwVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorFwVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didConnectPeripheral:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 19 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didDisconnectPeripheral:error:)", + "kind": "Var", + "name": "remoteExtendedErrorHwVersionFailure", + "printedName": "remoteExtendedErrorHwVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDisconnectPeripheral:error:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23didDisconnectPeripheral5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHwVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorHwVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didDisconnectPeripheral:error:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 20 }, { - "kind": "Function", - "name": "centralManagerDidUpdateState", - "printedName": "centralManagerDidUpdateState(_:)", + "kind": "Var", + "name": "remoteExtendedErrorSdVersionFailure", + "printedName": "remoteExtendedErrorSdVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManagerDidUpdateState:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD14DidUpdateStateyySo09CBCentralD0CF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSdVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSdVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManagerDidUpdateState:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "fixedbinaryorder": 21 }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoCommand", - "printedName": "ZTAlgoCommand", - "children": [ { "kind": "Var", - "name": "getStatus", - "printedName": "getStatus", + "name": "remoteExtendedErrorSignatureMissing", + "printedName": "remoteExtendedErrorSignatureMissing", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85866,39 +74844,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSignatureMissing", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSignatureMissingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 22 }, { "kind": "Var", - "name": "startNewChunk", - "printedName": "startNewChunk", + "name": "remoteExtendedErrorWrongHashType", + "printedName": "remoteExtendedErrorWrongHashType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85906,39 +74886,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongHashType", + "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteExtendedErrorWrongHashTypeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 23 }, { "kind": "Var", - "name": "changeProductMode", - "printedName": "changeProductMode", + "name": "remoteExtendedErrorHashFailed", + "printedName": "remoteExtendedErrorHashFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85946,39 +74928,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHashFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO29remoteExtendedErrorHashFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 24 }, { "kind": "Var", - "name": "setPrecisionMode", - "printedName": "setPrecisionMode", + "name": "remoteExtendedErrorWrongSignatureType", + "printedName": "remoteExtendedErrorWrongSignatureType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85986,39 +74970,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongSignatureType", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongSignatureTypeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 25 }, { "kind": "Var", - "name": "setMinimumNumberOfStrides", - "printedName": "setMinimumNumberOfStrides", + "name": "remoteExtendedErrorVerificationFailed", + "printedName": "remoteExtendedErrorVerificationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86026,39 +75012,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorVerificationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorVerificationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 26 }, { "kind": "Var", - "name": "enableStreamingOfValues", - "printedName": "enableStreamingOfValues", + "name": "remoteExtendedErrorInsufficientSpace", + "printedName": "remoteExtendedErrorInsufficientSpace", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86066,39 +75054,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInsufficientSpace", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteExtendedErrorInsufficientSpaceyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 27 }, { "kind": "Var", - "name": "setDisconnectionDelay", - "printedName": "setDisconnectionDelay", + "name": "remoteExperimentalButtonlessDFUSuccess", + "printedName": "remoteExperimentalButtonlessDFUSuccess", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86106,39 +75096,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO38remoteExperimentalButtonlessDFUSuccessyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 28 }, { "kind": "Var", - "name": "setUserInfo", - "printedName": "setUserInfo", + "name": "remoteExperimentalButtonlessDFUOpCodeNotSupported", + "printedName": "remoteExperimentalButtonlessDFUOpCodeNotSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86146,39 +75138,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO49remoteExperimentalButtonlessDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 29 }, { "kind": "Var", - "name": "setDailyTimestamp", - "printedName": "setDailyTimestamp", + "name": "remoteExperimentalButtonlessDFUOperationFailed", + "printedName": "remoteExperimentalButtonlessDFUOperationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86186,39 +75180,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO46remoteExperimentalButtonlessDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 30 }, { "kind": "Var", - "name": "getPositionOfPods", - "printedName": "getPositionOfPods", + "name": "remoteButtonlessDFUSuccess", + "printedName": "remoteButtonlessDFUSuccess", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86226,39 +75222,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO26remoteButtonlessDFUSuccessyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 31 }, { "kind": "Var", - "name": "enableSpecificPacket", - "printedName": "enableSpecificPacket", + "name": "remoteButtonlessDFUOpCodeNotSupported", + "printedName": "remoteButtonlessDFUOpCodeNotSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86266,39 +75264,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteButtonlessDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 32 }, { "kind": "Var", - "name": "holdRealtimeStreaming", - "printedName": "holdRealtimeStreaming", + "name": "remoteButtonlessDFUOperationFailed", + "printedName": "remoteButtonlessDFUOperationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86306,39 +75306,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO34remoteButtonlessDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 33 }, { "kind": "Var", - "name": "getSingleTimeMetrics", - "printedName": "getSingleTimeMetrics", + "name": "remoteButtonlessDFUInvalidAdvertisementName", + "printedName": "remoteButtonlessDFUInvalidAdvertisementName", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86346,39 +75348,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUInvalidAdvertisementName", + "mangledName": "$s9ZTCoreKit8DFUErrorO43remoteButtonlessDFUInvalidAdvertisementNameyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 34 }, { "kind": "Var", - "name": "calibrateGravity", - "printedName": "calibrateGravity", + "name": "remoteButtonlessDFUBusy", + "printedName": "remoteButtonlessDFUBusy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86386,195 +75390,125 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUBusy", + "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteButtonlessDFUBusyyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 35 }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "remoteButtonlessDFUNotBonded", + "printedName": "remoteButtonlessDFUNotBonded", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUNotBonded", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteButtonlessDFUNotBondedyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 36 }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "fileNotSpecified", + "printedName": "fileNotSpecified", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoMode", - "printedName": "ZTAlgoMode", - "children": [ + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileNotSpecified", + "mangledName": "$s9ZTCoreKit8DFUErrorO16fileNotSpecifiedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 37 + }, { "kind": "Var", - "name": "monitoring", - "printedName": "monitoring", + "name": "fileInvalid", + "printedName": "fileInvalid", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86582,36 +75516,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileInvalid", + "mangledName": "$s9ZTCoreKit8DFUErrorO11fileInvalidyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 38 }, { "kind": "Var", - "name": "gaming", - "printedName": "gaming", + "name": "extendedInitPacketRequired", + "printedName": "extendedInitPacketRequired", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86619,621 +75558,419 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorExtendedInitPacketRequired", + "mangledName": "$s9ZTCoreKit8DFUErrorO26extendedInitPacketRequiredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 39 }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "initPacketRequired", + "printedName": "initPacketRequired", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInitPacketRequired", + "mangledName": "$s9ZTCoreKit8DFUErrorO18initPacketRequiredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 40 }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "failedToConnect", + "printedName": "failedToConnect", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFailedToConnect", + "mangledName": "$s9ZTCoreKit8DFUErrorO15failedToConnectyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 41 }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "deviceDisconnected", + "printedName": "deviceDisconnected", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTAlgoModeO", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceDisconnected", + "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceDisconnectedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 42 }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageActivity", - "printedName": "ZTMessageActivity", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "bluetoothDisabled", + "printedName": "bluetoothDisabled", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBluetoothDisabled", + "mangledName": "$s9ZTCoreKit8DFUErrorO17bluetoothDisabledyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" + "fixedbinaryorder": 43 }, { "kind": "Var", - "name": "isRight", - "printedName": "isRight", + "name": "serviceDiscoveryFailed", + "printedName": "serviceDiscoveryFailed", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isLeft", - "printedName": "isLeft", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorServiceDiscoveryFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO22serviceDiscoveryFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "fixedbinaryorder": 44 }, { "kind": "Var", - "name": "selectedMode", - "printedName": "selectedMode", + "name": "deviceNotSupported", + "printedName": "deviceNotSupported", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceNotSupportedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 45 }, { "kind": "Var", - "name": "timeInterval", - "printedName": "timeInterval", + "name": "readingVersionFailed", + "printedName": "readingVersionFailed", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReadingVersionFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO20readingVersionFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 46 + }, + { + "kind": "Var", + "name": "enablingControlPointFailed", + "printedName": "enablingControlPointFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorEnablingControlPointFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO26enablingControlPointFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 47 + }, + { + "kind": "Var", + "name": "writingCharacteristicFailed", + "printedName": "writingCharacteristicFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorWritingCharacteristicFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO27writingCharacteristicFailedyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } + "declAttributes": [ + "RawDocComment", + "ObjC" ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTMessageActivityV", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "fixedbinaryorder": 48 }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSamplingMode", - "printedName": "ZTSamplingMode", - "children": [ { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "receivingNotificationFailed", + "printedName": "receivingNotificationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87241,39 +75978,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReceivingNotificationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO27receivingNotificationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 49 }, { "kind": "Var", - "name": "run", - "printedName": "run", + "name": "unsupportedResponse", + "printedName": "unsupportedResponse", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87281,39 +76020,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO3runyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO3runyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorUnsupportedResponse", + "mangledName": "$s9ZTCoreKit8DFUErrorO19unsupportedResponseyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 50 }, { "kind": "Var", - "name": "walk", - "printedName": "walk", + "name": "bytesLost", + "printedName": "bytesLost", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87321,68 +76062,98 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBytesLost", + "mangledName": "$s9ZTCoreKit8DFUErrorO9bytesLostyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 51 }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "crcError", + "printedName": "crcError", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorCrcError", + "mangledName": "$s9ZTCoreKit8DFUErrorO8crcErroryA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 52 + }, + { + "kind": "Var", + "name": "invalidInternalState", + "printedName": "invalidInternalState", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInvalidInternalState", + "mangledName": "$s9ZTCoreKit8DFUErrorO20invalidInternalStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 53 }, { "kind": "Constructor", @@ -87392,27 +76163,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSamplingMode?", + "printedName": "ZTCoreKit.DFUError?", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -87424,14 +76195,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -87442,14 +76213,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -87458,14 +76229,15 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTSamplingModeO", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO", + "usr": "c:@M@ZTCoreKit@E@DFUError", + "mangledName": "$s9ZTCoreKit8DFUErrorO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "Int", "conformances": [ { "kind": "Conformance", @@ -87493,83 +76265,49 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "ZTDFUState", - "printedName": "ZTDFUState", + "name": "DFUState", + "printedName": "DFUState", "children": [ { "kind": "Var", - "name": "started", - "printedName": "started", + "name": "connecting", + "printedName": "connecting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87577,36 +76315,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO7startedyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO7startedyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateConnecting", + "mangledName": "$s9ZTCoreKit8DFUStateO10connectingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { "kind": "Var", - "name": "startedLeft", - "printedName": "startedLeft", + "name": "starting", + "printedName": "starting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87614,36 +76357,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateStarting", + "mangledName": "$s9ZTCoreKit8DFUStateO8startingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 }, { "kind": "Var", - "name": "completedLeft", - "printedName": "completedLeft", + "name": "enablingDfuMode", + "printedName": "enablingDfuMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87651,36 +76399,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateEnablingDfuMode", + "mangledName": "$s9ZTCoreKit8DFUStateO15enablingDfuModeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 }, { "kind": "Var", - "name": "startedRight", - "printedName": "startedRight", + "name": "uploading", + "printedName": "uploading", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87688,36 +76441,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateUploading", + "mangledName": "$s9ZTCoreKit8DFUStateO9uploadingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 }, { "kind": "Var", - "name": "completedRight", - "printedName": "completedRight", + "name": "validating", + "printedName": "validating", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87725,36 +76483,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateValidating", + "mangledName": "$s9ZTCoreKit8DFUStateO10validatingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "completed", - "printedName": "completed", + "name": "disconnecting", + "printedName": "disconnecting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87762,36 +76525,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO9completedyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO9completedyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateDisconnecting", + "mangledName": "$s9ZTCoreKit8DFUStateO13disconnectingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "completed", + "printedName": "completed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87799,49 +76567,56 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO5erroryA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateCompleted", + "mangledName": "$s9ZTCoreKit8DFUStateO9completedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "aborted", + "printedName": "aborted", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateAborted", + "mangledName": "$s9ZTCoreKit8DFUStateO7abortedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 }, { "kind": "Constructor", @@ -87851,13 +76626,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDFUState?", + "printedName": "ZTCoreKit.DFUState?", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ], "usr": "s:Sq" @@ -87870,8 +76645,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -87889,8 +76664,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivp", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -87907,21 +76682,64 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivg", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTDFUStateO", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO", + "usr": "c:@M@ZTCoreKit@E@DFUState", + "mangledName": "$s9ZTCoreKit8DFUStateO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "enumRawTypeName": "Int", @@ -87961,2280 +76779,2760 @@ ], "usr": "s:SY", "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "DFUProgressDelegate", + "printedName": "DFUProgressDelegate", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "dfuProgressDidChange", + "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate(im)dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avgnopQ0ySi_S2iS2dtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUProgressDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "TypeDecl", + "name": "DFUServiceDelegate", + "printedName": "DFUServiceDelegate", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "dfuStateDidChange", + "printedName": "dfuStateDidChange(to:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuStateDidChangeTo:", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP17dfuStateDidChange2toyAA8DFUStateO_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "dfuStateDidChangeTo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Function", + "name": "dfuError", + "printedName": "dfuError(_:didOccurWithMessage:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuError:didOccurWithMessage:", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTMessageChunkSendStatus", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Var", + "name": "errorOutOfRange", + "printedName": "errorOutOfRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorSendFailed", + "printedName": "errorSendFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorUnexpected", + "printedName": "errorUnexpected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorNotFound", + "printedName": "errorNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", - "children": [ + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sa" + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Var", + "name": "bytes", + "printedName": "bytes", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[τ_0_0.Object]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Var", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", + "kind": "Var", + "name": "chunkId", + "printedName": "chunkId", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "Optional", + "printedName": "Swift.UInt16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt16?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt16?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Struct", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "TypeDecl", + "name": "ZTTransformOf", + "printedName": "ZTTransformOf", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Constructor", + "name": "init", + "printedName": "init(fromJSON:toJSON:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "ZTTransformOf", + "printedName": "ZTCoreKit.ZTTransformOf<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:9ZTCoreKit13ZTTransformOfC" + }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1?) -> τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + } + ] }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?) -> τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTTransformOfC", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "ZTEnumTransform", + "printedName": "ZTEnumTransform", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "ZTEnumTransform", + "printedName": "ZTCoreKit.ZTEnumTransform<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit15ZTEnumTransformC" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit15ZTEnumTransformCACyxGycfc", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformCACyxGycfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_0.RawValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.RawValue" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit15ZTEnumTransformC", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", "name": "DependentMember", - "printedName": "τ_0_0.Object" + "printedName": "τ_0_0.RawValue" } - ], - "usr": "s:Sa" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTISO8601DateTransform", + "printedName": "ZTISO8601DateTransform", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" + "name": "ZTISO8601DateTransform", + "printedName": "ZTCoreKit.ZTISO8601DateTransform", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" } ], - "usr": "s:SD" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTISO8601DateTransform", + "printedName": "ZTCoreKit.ZTISO8601DateTransform", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "superclassNames": [ + "ZTCoreKit.ZTDateFormatterTransform" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0.Object]]?", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDFUState", + "printedName": "ZTDFUState", + "children": [ + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:SD" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO7startedyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO7startedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "startedLeft", + "printedName": "startedLeft", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0.Object]]?", + "kind": "Var", + "name": "completedLeft", + "printedName": "completedLeft", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "startedRight", + "printedName": "startedRight", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "completedRight", + "printedName": "completedRight", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "completed", + "printedName": "completed", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO9completedyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO9completedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "error", + "printedName": "error", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } ], - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO5erroryA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDFUState?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } ], - "usr": "s:Sa" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTDFUStateO", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + "enumRawTypeName": "Int", + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:SY", + "mangledName": "$sSY" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTFirmwareRevision", + "printedName": "ZTFirmwareRevision", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Var", + "name": "fwSystemVersion", + "printedName": "fwSystemVersion", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Var", + "name": "productType", + "printedName": "productType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "bmVersion", + "printedName": "bmVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0.Object]]?", + "kind": "Var", + "name": "date", + "printedName": "date", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0.Object]]?", + "kind": "Var", + "name": "versions", + "printedName": "versions", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFwBmVersion?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "ZTFwBmVersion", + "printedName": "ZTCoreKit.ZTFwBmVersion", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFwBmVersion?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTFwBmVersion", + "printedName": "ZTCoreKit.ZTFwBmVersion", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(code:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sh" + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "kind": "Function", + "name": ">=", + "printedName": ">=(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } ], - "usr": "s:Sh" + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "fwSystemMajorVersion", + "printedName": "fwSystemMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0.Object>?", + "kind": "Var", + "name": "fwSystemMinorVersion", + "printedName": "fwSystemMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "fwSystemBuildVersion", + "printedName": "fwSystemBuildVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0.Object>?", + "kind": "Var", + "name": "bmMajorVersion", + "printedName": "bmMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "bmMinorVersion", + "printedName": "bmMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } ] }, { "kind": "TypeDecl", - "name": "ZTMediaFile", - "printedName": "ZTMediaFile", + "name": "ZTFwBmVersion", + "printedName": "ZTFwBmVersion", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "fwSystemMajorVersion", + "printedName": "fwSystemMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -90245,22 +79543,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90277,22 +79567,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90309,8 +79591,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90319,30 +79601,21 @@ }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "fwSystemMinorVersion", + "printedName": "fwSystemMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90355,22 +79628,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90387,22 +79652,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90419,8 +79676,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90429,30 +79686,21 @@ }, { "kind": "Var", - "name": "mimeType", - "printedName": "mimeType", + "name": "fwSystemBuildVersion", + "printedName": "fwSystemBuildVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90465,22 +79713,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90497,22 +79737,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90529,8 +79761,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90539,30 +79771,21 @@ }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "bmMajorVersion", + "printedName": "bmMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90575,22 +79798,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90607,22 +79822,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90639,8 +79846,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90649,30 +79856,21 @@ }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "bmMinorVersion", + "printedName": "bmMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90685,22 +79883,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90717,22 +79907,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90749,44 +79931,120 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] - }, + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCoreDataStack", + "printedName": "ZTCoreDataStack", + "children": [ { "kind": "Var", - "name": "mfableId", - "printedName": "mfableId", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCoreDataStack", + "printedName": "ZTCoreKit.ZTCoreDataStack", + "usr": "s:9ZTCoreKit0A9DataStackC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A9DataStackC6sharedACvpZ", + "mangledName": "$s9ZTCoreKit0A9DataStackC6sharedACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCoreDataStack", + "printedName": "ZTCoreKit.ZTCoreDataStack", + "usr": "s:9ZTCoreKit0A9DataStackC" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A9DataStackC6sharedACvgZ", + "mangledName": "$s9ZTCoreKit0A9DataStackC6sharedACvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvp", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Lazy", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -90795,22 +80053,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvg", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90827,22 +80077,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvs", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90859,44 +80101,143 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvM", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "oneTimeBackgroundContext", + "printedName": "oneTimeBackgroundContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC24oneTimeBackgroundContextSo015NSManagedObjectH0CyF", + "mangledName": "$s9ZTCoreKit0A9DataStackC24oneTimeBackgroundContextSo015NSManagedObjectH0CyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveOneTimeBackgroundContext", + "printedName": "saveOneTimeBackgroundContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC28saveOneTimeBackgroundContextyySo015NSManagedObjectI0CKF", + "mangledName": "$s9ZTCoreKit0A9DataStackC28saveOneTimeBackgroundContextyySo015NSManagedObjectI0CKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveContext", + "printedName": "saveContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC11saveContextyyKF", + "mangledName": "$s9ZTCoreKit0A9DataStackC11saveContextyyKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit0A9DataStackC", + "mangledName": "$s9ZTCoreKit0A9DataStackC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "children": [ { "kind": "Var", - "name": "mfableType", - "printedName": "mfableType", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -90906,23 +80247,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -90938,23 +80282,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -90969,42 +80316,89 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMediaFile", + "printedName": "ZTMediaFile", + "children": [ { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -91016,21 +80410,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -91048,21 +80442,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -91079,8 +80473,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -91089,27 +80483,27 @@ }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -91126,21 +80520,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -91158,21 +80552,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -91189,234 +80583,41 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMediaFile?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit11ZTMediaFileC", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapContext", - "printedName": "ZTMapContext", - "declKind": "Protocol", - "usr": "s:9ZTCoreKit12ZTMapContextP", - "mangledName": "$s9ZTCoreKit12ZTMapContextP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMap", - "printedName": "ZTMap", - "children": [ - { - "kind": "Var", - "name": "mappingType", - "printedName": "mappingType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "JSON", - "printedName": "JSON", + "name": "mimeType", + "printedName": "mimeType", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvp", - "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91428,113 +80629,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvg", - "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isKeyPresent", - "printedName": "isKeyPresent", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "currentValue", - "printedName": "currentValue", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91547,33 +80740,81 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "currentKey", - "printedName": "currentKey", + "name": "url", + "printedName": "url", "children": [ { "kind": "TypeNominal", @@ -91591,14 +80832,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91624,93 +80863,90 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "nestedKeyDelimiter", - "printedName": "nestedKeyDelimiter", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", - "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", - "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "context", - "printedName": "context", + "name": "mfableId", + "printedName": "mfableId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -91724,26 +80960,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -91759,26 +80992,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -91793,36 +81023,40 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shouldIncludeNilValues", - "printedName": "shouldIncludeNilValues", + "name": "mfableType", + "printedName": "mfableType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -91835,19 +81069,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -91862,19 +81101,24 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -91889,40 +81133,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "toObject", - "printedName": "toObject", + "name": "createdAt", + "printedName": "createdAt", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -91932,126 +81179,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(mappingType:JSON:toObject:context:shouldIncludeNilValues:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" }, { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapCyACSScip", - "mangledName": "$s9ZTCoreKit5ZTMapCyACSScip", + "declKind": "Var", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -92060,465 +81289,235 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapCyACSScig", - "mangledName": "$s9ZTCoreKit5ZTMapCyACSScig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:delimiter:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:delimiter:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMediaFile?", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:ignoreNil:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "ZTMap", "printedName": "ZTCoreKit.ZTMap", "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:delimiter:ignoreNil:)", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", + "declKind": "Func", + "usr": "s:9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit11ZTMediaFileC", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:ignoreNil:)", + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTPairedSolesCharacteristic", + "printedName": "ZTPairedSolesCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", + "declKind": "Var", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", - "AccessControl" + "HasStorage", + "AccessControl", + "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "declAttributes": [ "Final" ], @@ -92527,122 +81526,181 @@ ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:delimiter:ignoreNil:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", + "declKind": "Var", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPairedSolesCharacteristic", + "printedName": "ZTCoreKit.ZTPairedSolesCharacteristic", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], + "init_kind": "Designated" + }, { "kind": "Function", - "name": "value", - "printedName": "value()", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCodableTransform", + "printedName": "ZTCodableTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCodableTransform", + "printedName": "ZTCoreKit.ZTCodableTransform<τ_0_0>", "children": [ { "kind": "TypeNominal", @@ -92650,1656 +81708,1966 @@ "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit18ZTCodableTransformC" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5valuexSgylF", - "mangledName": "$s9ZTCoreKit5ZTMapC5valuexSgylF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTCodableTransformCACyxGycfc", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformCACyxGycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", + "usr": "s:9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTCodableTransformC", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "AssociatedType", + "name": "Object", + "printedName": "Object", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit15ZTTransformTypeP6ObjectQa", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP6ObjectQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "JSON", + "printedName": "JSON", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit15ZTTransformTypeP4JSONQa", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP4JSONQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", + "usr": "s:9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", "moduleName": "ZTCoreKit", "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "τ_0_0.JSON?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DependentMember", + "printedName": "τ_0_0.JSON" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNSDecimalNumberTransform", + "printedName": "ZTNSDecimalNumberTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "name": "ZTNSDecimalNumberTransform", + "printedName": "ZTCoreKit.ZTNSDecimalNumberTransform", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "Optional", + "printedName": "Foundation.NSDecimalNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.NSDecimalNumber?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" + } + ] }, { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "DFUUuidType", + "printedName": "DFUUuidType", + "children": [ + { + "kind": "Var", + "name": "legacyService", + "printedName": "legacyService", + "children": [ { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyServiceyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "legacyControlPoint", + "printedName": "legacyControlPoint", + "children": [ { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyControlPoint", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO18legacyControlPointyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "legacyPacket", + "printedName": "legacyPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyPacket", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12legacyPacketyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "legacyVersion", + "printedName": "legacyVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyVersion", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyVersionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "secureService", + "printedName": "secureService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureServiceyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 4 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "secureControl", + "printedName": "secureControl", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureControl", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureControlyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 5 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "securePacket", + "printedName": "securePacket", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecurePacket", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12securePacketyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 6 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessService", + "printedName": "buttonlessService", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO17buttonlessServiceyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 7 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessCharacteristic", + "printedName": "buttonlessCharacteristic", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessCharacteristic", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO24buttonlessCharacteristicyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 8 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessWithoutBondSharing", + "printedName": "buttonlessWithoutBondSharing", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithoutBondSharing", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO28buttonlessWithoutBondSharingyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 9 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessWithBondSharing", + "printedName": "buttonlessWithBondSharing", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithBondSharing", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO25buttonlessWithBondSharingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.DFUUuidType?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUUuid", + "printedName": "DFUUuid", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)uuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ "Final", + "HasStorage", + "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)uuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)type", + "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)type", + "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(withUUID:forType:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" }, { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)initWithUUID:forType:", + "mangledName": "$s9ZTCoreKit7DFUUuidC8withUUID7forTypeACSo6CBUUIDC_AA0cG0Otcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "objc_name": "initWithUUID:forType:", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)init", + "mangledName": "$s9ZTCoreKit7DFUUuidCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUUuidHelper", + "printedName": "DFUUuidHelper", + "children": [ + { + "kind": "Var", + "name": "legacyDFUService", + "printedName": "legacyDFUService", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUControlPoint", + "printedName": "legacyDFUControlPoint", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUPacket", + "printedName": "legacyDFUPacket", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUVersion", + "printedName": "legacyDFUVersion", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUVersion", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUVersion", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUService", + "printedName": "secureDFUService", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUControlPoint", + "printedName": "secureDFUControlPoint", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUPacket", + "printedName": "secureDFUPacket", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buttonlessExperimentalService", + "printedName": "buttonlessExperimentalService", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buttonlessExperimentalCharacteristic", + "printedName": "buttonlessExperimentalCharacteristic", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalCharacteristic", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalCharacteristic", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:using:)", + "kind": "Var", + "name": "buttonlessWithoutBonds", + "printedName": "buttonlessWithoutBonds", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithoutBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithoutBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", + "kind": "Var", + "name": "buttonlessWithBonds", + "printedName": "buttonlessWithBonds", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)init", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "overriding": true, + "objc_name": "init", "declAttributes": [ - "Final", + "Dynamic", + "ObjC", + "Override", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(customUuids:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[ZTCoreKit.DFUUuid]", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)initWithCustomUuids:", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC11customUuidsACSayAA0C0CG_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "objc_name": "initWithCustomUuids:", "declAttributes": [ - "Final", + "Convenience", + "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Convenience" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit5ZTMapC", - "mangledName": "$s9ZTCoreKit5ZTMapC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", + "ObjC", "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -94318,310 +83686,305 @@ }, { "kind": "Import", - "name": "CoreFoundation", - "printedName": "CoreFoundation", + "name": "os.log", + "printedName": "os.log", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTEntry", - "printedName": "ZTEntry", + "name": "ZTLogger", + "printedName": "ZTLogger", "children": [ { - "kind": "TypeDecl", - "name": "EntryType", - "printedName": "EntryType", + "kind": "Var", + "name": "instance", + "printedName": "instance", "children": [ { - "kind": "Var", - "name": "file", - "printedName": "file", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO4fileyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO4fileyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "kind": "TypeNominal", + "name": "ZTLogger", + "printedName": "ZTCoreKit.ZTLogger", + "usr": "s:9ZTCoreKit8ZTLoggerC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvpZ", + "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "directory", - "printedName": "directory", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTLogger", + "printedName": "ZTCoreKit.ZTLogger", + "usr": "s:9ZTCoreKit8ZTLoggerC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO9directoryyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO9directoryyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvgZ", + "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "ztDebugPrint", + "printedName": "ztDebugPrint(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "symlink", - "printedName": "symlink", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO7symlinkyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO7symlinkyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debug", + "printedName": "debug(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry.EntryType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueAESgSi_tcfc", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueAESgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "info", + "printedName": "info(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sa" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "Int", - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "path", - "printedName": "path(using:)", + "name": "fatal", + "printedName": "fatal(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" }, { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTEntryV4path5usingS2S10FoundationE8EncodingV_tF", - "mangledName": "$s9ZTCoreKit7ZTEntryV4path5usingS2S10FoundationE8EncodingV_tF", + "usr": "s:9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTLoggerC", + "mangledName": "$s9ZTCoreKit8ZTLoggerC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerLine", + "printedName": "ZTLoggerLine", + "children": [ { "kind": "Var", - "name": "path", - "printedName": "path", + "name": "notification", + "printedName": "notification", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV4pathSSvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV4pathSSvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94630,52 +83993,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV4pathSSvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV4pathSSvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "fileAttributes", - "printedName": "fileAttributes", + "name": "ble", + "printedName": "ble", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.FileAttributeKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "FileAttributeKey", - "printedName": "Foundation.FileAttributeKey", - "usr": "c:@T@NSFileAttributeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94684,52 +84041,44 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.FileAttributeKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "FileAttributeKey", - "printedName": "Foundation.FileAttributeKey", - "usr": "c:@T@NSFileAttributeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "checksum", - "printedName": "checksum", + "name": "date", + "printedName": "date", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV8checksums6UInt32Vvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV8checksums6UInt32Vvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94738,39 +84087,85 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV8checksums6UInt32Vvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV8checksums6UInt32Vvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "message", + "printedName": "message", "children": [ { "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94779,39 +84174,43 @@ "children": [ { "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "compressedSize", - "printedName": "compressedSize", + "name": "level", + "printedName": "level", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV14compressedSizeSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV14compressedSizeSivp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94820,39 +84219,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV14compressedSizeSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV14compressedSizeSivg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "uncompressedSize", - "printedName": "uncompressedSize", + "name": "category", + "printedName": "category", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV16uncompressedSizeSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV16uncompressedSizeSivp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94861,57 +84264,75 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV16uncompressedSizeSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV16uncompressedSizeSivg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTLoggerLine", + "printedName": "ZTCoreKit.ZTLoggerLine", + "usr": "s:9ZTCoreKit12ZTLoggerLineV" }, { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTEntryV2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit7ZTEntryV2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit7ZTEntryV", - "mangledName": "$s9ZTCoreKit7ZTEntryV", + "usr": "s:9ZTCoreKit12ZTLoggerLineV", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -94920,17 +84341,24 @@ "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -94939,456 +84367,540 @@ }, { "kind": "TypeDecl", - "name": "ZTMediaFileTemplate", - "printedName": "ZTMediaFileTemplate", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "DFUPeripheralSelectorDelegate", "children": [ { - "kind": "Var", - "name": "name", - "printedName": "name", + "kind": "Function", + "name": "select", + "printedName": "select(_:advertisementData:RSSI:hint:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : AnyObject]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)select:advertisementData:RSSI:hint:", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Function", + "name": "filterBy", + "printedName": "filterBy(hint:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)filterByHint:", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP8filterBy4hintSaySo6CBUUIDCGSgAG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "filterByHint:", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "ObjC", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTAlgoAcknowledgmentStatus", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "busy", + "printedName": "busy", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "invalidParam", + "printedName": "invalidParam", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "mimeType", - "printedName": "mimeType", + "name": "invalidState", + "printedName": "invalidState", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "fwResForbidden", + "printedName": "fwResForbidden", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] + } + ] + } ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "notSupported", + "printedName": "notSupported", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknownCommand", + "printedName": "unknownCommand", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "commandInProgress", + "printedName": "commandInProgress", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "noPeerResponse", + "printedName": "noPeerResponse", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "url", - "printedName": "url", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } ], - "hasStorage": true, + "declKind": "Var", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -95397,248 +84909,315 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityMode", + "printedName": "ZTActivityMode", + "children": [ + { + "kind": "Var", + "name": "safety", + "printedName": "safety", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "walking", + "printedName": "walking", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cycling", + "printedName": "cycling", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:fileName:mimeType:description:)", + "kind": "Var", + "name": "mobility", + "printedName": "mobility", "children": [ { - "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvp", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -95647,109 +85226,146 @@ "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvg", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Convenience", - "RawDocComment" - ], - "init_kind": "Convenience" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMediaFileTemplate?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Convenience", - "Required" - ], - "init_kind": "Convenience" + "implicit": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTActivityModeO", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true, + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -95758,126 +85374,226 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTPlisted", - "printedName": "ZTPlisted", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTActivitySummaryStatus", "children": [ { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "started", + "printedName": "started", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV3keySSvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3keySSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "complete", + "printedName": "complete", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV3keySSvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3keySSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "plist", - "printedName": "plist", + "name": "processing", + "printedName": "processing", "children": [ { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errored", + "printedName": "errored", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV12defaultValuexvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12defaultValuexvp", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -95886,86 +85602,97 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12defaultValuexvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12defaultValuexvg", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:plist:defaultValue:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTPlisted", - "printedName": "ZTCoreKit.ZTPlisted<τ_0_0>", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "usr": "s:9ZTCoreKit9ZTPlistedV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTPlistedV3key5plist12defaultValueACyxGSS_AA7ZTPlistCxtcfc", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3key5plist12defaultValueACyxGSS_AA7ZTPlistCxtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivitySummary", + "printedName": "ZTActivitySummary", + "children": [ { "kind": "Var", - "name": "wrappedValue", - "printedName": "wrappedValue", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -95974,16 +85701,16 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "accessorKind": "get" }, { @@ -95998,16 +85725,16 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvs", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "accessorKind": "set" }, { @@ -96022,66 +85749,29 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvM", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit9ZTPlistedV", - "mangledName": "$s9ZTCoreKit9ZTPlistedV", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "PropertyWrapper" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapError", - "printedName": "ZTMapError", - "children": [ + }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96097,22 +85787,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96129,22 +85811,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96161,8 +85835,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96171,26 +85845,19 @@ }, { "kind": "Var", - "name": "currentValue", - "printedName": "currentValue", + "name": "activityIdentifier", + "printedName": "activityIdentifier", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96206,21 +85873,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96237,21 +85897,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96268,8 +85921,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96278,8 +85931,8 @@ }, { "kind": "Var", - "name": "reason", - "printedName": "reason", + "name": "start", + "printedName": "start", "children": [ { "kind": "TypeNominal", @@ -96297,8 +85950,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96328,8 +85981,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96360,8 +86013,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96378,8 +86031,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96388,27 +86041,27 @@ }, { "kind": "Var", - "name": "file", - "printedName": "file", + "name": "end", + "printedName": "end", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96425,21 +86078,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96457,21 +86110,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96488,8 +86141,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96498,27 +86151,27 @@ }, { "kind": "Var", - "name": "function", - "printedName": "function", + "name": "duration", + "printedName": "duration", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96535,21 +86188,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96567,21 +86220,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96598,8 +86251,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96608,27 +86261,27 @@ }, { "kind": "Var", - "name": "line", - "printedName": "line", + "name": "tz", + "printedName": "tz", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96645,21 +86298,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96677,21 +86330,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96708,8 +86361,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96717,132 +86370,35 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:currentValue:reason:file:function:line:)", + "kind": "Var", + "name": "startDate", + "printedName": "startDate", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMapError", - "printedName": "ZTCoreKit.ZTMapError", - "usr": "s:9ZTCoreKit10ZTMapErrorV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.StaticString?", - "children": [ - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.StaticString?", - "children": [ - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -96851,533 +86407,108 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit10ZTMapErrorV", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "zlib", - "printedName": "zlib", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPeriod", - "printedName": "ZTPeriod", - "children": [ - { - "kind": "Var", - "name": "day", - "printedName": "day", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO3dayyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO3dayyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "week", - "printedName": "week", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO4weekyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO4weekyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "month", - "printedName": "month", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO5monthyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO5monthyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "year", - "printedName": "year", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO4yearyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO4yearyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTPeriod?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit8ZTPeriodO", - "mangledName": "$s9ZTCoreKit8ZTPeriodO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageGeneralState", - "printedName": "ZTMessageGeneralState", - "children": [ - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "byte1", - "printedName": "byte1", + "name": "endDate", + "printedName": "endDate", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -97387,111 +86518,107 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte2", - "printedName": "byte2", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "byte3", - "printedName": "byte3", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -97501,92 +86628,117 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(from:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummary?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummary", + "printedName": "ZTCoreKit.ZTActivitySummary", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "declAttributes": [ + "Required", + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", @@ -97595,36 +86747,95 @@ }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCBPeripheralManagerProtocol", + "printedName": "ZTCBPeripheralManagerProtocol", + "children": [ { "kind": "Var", - "name": "activityStartedRight", - "printedName": "activityStartedRight", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97633,76 +86844,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "activityStartedLeft", - "printedName": "activityStartedLeft", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvs", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvM", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "pairIsConnected", - "printedName": "pairIsConnected", + "name": "state", + "printedName": "state", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97711,24 +86951,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "memsHasError", - "printedName": "memsHasError", + "name": "isAdvertising", + "printedName": "isAdvertising", "children": [ { "kind": "TypeNominal", @@ -97738,10 +86981,10 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97756,135 +86999,313 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "firmwareDifferent", - "printedName": "firmwareDifferent", + "kind": "Function", + "name": "startAdvertising", + "printedName": "startAdvertising(_:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP16startAdvertisingyySDySSypGSgF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP16startAdvertisingyySDySSypGSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "actualState", - "printedName": "actualState", + "kind": "Function", + "name": "stopAdvertising", + "printedName": "stopAdvertising()", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP15stopAdvertisingyyF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP15stopAdvertisingyyF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDesiredConnectionLatency", + "printedName": "setDesiredConnectionLatency(_:for:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerConnectionLatency", + "printedName": "CoreBluetooth.CBPeripheralManagerConnectionLatency", + "usr": "c:@E@CBPeripheralManagerConnectionLatency" + }, + { + "kind": "TypeNominal", + "name": "CBCentral", + "printedName": "CoreBluetooth.CBCentral", + "usr": "c:objc(cs)CBCentral" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP27setDesiredConnectionLatency_3forySo012CBPeripheraldhI0V_So9CBCentralCtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP27setDesiredConnectionLatency_3forySo012CBPeripheraldhI0V_So9CBCentralCtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "previousState", - "printedName": "previousState", + "kind": "Function", + "name": "add", + "printedName": "add(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBMutableService", + "printedName": "CoreBluetooth.CBMutableService", + "usr": "c:objc(cs)CBMutableService" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP3addyySo16CBMutableServiceCF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP3addyySo16CBMutableServiceCF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBMutableService", + "printedName": "CoreBluetooth.CBMutableService", + "usr": "c:objc(cs)CBMutableService" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP6removeyySo16CBMutableServiceCF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP6removeyySo16CBMutableServiceCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeAllServices", + "printedName": "removeAllServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP17removeAllServicesyyF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP17removeAllServicesyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "respond", + "printedName": "respond(to:withResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBATTRequest", + "printedName": "CoreBluetooth.CBATTRequest", + "usr": "c:objc(cs)CBATTRequest" + }, + { + "kind": "TypeNominal", + "name": "Code", + "printedName": "CoreBluetooth.CBATTError.Code", + "usr": "c:@E@CBATTError" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP7respond2to10withResultySo12CBATTRequestC_So10CBATTErrorVtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP7respond2to10withResultySo12CBATTRequestC_So10CBATTErrorVtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateValue", + "printedName": "updateValue(_:for:onSubscribedCentrals:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBMutableCharacteristic", + "printedName": "CoreBluetooth.CBMutableCharacteristic", + "usr": "c:objc(cs)CBMutableCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBCentral]?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Array", + "printedName": "[CoreBluetooth.CBCentral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentral", + "printedName": "CoreBluetooth.CBCentral", + "usr": "c:objc(cs)CBCentral" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] - }, + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP11updateValue_3for20onSubscribedCentralsSb10Foundation4DataV_So23CBMutableCharacteristicCSaySo9CBCentralCGSgtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP11updateValue_3for20onSubscribedCentralsSb10Foundation4DataV_So23CBMutableCharacteristicCSaySo9CBCentralCGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPrimaryService", + "printedName": "ZTPrimaryService", + "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -97894,13 +87315,15 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "Final", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -97915,83 +87338,26 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "static": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUPeripheralSelector", - "printedName": "DFUPeripheralSelector", - "children": [ - { - "kind": "Function", - "name": "select", - "printedName": "select(_:advertisementData:RSSI:hint:)", + "kind": "Var", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : AnyObject]", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", @@ -98001,141 +87367,208 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)select:advertisementData:RSSI:hint:", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "objc_name": "select:advertisementData:RSSI:hint:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "filterBy", - "printedName": "filterBy(hint:)", - "children": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sa" + "usr": "s:SD" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)filterByHint:", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC8filterBy4hintSaySo6CBUUIDCGSgAG_tF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "objc_name": "filterByHint:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelector", - "printedName": "ZTCoreKit.DFUPeripheralSelector", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector" + "name": "ZTPrimaryService", + "printedName": "ZTCoreKit.ZTPrimaryService", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)init", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorCACycfc", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "Required" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ObjectiveC.NSObject" + "ZTCoreKit.ZTService" ], "conformances": [ { "kind": "Conformance", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP" + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, { "kind": "Conformance", @@ -98143,48 +87576,6 @@ "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -98307,14 +87698,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -98331,14 +87722,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -98355,14 +87746,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvs", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -98379,8 +87770,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16VvM", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -98394,14 +87785,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -98418,14 +87809,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -98442,14 +87833,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvs", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -98466,8 +87857,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16VvM", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -98481,14 +87872,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -98502,14 +87893,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -98565,1008 +87956,165 @@ "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "endTime", - "printedName": "endTime", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCodableTransform", - "printedName": "ZTCodableTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCodableTransform", - "printedName": "ZTCoreKit.ZTCodableTransform<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit18ZTCodableTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTCodableTransformCACyxGycfc", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformCACyxGycfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTCodableTransformC", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTURLTransform", - "printedName": "ZTURLTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(shouldEncodeURLString:allowedCharacterSet:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTURLTransform", - "printedName": "ZTCoreKit.ZTURLTransform", - "usr": "s:9ZTCoreKit14ZTURLTransformC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CharacterSet", - "printedName": "Foundation.CharacterSet", - "hasDefaultArg": true, - "usr": "s:10Foundation12CharacterSetV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit14ZTURLTransformC", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBleManagerState", - "printedName": "ZTBleManagerState", - "children": [ - { - "kind": "Var", - "name": "off", - "printedName": "off", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "on", - "printedName": "on", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "idle", - "printedName": "idle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "scanning", - "printedName": "scanning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "unauthorized", - "printedName": "unauthorized", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "resetting", - "printedName": "resetting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "name": "endTime", + "printedName": "endTime", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "init_kind": "Designated" }, { "kind": "Var", @@ -99581,11 +88129,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -99601,88 +88150,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" }, { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -99691,23 +88195,23 @@ }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO", + "declKind": "Struct", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -99716,17 +88220,17 @@ "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", @@ -99739,144 +88243,98 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTUserShoe", - "printedName": "ZTUserShoe", + "name": "ZTHexColorTransform", + "printedName": "ZTHexColorTransform", "children": [ { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Constructor", + "name": "init", + "printedName": "init(prefixToJSON:alphaToJSON:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTHexColorTransform", + "printedName": "ZTCoreKit.ZTHexColorTransform", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", @@ -99891,134 +88349,123 @@ } ], "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] - }, + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTReachability", + "printedName": "ZTReachability", + "children": [ { "kind": "Var", - "name": "attributes", - "printedName": "attributes", + "name": "currentAdapterMode", + "printedName": "currentAdapterMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100034,35 +88481,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100079,35 +88505,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100124,8 +88529,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100134,27 +88539,19 @@ }, { "kind": "Var", - "name": "firmware", - "printedName": "firmware", + "name": "currentConnectionStatus", + "printedName": "currentConnectionStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100170,22 +88567,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100202,22 +88591,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100234,8 +88615,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100244,27 +88625,39 @@ }, { "kind": "Var", - "name": "organizationId", - "printedName": "organizationId", + "name": "onConnectionReachable", + "printedName": "onConnectionReachable", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100281,21 +88674,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100313,21 +88718,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100344,8 +88761,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100354,27 +88771,39 @@ }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onConnectionUnReachable", + "printedName": "onConnectionUnReachable", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100391,21 +88820,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100423,21 +88864,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100454,8 +88907,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100464,27 +88917,19 @@ }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "managerStarted", + "printedName": "managerStarted", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100500,22 +88945,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100532,22 +88969,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100564,333 +88993,356 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUserShoe", - "printedName": "ZTCoreKit.ZTUserShoe", - "usr": "s:9ZTCoreKit10ZTUserShoeC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, { "kind": "TypeDecl", - "name": "Firmware", - "printedName": "Firmware", + "name": "Adapter", + "printedName": "Adapter", "children": [ { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "all", + "printedName": "all", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wiredEthernet", + "printedName": "wiredEthernet", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "arch", - "printedName": "arch", + "name": "loopback", + "printedName": "loopback", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "version", - "printedName": "version", + "kind": "Function", + "name": "getInterfaceType", + "printedName": "getInterfaceType()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "InterfaceType", + "printedName": "Network.NWInterface.InterfaceType", + "usr": "s:7Network11NWInterfaceV13InterfaceTypeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -100899,108 +89351,227 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "online", + "printedName": "online", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> (ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(adapter: ZTCoreKit.ZTReachability.Adapter)", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Connection.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "offline", + "printedName": "offline", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> ZTCoreKit.ZTReachability.Connection", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -101009,144 +89580,57 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -101154,44 +89638,95 @@ "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(adapter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startManager", + "printedName": "startManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC12startManageryyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC12startManageryyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopManager", + "printedName": "stopManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTUserShoeC", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC", + "usr": "s:9ZTCoreKit14ZTReachabilityC", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } + "AccessControl" ] }, { @@ -101206,204 +89741,330 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" + ] + }, + { + "kind": "Var", + "name": "ztActivityKey", + "printedName": "ztActivityKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ztActivityKeySSvp", + "mangledName": "$s9ZTCoreKit13ztActivityKeySSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ztActivityKeySSvg", + "mangledName": "$s9ZTCoreKit13ztActivityKeySSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] }, { "kind": "TypeDecl", - "name": "ZTLoggerComponent", - "printedName": "ZTLoggerComponent", + "name": "ZTActivity", + "printedName": "ZTActivity", "children": [ { "kind": "Var", - "name": "api", - "printedName": "api", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)id", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)id", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "app", - "printedName": "app", + "name": "activityIdentifier", + "printedName": "activityIdentifier", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)activityIdentifier", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)activityIdentifier", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setActivityIdentifier:", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "sdk", - "printedName": "sdk", + "name": "appId", + "printedName": "appId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)appId", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "firmware", - "printedName": "firmware", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)appId", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLoggerComponent?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setAppId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", @@ -101413,10 +90074,16 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)activityType", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], "accessors": [ { "kind": "Accessor", @@ -101431,265 +90098,348 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)activityType", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setActivityType:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTLoggerSeverity", - "printedName": "ZTLoggerSeverity", - "children": [ + ] + }, { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "startDate", + "printedName": "startDate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)startDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)startDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStartDate:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "info", - "printedName": "info", + "name": "endDate", + "printedName": "endDate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)endDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warn", - "printedName": "warn", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)endDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setEndDate:", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLoggerSeverity?", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)startTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)startTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStartTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "endTimestamp", + "printedName": "endTimestamp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)endTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], "accessors": [ { "kind": "Accessor", @@ -101698,53 +90448,61 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)endTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setEndTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "tz", + "printedName": "tz", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -101752,260 +90510,122 @@ "printedName": "Swift.String", "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappingType", - "printedName": "ZTMappingType", - "children": [ - { - "kind": "Var", - "name": "fromJSON", - "printedName": "fromJSON", - "children": [ + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)tz", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMappingType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "toJSON", - "printedName": "toJSON", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)tz", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMappingType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setTz:", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTMappingTypeO", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapper", - "printedName": "ZTMapper", - "children": [ { "kind": "Var", - "name": "context", - "printedName": "context", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)status", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -102015,27 +90635,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)status", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" }, @@ -102052,78 +90671,62 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStatus:", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shouldIncludeNilValues", - "printedName": "shouldIncludeNilValues", + "name": "packets", + "printedName": "packets", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)packets", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -102132,20 +90735,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)packets", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" }, @@ -102161,1853 +90771,2030 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setPackets:", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "metaDataRawValue", + "printedName": "metaDataRawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)metaDataRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)metaDataRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setMetaDataRawValue:", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], - "accessorKind": "_modify" + "accessorKind": "set" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(context:shouldIncludeNilValues:)", + "kind": "Var", + "name": "metaData", + "printedName": "metaData", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMapper", - "printedName": "ZTCoreKit.ZTMapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTMapperC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", - "mangledName": "$s9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:toObject:)", + "name": "metaData", + "printedName": "metaData(_:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDatayyAA25ZTMessageActivityMetadataVSgF", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDatayyAA25ZTMessageActivityMetadataVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:toObject:)", + "kind": "Var", + "name": "stopReasonRawValue", + "printedName": "stopReasonRawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)stopReasonRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:toObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)stopReasonRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStopReasonRawValue:", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:)", + "kind": "Var", + "name": "stopReason", + "printedName": "stopReason", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "stopReason", + "printedName": "stopReason(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonyyAA0c8LastStopE0OSgF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonyyAA0c8LastStopE0OSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:)", + "kind": "Var", + "name": "isRawDataMode", + "printedName": "isRawDataMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isRawDataMode", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isRawDataMode", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsRawDataMode:", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAutomatic", + "printedName": "isAutomatic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isAutomatic", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isAutomatic", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsAutomatic:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "forceStop", + "printedName": "forceStop", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)forceStop", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)forceStop", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setForceStop:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isInterrupted", + "printedName": "isInterrupted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isInterrupted", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONArray:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isInterrupted", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsInterrupted:", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "firstChunkId", + "printedName": "firstChunkId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)firstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)firstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setFirstChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "lastChunkId", + "printedName": "lastChunkId", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)lastChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)lastChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setLastChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "chunkCount", + "printedName": "chunkCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)chunkCount", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)chunkCount", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setChunkCount:", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "anchorTimestamp", + "printedName": "anchorTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)anchorTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:toDictionary:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)anchorTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setAnchorTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "customActivityStartTimestamp", + "printedName": "customActivityStartTimestamp", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)customActivityStartTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)customActivityStartTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setCustomActivityStartTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "customActivityFirstChunkId", + "printedName": "customActivityFirstChunkId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)customActivityFirstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:toDictionary:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)customActivityFirstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setCustomActivityFirstChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)fwVersion", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)fwVersion", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSON:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setFwVersion:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shoesSerial", + "printedName": "shoesSerial", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)shoesSerial", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArrayOfArrays", - "printedName": "mapArrayOfArrays(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)shoesSerial", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "parseJSONStringIntoDictionary", - "printedName": "parseJSONStringIntoDictionary(JSONString:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setShoesSerial:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "parseJSONString", - "printedName": "parseJSONString(JSONString:)", + "kind": "Var", + "name": "duration", + "printedName": "duration", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(entity:insertInto:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "NSEntityDescription", + "printedName": "CoreData.NSEntityDescription", + "usr": "c:objc(cs)NSEntityDescription" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "CoreData.NSManagedObjectContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)initWithEntity:insertIntoManagedObjectContext:", + "mangledName": "$s9ZTCoreKit10ZTActivityC6entity10insertIntoACSo19NSEntityDescriptionC_So22NSManagedObjectContextCSgtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", + "overriding": true, + "objc_name": "initWithEntity:insertIntoManagedObjectContext:", "declAttributes": [ - "Final" + "Dynamic", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONArray:)", + "name": "loadAll", + "printedName": "loadAll(firstChunkId:lastChunkId:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[τ_0_0]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONString:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA8ZTPacketCGs5Int16VSg_ALtF", + "mangledName": "$s9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA8ZTPacketCGs5Int16VSg_ALtF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONObject:)", + "name": "lastSavedChunkId", + "printedName": "lastSavedChunkId(startId:lastId:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s5Int16VAHSg_AItF", + "mangledName": "$s9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s5Int16VAHSg_AItF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONString:)", + "name": "addToCache", + "printedName": "addToCache(_:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC10addToCacheyyAA8ZTPacketCF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10addToCacheyyAA8ZTPacketCF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:)", + "name": "uploadCache", + "printedName": "uploadCache(completion:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } - ], - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveCachedPackets", + "printedName": "saveCachedPackets()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:)", + "name": "upload", + "printedName": "upload(_:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC6uploadyySayxGYaKAA16ZTPacketCachableRzlF", + "mangledName": "$s9ZTCoreKit10ZTActivityC6uploadyySayxGYaKAA16ZTPacketCachableRzlF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final" + "AccessControl" ], - "isFromExtension": true, "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSONObject:)", + "name": "fetchRequest", + "printedName": "fetchRequest()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "NSFetchRequest", + "printedName": "CoreData.NSFetchRequest", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" - }, + "usr": "c:objc(cs)NSFetchRequest" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC12fetchRequestSo07NSFetchE0CyACGyFZ", + "mangledName": "$s9ZTCoreKit10ZTActivityC12fetchRequestSo07NSFetchE0CyACGyFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl", + "NonObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPacketIds", + "printedName": "getPacketIds()", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC12getPacketIdsSays5Int16VGyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC12getPacketIdsSays5Int16VGyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSON:)", + "name": "setPackets", + "printedName": "setPackets(ids:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC10setPackets3idsSays5Int16VGAH_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10setPackets3idsSays5Int16VGAH_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "DiscardableResult" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapArrayOfArrays", - "printedName": "mapArrayOfArrays(JSONObject:)", + "name": "addPacket", + "printedName": "addPacket(id:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[[τ_0_0]]", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC9addPacket2idSays5Int16VGAG_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC9addPacket2idSays5Int16VGAG_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl", + "DiscardableResult" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "map", - "printedName": "map(JSONfile:)", + "name": "getActulState", + "printedName": "getActulState()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC13getActulStateAA014ZTDeviceActualF0OyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC13getActulStateAA014ZTDeviceActualF0OyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(actualState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", + "usr": "s:9ZTCoreKit10ZTActivityC6update11actualStateyAA014ZTDeviceActualF0O_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC6update11actualStateyAA014ZTDeviceActualF0O_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity", + "mangledName": "$s9ZTCoreKit10ZTActivityC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "ZTActivity", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSManagedObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreData.NSManagedObject", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTActivityCachable", + "printedName": "ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP" }, { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONfile:)", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ObservableObject", + "printedName": "ObservableObject", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeWitness", + "name": "ObjectWillChangePublisher", + "printedName": "ObjectWillChangePublisher", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ObservableObjectPublisher", + "printedName": "Combine.ObservableObjectPublisher", + "usr": "s:7Combine25ObservableObjectPublisherC" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:7Combine16ObservableObjectP", + "mangledName": "$s7Combine16ObservableObjectP" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTManufacturerNameCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -104015,434 +92802,767 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", - "mangledName": "$s9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", + "declKind": "Var", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "overriding": true, + "isOpen": true, "declAttributes": [ - "Final", "AccessControl", - "RawDocComment" + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "toJSONDictionary", - "printedName": "toJSONDictionary(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPacket", + "printedName": "ZTPacket", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC3keySSvpZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC3keySSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC3keySSvgZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC3keySSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)id", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)id", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setId:", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)createdAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONDictionaryOfArrays", - "printedName": "toJSONDictionaryOfArrays(_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)createdAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setCreatedAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "fulfilledAt", + "printedName": "fulfilledAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)fulfilledAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)fulfilledAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setFulfilledAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] }, { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", + "kind": "Var", + "name": "scheduledDeleted", + "printedName": "scheduledDeleted", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)scheduledDeleted", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)scheduledDeleted", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setScheduledDeleted:", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sentAt", + "printedName": "sentAt", + "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)sentAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)sentAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setSentAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "toJSONData", - "printedName": "toJSONData(_:options:)", + "kind": "Var", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", @@ -104457,730 +93577,634 @@ } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "WritingOptions", - "printedName": "Foundation.JSONSerialization.WritingOptions", - "usr": "c:@E@NSJSONWritingOptions" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)rawData", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)rawData", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONObject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setRawData:", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "activity", + "printedName": "activity", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)activity", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONArray:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONSet", - "printedName": "toJSONSet(_:)", - "children": [ + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)activity", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setActivity:", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" ], - "usr": "s:Sh" + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", + "kind": "Var", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTMapperC", - "mangledName": "$s9ZTCoreKit8ZTMapperC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTMessageChunkSendStatus", - "children": [ - { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "success", - "printedName": "success", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "errorOutOfRange", - "printedName": "errorOutOfRange", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvs", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvs", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "errorSendFailed", - "printedName": "errorSendFailed", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvM", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { - "kind": "Var", - "name": "errorUnexpected", - "printedName": "errorUnexpected", + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)timestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)timestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "errorNotFound", - "printedName": "errorNotFound", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setTimestamp:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)duration", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)duration", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setDuration:", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" - }, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "statusRawValue", + "printedName": "statusRawValue", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)statusRawValue", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)statusRawValue", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setStatusRawValue:", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvs", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvs", + "moduleName": "ZTCoreKit", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "bytes", - "printedName": "bytes", + "name": "timestampType", + "printedName": "timestampType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105189,59 +94213,80 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovs", + "moduleName": "ZTCoreKit", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0OvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "bmTimestampType", + "printedName": "bmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105250,24 +94295,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -105282,24 +94318,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovs", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "set" }, { @@ -105314,8 +94341,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -105324,35 +94351,24 @@ }, { "kind": "Var", - "name": "chunkId", - "printedName": "chunkId", + "name": "packetType", + "printedName": "packetType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105361,24 +94377,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -105393,24 +94400,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovs", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "set" }, { @@ -105425,8 +94423,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -105434,60 +94432,104 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "originalTimestamp", + "printedName": "originalTimestamp", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)originalTimestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)originalTimestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setOriginalTimestamp:", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "packetsNumber", + "printedName": "packetsNumber", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)packetsNumber", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], "accessors": [ { @@ -105497,100 +94539,56 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)packetsNumber", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setPacketsNumber:", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTButtonlessDfuCharacteristic", - "printedName": "ZTButtonlessDfuCharacteristic", - "children": [ + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "rawDescription", + "printedName": "rawDescription", "children": [ { "kind": "TypeNominal", @@ -105600,19 +94598,13 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTPacketC14rawDescriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC14rawDescriptionSSvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105627,49 +94619,44 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTPacketC14rawDescriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC14rawDescriptionSSvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "fwVersion", + "printedName": "fwVersion", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)fwVersion", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105679,561 +94666,1012 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)fwVersion", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setFwVersion:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", "children": [ { "kind": "TypeNominal", - "name": "ZTButtonlessDfuCharacteristic", - "printedName": "ZTCoreKit.ZTButtonlessDfuCharacteristic", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)retryCount", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Dynamic", "AccessControl", - "Required", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)retryCount", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setRetryCount:", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivityLastStopReason", - "printedName": "ZTActivityLastStopReason", - "children": [ + ] + }, { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO2idyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO2idyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityId", + "printedName": "activityId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10activityIdyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10activityIdyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "rawData", + "printedName": "rawData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO7rawDatayA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO7rawDatayA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9timestampyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9timestampyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8durationyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8durationyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO6statusyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO6statusyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "packetType", + "printedName": "packetType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10packetTypeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10packetTypeyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timestampType", + "printedName": "timestampType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO13timestampTypeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO13timestampTypeyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "originalTimestamp", + "printedName": "originalTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO17originalTimestampyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO17originalTimestampyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "packetsNumber", + "printedName": "packetsNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO13packetsNumberyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO13packetsNumberyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9fwVersionyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9fwVersionyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10retryCountyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10retryCountyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ] + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "userRequest", - "printedName": "userRequest", - "children": [ + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "memoryFull", - "printedName": "memoryFull", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ] + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "inactivity", - "printedName": "inactivity", - "children": [ + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "intValue", + "printedName": "intValue", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTISO8601DateTransform", - "printedName": "ZTISO8601DateTransform", - "children": [ { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "ZTISO8601DateTransform", - "printedName": "ZTCoreKit.ZTISO8601DateTransform", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformCACycfc", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "usr": "s:9ZTCoreKit8ZTPacketC4dataAC10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4dataAC10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "init_kind": "Designated" }, { "kind": "Constructor", "name": "init", - "printedName": "init(dateFormatter:)", + "printedName": "init(entity:insertInto:)", "children": [ { "kind": "TypeNominal", - "name": "ZTISO8601DateTransform", - "printedName": "ZTCoreKit.ZTISO8601DateTransform", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" }, { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "NSEntityDescription", + "printedName": "CoreData.NSEntityDescription", + "usr": "c:objc(cs)NSEntityDescription" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreData.NSManagedObjectContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "usr": "s:Sq" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)initWithEntity:insertIntoManagedObjectContext:", + "mangledName": "$s9ZTCoreKit8ZTPacketC6entity10insertIntoACSo19NSEntityDescriptionC_So22NSManagedObjectContextCSgtcfc", "moduleName": "ZTCoreKit", "overriding": true, - "implicit": true, + "objc_name": "initWithEntity:insertIntoManagedObjectContext:", "declAttributes": [ - "Override" + "Dynamic", + "ObjC", + "Override", + "AccessControl" ], "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "superclassNames": [ - "ZTCoreKit.ZTDateFormatterTransform" - ], - "conformances": [ + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:activity:fwVersion:context:name:)", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -106241,34 +95679,16 @@ "printedName": "Swift.String", "usr": "s:SS" } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPrimaryService", - "printedName": "ZTPrimaryService", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + }, { "kind": "TypeNominal", "name": "String", @@ -106276,358 +95696,227 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC4data8activity9fwVersion7context4nameAC10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgSo22NSManagedObjectContextCSStcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4data8activity9fwVersion7context4nameAC10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgSo22NSManagedObjectContextCSStcfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", "AccessControl", + "Required", "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", + "Required", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Function", + "name": "saveWithResult", + "printedName": "saveWithResult(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPrimaryService", - "printedName": "ZTCoreKit.ZTPrimaryService", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14saveWithResultyS2bF", + "mangledName": "$s9ZTCoreKit8ZTPacketC14saveWithResultyS2bF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, + "isOpen": true, "declAttributes": [ - "Required" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappableResponseSerializer", - "printedName": "ZTMappableResponseSerializer", - "children": [ - { - "kind": "Var", - "name": "emptyResponseCodes", - "printedName": "emptyResponseCodes", + "kind": "Function", + "name": "updateSegmentsTimestamp", + "printedName": "updateSegmentsTimestamp(activityId:startId:anchorTime:)", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC23updateSegmentsTimestamp10activityId05startH010anchorTimeySS_s5Int16Vs5Int64VSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC23updateSegmentsTimestamp10activityId05startH010anchorTimeySS_s5Int16Vs5Int64VSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ "Final", - "HasStorage", "AccessControl", - "RawDocComment" + "Available" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateSegment", + "printedName": "updateSegment(_:segment:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sh" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13updateSegment_7segmentySSSg_ACtF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13updateSegment_7segmentySSSg_ACtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "keyPath", - "printedName": "keyPath", + "kind": "Function", + "name": "updateSegments", + "printedName": "updateSegments(ids:status:activityId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, { "kind": "TypeNominal", "name": "Optional", @@ -106643,1764 +95932,1768 @@ "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14updateSegments3ids6status10activityIdySays5Int16VG_AC6StatusOSSSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14updateSegments3ids6status10activityIdySays5Int16VG_AC6StatusOSSSgtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "Final", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "new", + "printedName": "new", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvg", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO3newyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO3newyA2EmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, "declAttributes": [ - "Final" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readyToSend", + "printedName": "readyToSend", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "context", - "printedName": "context", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO11readyToSendyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO11readyToSendyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Var", + "name": "sending", + "printedName": "sending", "children": [ { - "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO7sendingyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO7sendingyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "sent", + "printedName": "sent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO4sentyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO4sentyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO5erroryA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO5erroryA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "ZTCoreKit.ZTPacket.Status?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValueAESgs5Int16V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValueAESgs5Int16V_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "object", - "printedName": "object", - "children": [ + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "Int16", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { - "kind": "Var", - "name": "serializeCallback", - "printedName": "serializeCallback", + "kind": "TypeDecl", + "name": "TimestampType", + "printedName": "TimestampType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> τ_0_0", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO5startyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO5startyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stop", + "printedName": "stop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4stopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4stopyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pause", + "printedName": "pause", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO5pauseyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO5pauseyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "resume", + "printedName": "resume", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> τ_0_0", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ] } ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "serialize", - "printedName": "serialize(request:response:data:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO6resumeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO6resumeyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Var", + "name": "reboot", + "printedName": "reboot", "children": [ { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO6rebootyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO6rebootyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.TimestampType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC9serialize7request8response4data5errorx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAI4DataVSgs5Error_pSgtKF", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC9serialize7request8response4data5errorx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAI4DataVSgs5Error_pSgtKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTMappableArrayResponseSerializer", - "printedName": "ZTMappableArrayResponseSerializer", - "children": [ - { - "kind": "Var", - "name": "emptyResponseCodes", - "printedName": "emptyResponseCodes", - "children": [ + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sh" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sh" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { - "kind": "Var", - "name": "keyPath", - "printedName": "keyPath", + "kind": "TypeDecl", + "name": "BmTimestampType", + "printedName": "BmTimestampType", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "shoeWearOn", + "printedName": "shoeWearOn", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "context", - "printedName": "context", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO10shoeWearOnyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO10shoeWearOnyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Var", + "name": "shoeWearOff", + "printedName": "shoeWearOff", "children": [ { - "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11shoeWearOffyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11shoeWearOffyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "walkingStart", + "printedName": "walkingStart", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "serializeCallback", - "printedName": "serializeCallback", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12walkingStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12walkingStartyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [τ_0_0]", + "kind": "Var", + "name": "walkingStop", + "printedName": "walkingStop", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sa" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11walkingStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11walkingStopyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "runningStart", + "printedName": "runningStart", + "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } - ], - "usr": "s:Sq" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12runningStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12runningStartyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "runningStop", + "printedName": "runningStop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11runningStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11runningStopyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "cyclingStart", + "printedName": "cyclingStart", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [τ_0_0]", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ] } ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "serialize", - "printedName": "serialize(request:response:data:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12cyclingStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12cyclingStartyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Var", + "name": "cyclingStop", + "printedName": "cyclingStop", "children": [ { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11cyclingStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11cyclingStopyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "kind": "Var", + "name": "transportStart", + "printedName": "transportStart", "children": [ { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO14transportStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO14transportStartyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "transportStop", + "printedName": "transportStop", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO13transportStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO13transportStopyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC9serialize7request8response4data5errorSayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAJ4DataVSgs5Error_pSgtKF", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC9serialize7request8response4data5errorSayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAJ4DataVSgs5Error_pSgtKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTEnumTransform", - "printedName": "ZTEnumTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEnumTransform", - "printedName": "ZTCoreKit.ZTEnumTransform<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ], - "usr": "s:9ZTCoreKit15ZTEnumTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTEnumTransformCACyxGycfc", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformCACyxGycfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.RawValue?", + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.RawValue" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit15ZTEnumTransformC", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.RawValue" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTReachability", - "printedName": "ZTReachability", - "children": [ - { - "kind": "Var", - "name": "currentAdapterMode", - "printedName": "currentAdapterMode", - "children": [ - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType?", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentConnectionStatus", - "printedName": "currentConnectionStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { - "kind": "Var", - "name": "onConnectionReachable", - "printedName": "onConnectionReachable", + "kind": "TypeDecl", + "name": "PacketType", + "printedName": "PacketType", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Var", + "name": "maxDataValue", + "printedName": "maxDataValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvpZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvgZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "onConnectionUnReachable", - "printedName": "onConnectionUnReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Var", + "name": "quantification", + "printedName": "quantification", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14quantificationyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14quantificationyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "walkAnalysis", + "printedName": "walkAnalysis", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12walkAnalysisyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12walkAnalysisyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "runAnalysis", + "printedName": "runAnalysis", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "managerStarted", - "printedName": "managerStarted", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11runAnalysisyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11runAnalysisyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "stairs", + "printedName": "stairs", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO6stairsyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO6stairsyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "cycling", + "printedName": "cycling", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO7cyclingyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO7cyclingyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Adapter", - "printedName": "Adapter", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO4jumpyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO4jumpyA2EmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "all", - "printedName": "all", + "name": "safety", + "printedName": "safety", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108408,36 +97701,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO6safetyyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO6safetyyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "wifi", - "printedName": "wifi", + "name": "staticActivity", + "printedName": "staticActivity", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108445,36 +97738,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14staticActivityyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14staticActivityyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cellular", - "printedName": "cellular", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108482,36 +97775,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO5debugyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO5debugyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "wiredEthernet", - "printedName": "wiredEthernet", + "name": "debugTelemetry", + "printedName": "debugTelemetry", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108519,36 +97812,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14debugTelemetryyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14debugTelemetryyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "loopback", - "printedName": "loopback", + "name": "debugProba", + "printedName": "debugProba", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108556,36 +97849,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO10debugProbayA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO10debugProbayA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "other", - "printedName": "other", + "name": "bmTimestampPacket", + "printedName": "bmTimestampPacket", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108593,36 +97886,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO011bmTimestampD0yA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO011bmTimestampD0yA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "none", - "printedName": "none", + "name": "fwTimestampPacket", + "printedName": "fwTimestampPacket", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108630,9 +97926,12 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO011fwTimestampD0yA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO011fwTimestampD0yA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", @@ -108647,8 +97946,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -108667,49 +97966,61 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "getInterfaceType", - "printedName": "getInterfaceType()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "InterfaceType", - "printedName": "Network.NWInterface.InterfaceType", - "usr": "s:7Network11NWInterfaceV13InterfaceTypeO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.PacketType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -108720,212 +98031,481 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "lastSegmentId", + "printedName": "lastSegmentId(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13lastSegmentId08activityF0SiSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13lastSegmentId08activityF0SiSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "segmentsCount", + "printedName": "segmentsCount(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13segmentsCount10activityIdSiSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13segmentsCount10activityIdSiSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadUnsent", + "printedName": "loadUnsent(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadUnsent10activityIdSayACGSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadUnsent10activityIdSayACGSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sa" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityIdSayACGSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityIdSayACGSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:startId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId05startG0SayACGSS_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId05startG0SayACGSS_s5Int16VtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAllPackets", + "printedName": "loadAllPackets(activityId:startId:lastId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14loadAllPackets10activityId05startH004lastH0SayACGSS_s5Int16VSgAKtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14loadAllPackets10activityId05startH004lastH0SayACGSS_s5Int16VSgAKtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAllIds", + "printedName": "loadAllIds(activityId:startId:endId:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadAllIds10activityId05startH003endH0SaySiGSS_s5Int16VAJSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadAllIds10activityId05startH003endH0SaySiGSS_s5Int16VAJSgtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", + "kind": "Function", + "name": "loadAllPacketsIds", + "printedName": "loadAllPacketsIds(activityId:startId:endId:)", "children": [ { - "kind": "Var", - "name": "online", - "printedName": "online", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> (ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(adapter: ZTCoreKit.ZTReachability.Adapter)", - "children": [ - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sa" }, { - "kind": "Var", - "name": "offline", - "printedName": "offline", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", - "moduleName": "ZTCoreKit" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC17loadAllPacketsIds10activityId05startI003endI0Says5Int16VGSS_A2ISgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17loadAllPacketsIds10activityId05startI003endI0Says5Int16VGSS_A2ISgtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadPrevious", + "printedName": "loadPrevious(activityId:chunkId:originalTimestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -108934,624 +98514,701 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "usr": "s:Sq" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC12loadPrevious10activityId05chunkG017originalTimestampACSgSSSg_s5Int16Vs5Int64VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12loadPrevious10activityId05chunkG017originalTimestampACSgSSSg_s5Int16Vs5Int64VtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadPacket", + "printedName": "loadPacket(activityId:id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadPacket10activityId2idACSgSSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadPacket10activityId2idACSgSSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadLastFwVersionEvent", + "printedName": "loadLastFwVersionEvent(activityId:chunkId:startId:)", + "children": [ { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(adapter:)", - "children": [ { "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" }, { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], "hasDefaultArg": true, - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC22loadLastFwVersionEvent10activityId05chunkJ005startJ0ACSgSSSg_s5Int16VAKSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC22loadLastFwVersionEvent10activityId05chunkJ005startJ0ACSgSSSg_s5Int16VAKSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "startManager", - "printedName": "startManager()", + "name": "loadAllChunks", + "printedName": "loadAllChunks(activityId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC12startManageryyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC12startManageryyF", + "usr": "s:9ZTCoreKit8ZTPacketC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacket>", + "sugared_genericSig": "", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "stopManager", - "printedName": "stopManager()", + "name": "loadAll", + "printedName": "loadAll(activityId:lastChunkId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC11stopManageryyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId09lastChunkG0SayACGSS_s5Int16VSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId09lastChunkG0SayACGSS_s5Int16VSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit14ZTReachabilityC", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDateDefaultTransform", - "printedName": "ZTDateDefaultTransform", - "children": [ + }, { - "kind": "TypeDecl", - "name": "Unit", - "printedName": "Unit", + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:firstChunkId:lastChunkId:)", "children": [ { - "kind": "Var", - "name": "seconds", - "printedName": "seconds", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sa" }, { - "kind": "Var", - "name": "milliseconds", - "printedName": "milliseconds", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit?", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId010firstChunkG004lastiG0SayACGSS_s5Int16VSgAKtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId010firstChunkG004lastiG0SayACGSS_s5Int16VSgAKtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC5clear10activityIdySSSg_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC5clear10activityIdySSSg_tFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "enumRawTypeName": "Double", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMissedChunk", + "printedName": "getMissedChunk(activity:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] + "kind": "TypeNominal", + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14getMissedChunk8activitys5Int16VSgAA10ZTActivityCSg_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14getMissedChunk8activitys5Int16VSgAA10ZTActivityCSg_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(unit:)", + "kind": "Function", + "name": "getMaxMissedChunk", + "printedName": "getMaxMissedChunk(activityId:chunkId:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDateDefaultTransform", - "printedName": "ZTCoreKit.ZTDateDefaultTransform", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC" + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC17getMaxMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17getMaxMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "name": "getMissedPackets", + "printedName": "getMissedPackets(activityId:startId:endId:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "[Swift.Int16]?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "usr": "s:9ZTCoreKit8ZTPacketC16getMissedPackets10activityId05startH003endH0Says5Int16VGSgSS_A2ISgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC16getMissedPackets10activityId05startH003endH0Says5Int16VGSgSS_A2ISgtFZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "name": "getMinMissedChunk", + "printedName": "getMinMissedChunk(activityId:chunkId:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "usr": "s:9ZTCoreKit8ZTPacketC17getMinMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17getMinMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Function", + "name": "getMinMissedPacketId", + "printedName": "getMinMissedPacketId(activityId:startId:lastId:)", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "children": [ + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC20getMinMissedPacketId08activityH005startH004lastH0s5Int16VSgSS_AiJtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC20getMinMissedPacketId08activityH005startH004lastH0s5Int16VSgSS_AiJtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "name": "checkMissedChunks", + "printedName": "checkMissedChunks(activityId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit8ZTPacketC17checkMissedChunks10activityIdSbSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17checkMissedChunks10activityIdSbSS_tFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "Mutating", + "Final", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "Mutating" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "hasMissedChunks", + "printedName": "hasMissedChunks(activityId:startIndex:endIndex:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", + "usr": "s:9ZTCoreKit8ZTPacketC15hasMissedChunks10activityId10startIndex03endJ0SbSS_s5Int16VSgAJtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC15hasMissedChunks10activityId10startIndex03endJ0SbSS_s5Int16VSgAJtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], "isFromExtension": true, @@ -109559,9 +99216,14 @@ }, { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(prettyPrint:)", + "name": "checkPacketToRemove", + "printedName": "checkPacketToRemove(activityId:packetId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", @@ -109578,276 +99240,363 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", + "usr": "s:9ZTCoreKit8ZTPacketC19checkPacketToRemove10activityId06packetI0ySSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC19checkPacketToRemove10activityId06packetI0ySSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappable", - "printedName": "ZTMappable", - "children": [ + }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Function", + "name": "hasPreviousChunk", + "printedName": "hasPreviousChunk(activityId:currentIndex:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC16hasPreviousChunk10activityId12currentIndexSbSS_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC16hasPreviousChunk10activityId12currentIndexSbSS_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", + "kind": "Function", + "name": "isChunkSaved", + "printedName": "isChunkSaved(activityId:chunkId:startId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC12isChunkSaved10activityId05chunkH005startH0SbSSSg_s5Int16VAJSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12isChunkSaved10activityId05chunkH005startH0SbSSSg_s5Int16VAJSgtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "Final" ], "isFromExtension": true, - "init_kind": "Convenience" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSON:context:)", + "kind": "Function", + "name": "isSaved", + "printedName": "isSaved(activityId:chunkId:startId:endId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7isSaved10activityId05chunkG005startG003endG0SbSSSg_s5Int16VAKSgALtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7isSaved10activityId05chunkG005startG003endG0SbSSSg_s5Int16VAKSgALtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "Final" ], "isFromExtension": true, - "init_kind": "Convenience" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTStaticMappable", - "printedName": "ZTStaticMappable", - "children": [ + "funcSelfKind": "NonMutating" + }, { "kind": "Function", - "name": "objectForMapping", - "printedName": "objectForMapping(map:)", + "name": "isChunkEmpty", + "printedName": "isChunkEmpty(activityId:chunkId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTBaseMappable)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBaseMappable", - "printedName": "any ZTCoreKit.ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", - "mangledName": "$s9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", + "usr": "s:9ZTCoreKit8ZTPacketC12isChunkEmpty10activityId05chunkH0SbSSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12isChunkEmpty10activityId05chunkH0SbSSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTStaticMappable>", - "sugared_genericSig": "", "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "Final" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit16ZTStaticMappableP", - "mangledName": "$s9ZTCoreKit16ZTStaticMappableP", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket", + "mangledName": "$s9ZTCoreKit8ZTPacketC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, + "objc_name": "ZTPacket", "declAttributes": [ - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSManagedObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreData.NSManagedObject", + "ObjectiveC.NSObject" ], "conformances": [ { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" + }, + { + "kind": "Conformance", + "name": "ZTPacketCachable", + "printedName": "ZTPacketCachable", + "children": [ + { + "kind": "TypeWitness", + "name": "Activity", + "printedName": "Activity", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" + } + ] + } + ], + "usr": "s:9ZTCoreKit16ZTPacketCachableP", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ObservableObject", + "printedName": "ObservableObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectWillChangePublisher", + "printedName": "ObjectWillChangePublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableObjectPublisher", + "printedName": "Combine.ObservableObjectPublisher", + "usr": "s:7Combine25ObservableObjectPublisherC" + } + ] + } + ], + "usr": "s:7Combine16ObservableObjectP", + "mangledName": "$s7Combine16ObservableObjectP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -109863,12 +99612,12 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" ] }, { @@ -111622,13 +101371,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "hasDefaultArg": true, @@ -111637,18 +101386,18 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTSegmentData]?", + "printedName": "[ZTCoreKit.ZTPacket]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -111693,8 +101442,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_SiSgSayAA13ZTSegmentDataCGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_SiSgSayAA13ZTSegmentDataCGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_s5Int16VSgSayAA8ZTPacketCGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_s5Int16VSgSayAA8ZTPacketCGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -111721,9 +101470,9 @@ }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" }, { "kind": "TypeNominal", @@ -111790,8 +101539,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA13ZTSegmentDataCSDySSypGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA13ZTSegmentDataCSDySSypGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA8ZTPacketCSDySSypGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA8ZTPacketCSDySSypGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -111819,13 +101568,13 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -111895,8 +101644,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA13ZTSegmentDataCGSDySSypGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA13ZTSegmentDataCGSDySSypGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA8ZTPacketCGSDySSypGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA8ZTPacketCGSDySSypGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112139,18 +101888,18 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTSegmentData]?", + "printedName": "[ZTCoreKit.ZTPacket]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -112207,19 +101956,801 @@ } ] } - ] + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA8ZTPacketCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA8ZTPacketCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((τ_0_0?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAppAttributes", + "printedName": "getAppAttributes(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDataArray", + "printedName": "getDataArray(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postData", + "printedName": "postData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA13ZTSegmentDataCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA13ZTSegmentDataCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", @@ -112229,8 +102760,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postData", + "printedName": "postData(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112272,64 +102803,55 @@ "usr": "s:Sq" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((τ_0_0?, (any Swift.Error)?) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(τ_0_0?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", "moduleName": "ZTCoreKit", "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", "sugared_genericSig": "", @@ -112342,8 +102864,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postDataGenericResult", + "printedName": "postDataGenericResult(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112358,36 +102880,120 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postDataResult", + "printedName": "postDataResult(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> ()", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112397,7 +103003,7 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?)", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", @@ -112426,20 +103032,6 @@ ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -112460,8 +103052,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112472,8 +103064,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postDataResultArray", + "printedName": "postDataResultArray(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112488,31 +103080,22 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeFunc", @@ -112584,8 +103167,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112596,18 +103179,52 @@ }, { "kind": "Function", - "name": "getAppAttributes", - "printedName": "getAppAttributes(completion:)", + "name": "deleteData", + "printedName": "deleteData(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112616,58 +103233,24 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112678,18 +103261,43 @@ }, { "kind": "Function", - "name": "checkFirmwareUpdate", - "printedName": "checkFirmwareUpdate(completion:)", + "name": "addActivityData", + "printedName": "addActivityData(activityId:timestamp:data:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112698,37 +103306,24 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112739,18 +103334,43 @@ }, { "kind": "Function", - "name": "checkFirmwareUpdate", - "printedName": "checkFirmwareUpdate(completion:)", + "name": "updateActivityAttributes", + "printedName": "updateActivityAttributes(activityId:attributes:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112759,28 +103379,62 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updatePushNotificationToken", + "printedName": "updatePushNotificationToken(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", @@ -112798,12 +103452,14 @@ } ] } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112814,8 +103470,8 @@ }, { "kind": "Function", - "name": "getDataArray", - "printedName": "getDataArray(path:parameters:completion:)", + "name": "deleteUser", + "printedName": "deleteUser(completion:)", "children": [ { "kind": "TypeNominal", @@ -112823,43 +103479,69 @@ "printedName": "()" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:SD" + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "existUser", + "printedName": "existUser(attribute:value:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?, Swift.Bool?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112869,39 +103551,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "printedName": "((any Swift.Error)?, Swift.Bool?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.String : Any]]?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" @@ -112909,13 +103570,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" @@ -112926,8 +103587,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112938,8 +103599,8 @@ }, { "kind": "Function", - "name": "postData", - "printedName": "postData(path:parameters:completion:)", + "name": "suborgExist", + "printedName": "suborgExist(code:completion:)", "children": [ { "kind": "TypeNominal", @@ -112952,29 +103613,10 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", @@ -112983,24 +103625,16 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", + "mangledName": "$s9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113011,8 +103645,8 @@ }, { "kind": "Function", - "name": "postData", - "printedName": "postData(path:parameters:completion:)", + "name": "trackEvent", + "printedName": "trackEvent(name:data:timestamp:attributes:)", "children": [ { "kind": "TypeNominal", @@ -113053,10 +103687,151 @@ "hasDefaultArg": true, "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "mangledName": "$s9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "log", + "printedName": "log(severity:component:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + }, + { + "kind": "TypeNominal", + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "mangledName": "$s9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addActivityComment", + "printedName": "addActivityComment(activityId:text:mediaFileTemplates:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[ZTCoreKit.ZTMediaFileTemplate]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFileTemplate]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113066,17 +103841,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(τ_0_0?, (any Swift.Error)?)", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "ZTCoreKit.ZTActivityComment?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" } ], "usr": "s:Sq" @@ -113101,11 +103877,9 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", @@ -113115,8 +103889,8 @@ }, { "kind": "Function", - "name": "postDataGenericResult", - "printedName": "postDataGenericResult(path:parameters:completion:)", + "name": "saveActivityComment", + "printedName": "saveActivityComment(commentId:text:completion:)", "children": [ { "kind": "TypeNominal", @@ -113131,27 +103905,68 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActivityComments", + "printedName": "getActivityComments(activityId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Any?, (any Swift.Error)?) -> ()", + "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113161,17 +103976,26 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(Any?, (any Swift.Error)?)", + "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "[ZTCoreKit.ZTActivityComment]?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Array", + "printedName": "[ZTCoreKit.ZTActivityComment]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" @@ -113196,8 +104020,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113208,8 +104032,8 @@ }, { "kind": "Function", - "name": "postDataResult", - "printedName": "postDataResult(path:parameters:completion:)", + "name": "getActivityComment", + "printedName": "getActivityComment(commentId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113222,29 +104046,10 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113254,31 +104059,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "ZTCoreKit.ZTActivityComment?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" } ], "usr": "s:Sq" @@ -113303,8 +104095,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113315,8 +104107,8 @@ }, { "kind": "Function", - "name": "postDataResultArray", - "printedName": "postDataResultArray(path:parameters:completion:)", + "name": "getActivityRealtimeData", + "printedName": "getActivityRealtimeData(activityId:fields:completion:)", "children": [ { "kind": "TypeNominal", @@ -113331,27 +104123,22 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sa" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113361,39 +104148,31 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.String : Any]]?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sa" + "usr": "s:SD" } ], "usr": "s:Sq" @@ -113418,8 +104197,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113430,8 +104209,8 @@ }, { "kind": "Function", - "name": "deleteData", - "printedName": "deleteData(path:parameters:completion:)", + "name": "addMediaFileToActivityComment", + "printedName": "addMediaFileToActivityComment(commentId:mediaFileTemplate:completion:)", "children": [ { "kind": "TypeNominal", @@ -113446,31 +104225,9 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" }, { "kind": "TypeFunc", @@ -113500,8 +104257,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113512,8 +104269,8 @@ }, { "kind": "Function", - "name": "addActivityData", - "printedName": "addActivityData(activityId:timestamp:data:completion:)", + "name": "deleteActivityComment", + "printedName": "deleteActivityComment(commentId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113526,25 +104283,6 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - }, { "kind": "TypeFunc", "name": "Function", @@ -113573,8 +104311,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113585,8 +104323,8 @@ }, { "kind": "Function", - "name": "updateActivityAttributes", - "printedName": "updateActivityAttributes(activityId:attributes:completion:)", + "name": "deleteMediaFile", + "printedName": "deleteMediaFile(mediaFileId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113599,25 +104337,6 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", @@ -113646,8 +104365,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113658,8 +104377,8 @@ }, { "kind": "Function", - "name": "updatePushNotificationToken", - "printedName": "updatePushNotificationToken(_:completion:)", + "name": "uploadActivityRawData", + "printedName": "uploadActivityRawData(activityId:filePath:completion:)", "children": [ { "kind": "TypeNominal", @@ -113674,55 +104393,51 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "deleteUser", - "printedName": "deleteUser(completion:)", + "name": "getAchievements", + "printedName": "getAchievements(completion:)", "children": [ { "kind": "TypeNominal", @@ -113732,7 +104447,7 @@ { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113741,24 +104456,53 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Tuple", + "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Optional", + "printedName": "[ZTCoreKit.ZTAchievement]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTAchievement]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAchievement", + "printedName": "ZTCoreKit.ZTAchievement", + "usr": "s:9ZTCoreKit13ZTAchievementC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "usr": "s:9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113769,8 +104513,8 @@ }, { "kind": "Function", - "name": "existUser", - "printedName": "existUser(attribute:value:completion:)", + "name": "complianceTestRetry", + "printedName": "complianceTestRetry(timeout:attempts:statusCode:completion:)", "children": [ { "kind": "TypeNominal", @@ -113779,20 +104523,26 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?, Swift.Bool?) -> ()", + "printedName": "(Foundation.Data?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113802,18 +104552,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "((any Swift.Error)?, Swift.Bool?)", + "printedName": "(Foundation.Data?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" @@ -113821,13 +104571,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" @@ -113838,8 +104588,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113850,8 +104600,8 @@ }, { "kind": "Function", - "name": "suborgExist", - "printedName": "suborgExist(code:completion:)", + "name": "startListenMessages", + "printedName": "startListenMessages(onMessageReceived:onDataReceived:)", "children": [ { "kind": "TypeNominal", @@ -113859,15 +104609,35 @@ "printedName": "()" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "printedName": "(Foundation.Data?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113876,16 +104646,24 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", - "mangledName": "$s9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", + "usr": "s:9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113896,86 +104674,63 @@ }, { "kind": "Function", - "name": "trackEvent", - "printedName": "trackEvent(name:data:timestamp:attributes:)", + "name": "stopListenMessages", + "printedName": "stopListenMessages()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "mangledName": "$s9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLogFilesList", + "printedName": "getLogFilesList(date:)", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "[Foundation.URL]?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Array", + "printedName": "[Foundation.URL]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "usr": "s:Sa" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "hasDefaultArg": true, @@ -113983,8 +104738,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", - "mangledName": "$s9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "usr": "s:9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113995,38 +104750,18 @@ }, { "kind": "Function", - "name": "log", - "printedName": "log(severity:component:message:)", + "name": "resendSavedRequests", + "printedName": "resendSavedRequests()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", - "mangledName": "$s9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "usr": "s:9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", + "mangledName": "$s9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -114034,114 +104769,434 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit5ZTApiC", + "mangledName": "$s9ZTCoreKit5ZTApiC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCBPeripheralProtocol", + "printedName": "ZTCBPeripheralProtocol", + "children": [ { - "kind": "Function", - "name": "addActivityComment", - "printedName": "addActivityComment(activityId:text:mediaFileTemplates:completion:)", + "kind": "Var", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFileTemplate]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFileTemplate]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rssi", + "printedName": "rssi", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } ], "usr": "s:Sq" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Optional", + "printedName": "Foundation.NSNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralState", + "printedName": "CoreBluetooth.CBPeripheralState", + "usr": "c:@E@CBPeripheralState" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", + "name": "CBPeripheralState", + "printedName": "CoreBluetooth.CBPeripheralState", + "usr": "c:@E@CBPeripheralState" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "services", + "printedName": "services", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBService]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" - }, + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBService]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "usr": "s:Sq" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "saveActivityComment", - "printedName": "saveActivityComment(commentId:text:completion:)", + "name": "discoverServices", + "printedName": "discoverServices(_:)", "children": [ { "kind": "TypeNominal", @@ -114150,58 +105205,156 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "discoverCharacteristics", + "printedName": "discoverCharacteristics(_:for:)", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeValue", + "printedName": "writeValue(_:for:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristicWriteType", + "printedName": "CoreBluetooth.CBCharacteristicWriteType", + "usr": "c:@E@CBCharacteristicWriteType" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "getActivityComments", - "printedName": "getActivityComments(activityId:completion:)", + "name": "setNotifyValue", + "printedName": "setNotifyValue(_:for:)", "children": [ { "kind": "TypeNominal", @@ -114210,81 +105363,55 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTActivityComment]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTActivityComment]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "children": [ { "kind": "Function", - "name": "getActivityComment", - "printedName": "getActivityComment(commentId:completion:)", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", @@ -114293,89 +105420,71 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "getActivityRealtimeData", - "printedName": "getActivityRealtimeData(activityId:fields:completion:)", + "name": "toJSONString", + "printedName": "toJSONString(prettyPrint:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -114384,149 +105493,98 @@ "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMappable", + "printedName": "ZTMappable", + "children": [ { - "kind": "Function", - "name": "addMediaFileToActivityComment", - "printedName": "addMediaFileToActivityComment(commentId:mediaFileTemplate:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "protocolReq": true, "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "deleteActivityComment", - "printedName": "deleteActivityComment(commentId:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -114535,579 +105593,541 @@ "usr": "s:SS" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "init_kind": "Convenience" }, { - "kind": "Function", - "name": "deleteMediaFile", - "printedName": "deleteMediaFile(mediaFileId:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSON:context:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, + "isFromExtension": true, + "init_kind": "Convenience" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTStaticMappable", + "printedName": "ZTStaticMappable", + "children": [ { "kind": "Function", - "name": "uploadActivityRawData", - "printedName": "uploadActivityRawData(activityId:filePath:completion:)", + "name": "objectForMapping", + "printedName": "objectForMapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTBaseMappable)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ZTBaseMappable", + "printedName": "any ZTCoreKit.ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", + "usr": "s:9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", + "mangledName": "$s9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTStaticMappable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, "declAttributes": [ - "Final", - "AccessControl" + "RawDocComment" ], + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit16ZTStaticMappableP", + "mangledName": "$s9ZTCoreKit16ZTStaticMappableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "Function", - "name": "getAchievements", - "printedName": "getAchievements(completion:)", + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTRealtimeMessage", + "printedName": "ZTRealtimeMessage", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Side", + "printedName": "Side", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTAchievement]?", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTAchievement]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAchievement", - "printedName": "ZTCoreKit.ZTAchievement", - "usr": "s:9ZTCoreKit13ZTAchievementC" - } - ], - "usr": "s:Sa" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "complianceTestRetry", - "printedName": "complianceTestRetry(timeout:attempts:statusCode:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "right", + "printedName": "right", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "both", + "printedName": "both", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startListenMessages", - "printedName": "startListenMessages(onMessageReceived:onDataReceived:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> ()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data?) -> ()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopListenMessages", - "printedName": "stopListenMessages()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18stopListenMessagesyyF", - "mangledName": "$s9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLogFilesList", - "printedName": "getLogFilesList(date:)", - "children": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "senderSide", + "printedName": "senderSide", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resendSavedRequests", - "printedName": "resendSavedRequests()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", - "mangledName": "$s9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit5ZTApiC", - "mangledName": "$s9ZTCoreKit5ZTApiC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTCore", - "printedName": "ZTCore", - "children": [ - { - "kind": "Var", - "name": "version", - "printedName": "version", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C7versionSSvpZ", - "mangledName": "$s9ZTCoreKit0A0C7versionSSvpZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115116,48 +106136,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C7versionSSvgZ", - "mangledName": "$s9ZTCoreKit0A0C7versionSSvgZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "zcVersion", - "printedName": "zcVersion", + "name": "concernedSide", + "printedName": "concernedSide", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvp", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115166,97 +106193,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvg", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvs", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvM", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shared", - "printedName": "shared", + "name": "eventType", + "printedName": "eventType", "children": [ { "kind": "TypeNominal", - "name": "ZTCore", - "printedName": "ZTCoreKit.ZTCore", - "usr": "s:9ZTCoreKit0A0C" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C6sharedACvpZ", - "mangledName": "$s9ZTCoreKit0A0C6sharedACvpZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115265,49 +106250,55 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTCore", - "printedName": "ZTCoreKit.ZTCore", - "usr": "s:9ZTCoreKit0A0C" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C6sharedACvgZ", - "mangledName": "$s9ZTCoreKit0A0C6sharedACvgZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "bleManager", - "printedName": "bleManager", + "name": "content", + "printedName": "content", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", - "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115316,99 +106307,88 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", - "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "settings", - "printedName": "settings", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", - "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "name": "ZTRealtimeMessage", + "printedName": "ZTCoreKit.ZTRealtimeMessage", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", - "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sa" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { "kind": "Var", - "name": "appUserId", - "printedName": "appUserId", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], @@ -115421,61 +106401,54 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastCommand", - "printedName": "lastCommand", + "name": "acknowledgment", + "printedName": "acknowledgment", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115485,118 +106458,111 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "realtimeEvent", + "printedName": "realtimeEvent", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastCommandResponses", - "printedName": "lastCommandResponses", + "name": "realtimeMetrics", + "printedName": "realtimeMetrics", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115605,269 +106571,321 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "lastActivityId", - "printedName": "lastActivityId", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "algoMode", + "printedName": "algoMode", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "leftModuleCommandStatus", - "printedName": "leftModuleCommandStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", - "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "precisionMode", + "printedName": "precisionMode", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", - "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connectedDevice", - "printedName": "connectedDevice", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "consecutiveSteps", + "printedName": "consecutiveSteps", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastDeviceSerialNumber", - "printedName": "lastDeviceSerialNumber", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -115876,29 +106894,19 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -115907,91 +106915,181 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "lastDeviceQRCode", - "printedName": "lastDeviceQRCode", + "kind": "TypeDecl", + "name": "Acknowledgment", + "printedName": "Acknowledgment", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "command", + "printedName": "command", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastQRCode", - "printedName": "lastQRCode", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -116000,29 +107098,19 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -116031,916 +107119,702 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDfuInProgress", - "printedName": "isDfuInProgress", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvp", - "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvg", - "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "dfuDelegate", - "printedName": "dfuDelegate", + "kind": "TypeDecl", + "name": "Metrics", + "printedName": "Metrics", "children": [ { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "printedName": "ZTCoreKit.ZTActivityType?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuDelegate", - "printedName": "any ZTCoreKit.ZTDfuDelegate", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "metricId", + "printedName": "metricId", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuDelegate", - "printedName": "any ZTCoreKit.ZTDfuDelegate", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "metric", + "printedName": "metric", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "firmwareDfuState", - "printedName": "firmwareDfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", - "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", - "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentDfuState", - "printedName": "currentDfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "onDfuStateUpdated", - "printedName": "onDfuStateUpdated", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } + "AccessControl", + "RawDocComment" ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "init_kind": "Designated" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", - "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", - "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "onDfuUploadProgress", - "printedName": "onDfuUploadProgress", + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Float?", + "printedName": "Swift.UInt32?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", - "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Float?", + "printedName": "Swift.UInt32?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", - "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinishedLeft", - "printedName": "onDfuFinishedLeft", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "eventType", + "printedName": "eventType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinishedRight", - "printedName": "onDfuFinishedRight", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "motionId", + "printedName": "motionId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinished", - "printedName": "onDfuFinished", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "intensity", + "printedName": "intensity", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuCopied", - "printedName": "onDfuCopied", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "arguments", + "printedName": "arguments", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setup", - "printedName": "setup(apiKey:secret:appId:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearUser", - "printedName": "clearUser()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C9clearUseryyF", - "mangledName": "$s9ZTCoreKit0A0C9clearUseryyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateOrganization", - "printedName": "updateOrganization(code:appType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -116949,1352 +107823,1812 @@ "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", - "mangledName": "$s9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(for:timeout:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "EventType", + "printedName": "EventType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "motion", + "printedName": "motion", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "transition", + "printedName": "transition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } - ], - "usr": "s:Sq" + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", - "moduleName": "ZTCoreKit", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(for:timeout:deviceDiscovered:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" - } + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "MotionId", + "printedName": "MotionId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepForward", + "printedName": "stepForward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepBackward", + "printedName": "stepBackward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSideLeft", + "printedName": "stepSideLeft", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSideRight", + "printedName": "stepSideRight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepUp", + "printedName": "stepUp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepDown", + "printedName": "stepDown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(macAddress:timeout:deviceDiscovered:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "MotionIntensity", + "printedName": "MotionIntensity", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "undefined", + "printedName": "undefined", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Var", + "name": "low", + "printedName": "low", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopScan", - "printedName": "stopScan()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C8stopScanyyF", - "mangledName": "$s9ZTCoreKit0A0C8stopScanyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connectWithDevice", - "printedName": "connectWithDevice(_:timeout:isDfu:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Var", + "name": "medium", + "printedName": "medium", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(withCode:timeout:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", - "mangledName": "$s9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connectWithCode", - "printedName": "connectWithCode(_:timeout:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Var", + "name": "high", + "printedName": "high", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceInfo", - "printedName": "getDeviceInfo(code:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "tryReconnect", - "printedName": "tryReconnect(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "mangledName": "$s9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "checkConnectedDevice", - "printedName": "checkConnectedDevice(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "mangledName": "$s9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "Function", - "name": "setDeepSleepMode", - "printedName": "setDeepSleepMode()", + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDefaults", + "printedName": "ZTDefaults", + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTDefaultsC", + "mangledName": "$s9ZTCoreKit10ZTDefaultsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "ZTDefaultsKey", + "printedName": "ZTDefaultsKey", + "children": [ + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C16setDeepSleepModeyyKF", - "mangledName": "$s9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "AccessControl", - "RawDocComment" + "HasStorage", + "AccessControl" ], - "throwing": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "initiateBackgroundDFU", - "printedName": "initiateBackgroundDFU(isRestartRequired:isManualMode:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", - "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:9ZTCoreKit10ZTDefaultsC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTDefaults" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTTextCharacteristic", + "printedName": "ZTTextCharacteristic", + "children": [ { - "kind": "Function", - "name": "initiateBackgroundDFU", - "printedName": "initiateBackgroundDFU(path:isManualMode:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTTextCharacteristic", + "printedName": "ZTCoreKit.ZTTextCharacteristic", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", - "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "isFirmwareUpdateRequired", - "printedName": "isFirmwareUpdateRequired(firmwareRevision:completion:)", + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", - "mangledName": "$s9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityComment", + "printedName": "ZTActivityComment", + "children": [ { - "kind": "Function", - "name": "updateFirmware", - "printedName": "updateFirmware(packageType:isButtonless:)", + "kind": "Var", + "name": "id", + "printedName": "id", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDfuPackageType?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", - "mangledName": "$s9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateFirmware", - "printedName": "updateFirmware(path:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C14updateFirmware4pathySS_tF", - "mangledName": "$s9ZTCoreKit0A0C14updateFirmware4pathySS_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "dfuStateDidChange", - "printedName": "dfuStateDidChange(to:)", + "kind": "Var", + "name": "timeZone", + "printedName": "timeZone", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", - "mangledName": "$s9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuStateDidChangeTo:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuError", - "printedName": "dfuError(_:didOccurWithMessage:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", - "mangledName": "$s9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuError:didOccurWithMessage:", "declAttributes": [ - "Final", - "ObjC", + "HasInitialValue", + "HasStorage", "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuProgressDidChange", - "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", - "mangledName": "$s9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logWith", - "printedName": "logWith(_:message:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", - "mangledName": "$s9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", - "moduleName": "ZTCoreKit", - "objc_name": "logWith:message:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "checkDfuState", - "printedName": "checkDfuState()", + "kind": "Var", + "name": "activityId", + "printedName": "activityId", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C13checkDfuStateyyF", - "mangledName": "$s9ZTCoreKit0A0C13checkDfuStateyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isPendingEmbeddedActivity", - "printedName": "isPendingEmbeddedActivity(completion:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -118303,60 +109637,108 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", - "mangledName": "$s9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "pushPendingEmbeddedActivities", - "printedName": "pushPendingEmbeddedActivities(completion:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError?) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -118366,161 +109748,74 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", - "mangledName": "$s9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit0A0C", - "mangledName": "$s9ZTCoreKit0A0C", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DFUServiceDelegate", - "printedName": "DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP" - }, - { - "kind": "Conformance", - "name": "DFUProgressDelegate", - "printedName": "DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP" + ] }, - { - "kind": "Conformance", - "name": "LoggerDelegate", - "printedName": "LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTControlPointDfuCharacteristic", - "printedName": "ZTControlPointDfuCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -118530,52 +109825,113 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "mediaFiles", + "printedName": "mediaFiles", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "[ZTCoreKit.ZTMediaFile]?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -118588,56 +109944,123 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "[ZTCoreKit.ZTMediaFile]?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[ZTCoreKit.ZTMediaFile]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(service:characteristic:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTControlPointDfuCharacteristic", - "printedName": "ZTCoreKit.ZTControlPointDfuCharacteristic", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityComment?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "usr": "s:9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", "Required", @@ -118647,90 +110070,55 @@ }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", + "usr": "s:9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTJSONParameterEncoder", - "printedName": "ZTJSONParameterEncoder", - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTJSONParameterEncoderC", - "mangledName": "$s9ZTCoreKit22ZTJSONParameterEncoderC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTURLEncodedFormParameterEncoder", - "printedName": "ZTURLEncodedFormParameterEncoder", - "declKind": "Class", - "usr": "s:9ZTCoreKit32ZTURLEncodedFormParameterEncoderC", - "mangledName": "$s9ZTCoreKit32ZTURLEncodedFormParameterEncoderC", + "usr": "s:9ZTCoreKit17ZTActivityCommentC", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" + }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } ] }, { @@ -118745,8 +110133,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -118765,302 +110153,619 @@ }, { "kind": "TypeDecl", - "name": "ZTSettings", - "printedName": "ZTSettings", + "name": "ZTAlgoCommand", + "printedName": "ZTAlgoCommand", "children": [ { "kind": "Var", - "name": "shared", - "printedName": "shared", + "name": "getStatus", + "printedName": "getStatus", "children": [ { - "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvpZ", - "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvpZ", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "startNewChunk", + "printedName": "startNewChunk", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "changeProductMode", + "printedName": "changeProductMode", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvgZ", - "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "version", - "printedName": "version", + "name": "setPrecisionMode", + "printedName": "setPrecisionMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setMinimumNumberOfStrides", + "printedName": "setMinimumNumberOfStrides", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enableStreamingOfValues", + "printedName": "enableStreamingOfValues", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setDisconnectionDelay", + "printedName": "setDisconnectionDelay", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setUserInfo", + "printedName": "setUserInfo", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setDailyTimestamp", + "printedName": "setDailyTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "getPositionOfPods", + "printedName": "getPositionOfPods", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enableSpecificPacket", + "printedName": "enableSpecificPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "holdRealtimeStreaming", + "printedName": "holdRealtimeStreaming", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "getSingleTimeMetrics", + "printedName": "getSingleTimeMetrics", "children": [ { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "calibrateGravity", + "printedName": "calibrateGravity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" }, { "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "environment", - "printedName": "environment", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -119069,289 +110774,356 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTRealtimeMessageEventType", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "autoConnect", - "printedName": "autoConnect", + "name": "acknowledgment", + "printedName": "acknowledgment", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "realTimeEvent", + "printedName": "realTimeEvent", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "realTimeMetrics", + "printedName": "realTimeMetrics", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "enableEventLogging", - "printedName": "enableEventLogging", + "name": "warning", + "printedName": "warning", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "shouldObtaineMissedChunks", - "printedName": "shouldObtaineMissedChunks", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -119360,1759 +111132,2720 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTError", + "printedName": "ZTError", + "children": [ { "kind": "Var", - "name": "enableRawDataCheck", - "printedName": "enableRawDataCheck", + "name": "scanning", + "printedName": "scanning", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.ScanningError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "ble", + "printedName": "ble", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.BleError)", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "network", + "printedName": "network", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.NetworkError)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "shouldAutoResendData", - "printedName": "shouldAutoResendData", + "name": "store", + "printedName": "store", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.StoreError)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(errorDescription: Swift.String?, error: (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "activityDataSyncThreshold", - "printedName": "activityDataSyncThreshold", + "name": "decoding", + "printedName": "decoding", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.DecodableError)", + "children": [ + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activity", + "printedName": "activity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.ActivityError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.DfuError)", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "enableBackgroundDFU", - "printedName": "enableBackgroundDFU", + "kind": "TypeDecl", + "name": "Enums", + "printedName": "Enums", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "ScanningError", + "printedName": "ScanningError", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "cameraPermission", + "printedName": "cameraPermission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrongCode", + "printedName": "wrongCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "notLinkedUser", + "printedName": "notLinkedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "BleError", + "printedName": "BleError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "invalidState", + "printedName": "invalidState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "resetting", + "printedName": "resetting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "poweredOff", + "printedName": "poweredOff", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "notConnected", + "printedName": "notConnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableBackgroundDataStreaming", - "printedName": "enableBackgroundDataStreaming", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "notConnectedLeft", + "printedName": "notConnectedLeft", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "activityIsRunning", + "printedName": "activityIsRunning", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "busy", + "printedName": "busy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityChunkStoreForFreeMemory", - "printedName": "activityChunkStoreForFreeMemory", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "commandError", + "printedName": "commandError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityChunkRetryLimit", - "printedName": "activityChunkRetryLimit", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "checkFirmwareUpdatePeriod", - "printedName": "checkFirmwareUpdatePeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "FirmwareError", + "printedName": "FirmwareError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "differentFirmware", + "printedName": "differentFirmware", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "memsError", + "printedName": "memsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableAnalyticsData", - "printedName": "enableAnalyticsData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "leftNoConnected", + "printedName": "leftNoConnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "restartRequired", + "printedName": "restartRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "recoverFromDfu", + "printedName": "recoverFromDfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "minimumFwVersion", + "printedName": "minimumFwVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "autorestartBackgroundDfu", - "printedName": "autorestartBackgroundDfu", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "updateRequired", + "printedName": "updateRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "wrongProductType", + "printedName": "wrongProductType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "firstChunkIdIsGreater", + "printedName": "firstChunkIdIsGreater", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "getChunksOnApplicationDidBecomeActive", - "printedName": "getChunksOnApplicationDidBecomeActive", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "startTimeZero", + "printedName": "startTimeZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enablePacketsDataLogging", - "printedName": "enablePacketsDataLogging", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cachedPacketsBatchUploadSize", - "printedName": "cachedPacketsBatchUploadSize", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "DfuError", + "printedName": "DfuError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "noLeftModule", + "printedName": "noLeftModule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "noUpdate", + "printedName": "noUpdate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chunkDuration", - "printedName": "chunkDuration", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ + "kind": "Var", + "name": "wrongFile", + "printedName": "wrongFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "noStart", + "printedName": "noStart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "aborted", + "printedName": "aborted", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "abortedRight", + "printedName": "abortedRight", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "clear", - "printedName": "clear()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTSettingsC5clearyyF", - "mangledName": "$s9ZTCoreKit10ZTSettingsC5clearyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTSettingsC", - "mangledName": "$s9ZTCoreKit10ZTSettingsC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTClosureEventMonitor", - "printedName": "ZTClosureEventMonitor", - "children": [ - { - "kind": "Var", - "name": "sessionDidBecomeInvalidWithError", - "printedName": "sessionDidBecomeInvalidWithError", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "abortedLeft", + "printedName": "abortedLeft", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "lowBattery", + "printedName": "lowBattery", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "inProgress", + "printedName": "inProgress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "updateRequired", + "printedName": "updateRequired", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrongProductType", + "printedName": "wrongProductType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidReceiveChallenge", - "printedName": "taskDidReceiveChallenge", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", @@ -121121,2419 +113854,2080 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "StoreError", + "printedName": "StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", + "kind": "Var", + "name": "missing", + "printedName": "missing", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", + "kind": "Var", + "name": "invalid", + "printedName": "invalid", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Any?)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrong", + "printedName": "wrong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidSendBodyData", - "printedName": "taskDidSendBodyData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "ActivityError", + "printedName": "ActivityError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "notStarted", + "printedName": "notStarted", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "notStartedLeft", + "printedName": "notStartedLeft", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskNeedNewBodyStream", - "printedName": "taskNeedNewBodyStream", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "kind": "Var", + "name": "notStopped", + "printedName": "notStopped", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "modeNotSetActivityIsRunning", + "printedName": "modeNotSetActivityIsRunning", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskWillPerformHTTPRedirection", - "printedName": "taskWillPerformHTTPRedirection", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "kind": "Var", + "name": "previousNotStopped", + "printedName": "previousNotStopped", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", + "kind": "Var", + "name": "previousRestoring", + "printedName": "previousRestoring", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", + "kind": "Var", + "name": "noUserParametersSet", + "printedName": "noUserParametersSet", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidFinishCollectingMetrics", - "printedName": "taskDidFinishCollectingMetrics", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "kind": "Var", + "name": "rawDataFlowIsRunning", + "printedName": "rawDataFlowIsRunning", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", + "kind": "Var", + "name": "invalidMobilityScanResults", + "printedName": "invalidMobilityScanResults", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", + "kind": "Var", + "name": "outsideActivityDetected", + "printedName": "outsideActivityDetected", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidComplete", - "printedName": "taskDidComplete", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "anomalyDetected", + "printedName": "anomalyDetected", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "mobility", + "printedName": "mobility", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + }, + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvg", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "NetworkError", + "printedName": "NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "userLinkError", + "printedName": "userLinkError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskIsWaitingForConnectivity", - "printedName": "taskIsWaitingForConnectivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "kind": "Var", + "name": "inaccessible", + "printedName": "inaccessible", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "urlError", + "printedName": "urlError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "URLError", + "printedName": "Foundation.URLError", + "usr": "s:10Foundation8URLErrorV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "generalError", + "printedName": "generalError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "dataTaskDidReceiveData", - "printedName": "dataTaskDidReceiveData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "kind": "Var", + "name": "noResponse", + "printedName": "noResponse", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", + "kind": "Var", + "name": "invalidResponseType", + "printedName": "invalidResponseType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", + "kind": "Var", + "name": "noResponseData", + "printedName": "noResponseData", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "HTTPURLResponse", + "printedName": "Foundation.HTTPURLResponse", + "usr": "c:objc(cs)NSHTTPURLResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "dataTaskWillCacheResponse", - "printedName": "dataTaskWillCacheResponse", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "kind": "Var", + "name": "endpointError", + "printedName": "endpointError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPURLResponse", + "printedName": "Foundation.HTTPURLResponse", + "usr": "c:objc(cs)NSHTTPURLResponse" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", + "kind": "Var", + "name": "custom", + "printedName": "custom", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "Tuple", + "printedName": "(errorCode: Swift.Int?, errorDescription: Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvs", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "downloadTaskDidFinishDownloadingToURL", - "printedName": "downloadTaskDidFinishDownloadingToURL", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "TypeDecl", + "name": "DecodableError", + "printedName": "DecodableError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "kind": "Var", + "name": "invalidKeyPath", + "printedName": "invalidKeyPath", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "Var", + "name": "emptyKeyPath", + "printedName": "emptyKeyPath", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "Var", + "name": "invalidJSON", + "printedName": "invalidJSON", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "downloadTaskDidWriteData", - "printedName": "downloadTaskDidWriteData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + }, + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvs", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "downloadTaskDidResumeAtOffset", - "printedName": "downloadTaskDidResumeAtOffset", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", + "printedName": "(any Swift.Error)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvp", + "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -123543,208 +115937,30 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", + "printedName": "(any Swift.Error)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvg", + "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Function", - "name": "binary", - "printedName": "binary(with:toLength:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE6binary4with8toLengthS2S_SitF", - "mangledName": "$sSS9ZTCoreKitE6binary4with8toLengthS2S_SitF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "fromBase64", - "printedName": "fromBase64", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { "kind": "TypeNominal", @@ -123762,9 +115978,13 @@ } ], "declKind": "Var", - "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvp", - "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvp", + "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "isFromExtension": true, "accessors": [ { @@ -123788,18 +116008,63 @@ } ], "declKind": "Accessor", - "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvg", - "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvg", + "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ { "kind": "Var", - "name": "toBase64", - "printedName": "toBase64", + "name": "hex", + "printedName": "hex", "children": [ { "kind": "TypeNominal", @@ -123809,8 +116074,8 @@ } ], "declKind": "Var", - "usr": "s:SS9ZTCoreKitE8toBase64SSvp", - "mangledName": "$sSS9ZTCoreKitE8toBase64SSvp", + "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvp", + "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvp", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessors": [ @@ -123827,9 +116092,11 @@ } ], "declKind": "Accessor", - "usr": "s:SS9ZTCoreKitE8toBase64SSvg", - "mangledName": "$sSS9ZTCoreKitE8toBase64SSvg", + "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvg", + "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 == Swift.UInt8>", + "sugared_genericSig": "", "isFromExtension": true, "accessorKind": "get" } @@ -123837,250 +116104,328 @@ }, { "kind": "Function", - "name": "substring", - "printedName": "substring(from:to:)", + "name": "has", + "printedName": "has(peripheral:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE9substring4from2toSSSi_SitF", - "mangledName": "$sSS9ZTCoreKitE9substring4from2toSSSi_SitF", + "usr": "s:Sa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", + "mangledName": "$sSa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "substring", - "printedName": "substring(range:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "_NSRange", - "printedName": "Foundation._NSRange", - "usr": "c:@S@_NSRange" - } + "genericSig": "<τ_0_0 where τ_0_0 : CoreBluetooth.CBPeripheral>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", - "mangledName": "$sSS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", - "moduleName": "ZTCoreKit", "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "matches", - "printedName": "matches(regex:)", + "name": "chunked", + "printedName": "chunked(into:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE7matches5regexSaySSGSS_tF", - "mangledName": "$sSS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "usr": "s:Sa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", + "mangledName": "$sSa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "random", - "printedName": "random(length:)", + "name": "stringify", + "printedName": "stringify()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE6random6lengthSSSi_tFZ", - "mangledName": "$sSS9ZTCoreKitE6random6lengthSSSi_tFZ", + "usr": "s:Sa9ZTCoreKitSSRszlE9stringifySSyF", + "mangledName": "$sSa9ZTCoreKitSSRszlE9stringifySSyF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 == Swift.String>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "split", - "printedName": "split(usingRegex:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", - "mangledName": "$sSS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "serialNumber", - "printedName": "serialNumber()", - "children": [ + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE12serialNumberSSyF", - "mangledName": "$sSS9ZTCoreKitE12serialNumberSSyF", + "declKind": "Constructor", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "fileName", - "printedName": "fileName()", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONArray:context:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE8fileNameSSyF", - "mangledName": "$sSS9ZTCoreKitE8fileNameSSyF", + "declKind": "Constructor", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "incrementedMacAddress", - "printedName": "incrementedMacAddress()", + "name": "toJSON", + "printedName": "toJSON()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE21incrementedMacAddressSSyF", - "mangledName": "$sSS9ZTCoreKitE21incrementedMacAddressSSyF", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "toJSONString", + "printedName": "toJSONString(prettyPrint:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", - "mangledName": "$sSS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", + "usr": "s:Sa", + "mangledName": "$sSa", "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ "EagerMove", "Frozen" @@ -124089,174 +116434,168 @@ "conformances": [ { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" }, { "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", + "name": "_Buffer", + "printedName": "_Buffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" } ] } ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" }, { "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", "children": [ { "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" } ] } ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + "usr": "s:Sk", + "mangledName": "$sSk" }, { "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", + "name": "MutableCollection", + "printedName": "MutableCollection", "children": [ { "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" }, { "kind": "Conformance", @@ -124270,9 +116609,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124283,9 +116621,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] }, @@ -124296,9 +116634,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] }, @@ -124309,17 +116654,17 @@ "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:SI" + "usr": "s:Sn" } ] } @@ -124339,9 +116684,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124352,9 +116696,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] }, @@ -124365,9 +116709,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" } ] }, @@ -124378,9 +116737,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] }, @@ -124391,17 +116757,17 @@ "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:SI" + "usr": "s:Sn" } ] } @@ -124421,9 +116787,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124434,9 +116799,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" } ] } @@ -124446,158 +116826,477 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" }, { "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] - }, + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" } ] - }, + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ { "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", "children": [ { "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" } ] - }, + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ { "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" } ] } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" }, { "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "name": "DataProtocol", + "printedName": "DataProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", + "name": "Regions", + "printedName": "Regions", "children": [ { "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" } ] } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" }, { "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "name": "AlamofireExtended", + "printedName": "AlamofireExtended", "children": [ { "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "name": "ExtendedType", + "printedName": "ExtendedType", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ] } ], - "usr": "s:Sm", - "mangledName": "$sSm" + "usr": "s:9Alamofire0A8ExtendedP", + "mangledName": "$s9Alamofire0A8ExtendedP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBCentralManager", + "printedName": "CBCentralManager", + "children": [ + { + "kind": "Function", + "name": "retrievePeripheral", + "printedName": "retrievePeripheral(withIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" + "kind": "Function", + "name": "retrieveConnectedPeripherals", + "printedName": "retrieveConnectedPeripherals(withServices:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any ZTCoreKit.ZTCBPeripheralProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Function", + "name": "connect", + "printedName": "connect(_:options:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelPeripheralConnection", + "printedName": "cancelPeripheralConnection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)CBCentralManager", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBCentralManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBManager", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBManager", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", @@ -124608,10 +117307,38 @@ }, { "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ZTCBCentralManagerProtocol", + "printedName": "ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP" } ] }, @@ -124620,6 +117347,84 @@ "name": "Data", "printedName": "Data", "children": [ + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvg", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "macAddress", @@ -125072,397 +117877,82 @@ } ], "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Mutating", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "append", - "printedName": "append(unsignedLong:bigEndian:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Mutating", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "dataObject", - "printedName": "dataObject(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subdata", - "printedName": "subdata(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeExpression, τ_0_0.Bound == Swift.Int>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "object", - "printedName": "object(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "crc32", - "printedName": "crc32(checksum:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE5crc328checksums6UInt32VAH_tF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE5crc328checksums6UInt32VAH_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "compress", - "printedName": "compress(size:bufferSize:provider:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "typeAttributes": [ - "noescape" - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE8compress4size10bufferSize8provider8consumers6UInt32VSi_SiACSi_SitKXEyACKXEtKFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE8compress4size10bufferSize8provider8consumers6UInt32VSi_SiACSi_SitKXEyACKXEtKFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decompress", - "printedName": "decompress(size:bufferSize:skipCRC32:provider:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "typeAttributes": [ - "noescape" - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE10decompress4size10bufferSize9skipCRC328provider8consumers6UInt32VSi_SiSbACSi_SitKXEyACKXEtKFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE10decompress4size10bufferSize9skipCRC328provider8consumers6UInt32VSi_SiSbACSi_SitKXEyACKXEtKFZ", + "usr": "s:10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "AccessControl", + "Mutating", "RawDocComment" ], "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, { - "kind": "Var", - "name": "hexString", - "printedName": "hexString", + "kind": "Function", + "name": "append", + "printedName": "append(unsignedLong:bigEndian:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvp", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", "moduleName": "ZTCoreKit", "declAttributes": [ + "Mutating", "RawDocComment" ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "dataObject", + "printedName": "dataObject(at:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvg", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } - ] + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "subdata", + "printedName": "subdata(in:)", "children": [ { "kind": "TypeNominal", @@ -125472,25 +117962,42 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeExpression, τ_0_0.Bound == Swift.Int>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "object", + "printedName": "object(at:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "usr": "s:10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "isFromExtension": true, "funcSelfKind": "NonMutating" } @@ -125782,936 +118289,27 @@ "kind": "TypeNominal", "name": "Int", "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvp", - "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvg", - "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Numeric>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:Sj", - "mangledName": "$sSj", - "moduleName": "Swift", - "genericSig": "<τ_0_0 : Swift.AdditiveArithmetic, τ_0_0 : Swift.ExpressibleByIntegerLiteral, τ_0_0.Magnitude : Swift.Comparable, τ_0_0.Magnitude : Swift.Numeric>", - "sugared_genericSig": "", - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UserDefaults", - "printedName": "UserDefaults", - "children": [ - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", @@ -126719,74 +118317,47 @@ "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sn" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", "children": [ { "kind": "TypeNominal", @@ -126795,106 +118366,166 @@ "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - }, + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt8", + "printedName": "UInt8", + "children": [ + { + "kind": "Var", + "name": "bits", + "printedName": "bits", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sa" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", + "declKind": "Var", + "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvp", + "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], "isFromExtension": true, "accessors": [ { @@ -126904,1258 +118535,1252 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvg", + "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "hexValue", + "printedName": "hexValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvp", + "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvg", + "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, - "accessorKind": "set" - }, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:s5UInt8V", + "mangledName": "$ss5UInt8V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Words", + "printedName": "Swift.UInt8.Words", + "usr": "s:s5UInt8V5WordsV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sz", + "mangledName": "$sSz" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + ] } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD2Storage", + "printedName": "Swift.UInt8.SIMD2Storage", + "usr": "s:s5UInt8V12SIMD2StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD4Storage", + "printedName": "Swift.UInt8.SIMD4Storage", + "usr": "s:s5UInt8V12SIMD4StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" + "name": "SIMD8Storage", + "printedName": "Swift.UInt8.SIMD8Storage", + "usr": "s:s5UInt8V12SIMD8StorageV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" + "name": "SIMD16Storage", + "printedName": "Swift.UInt8.SIMD16Storage", + "usr": "s:s5UInt8V13SIMD16StorageV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD32Storage", + "printedName": "Swift.UInt8.SIMD32Storage", + "usr": "s:s5UInt8V13SIMD32StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, + "name": "SIMD64Storage", + "printedName": "Swift.UInt8.SIMD64Storage", + "usr": "s:s5UInt8V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "usr": "s:10Starscream13MyWSArrayTypeP", + "mangledName": "$s10Starscream13MyWSArrayTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt16", + "printedName": "UInt16", + "children": [ + { + "kind": "Function", + "name": "toByteArray", + "printedName": "toByteArray(size:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "declKind": "Func", + "usr": "s:s6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "mangledName": "$ss6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:s6UInt16V", + "mangledName": "$ss6UInt16V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Words", + "printedName": "Swift.UInt16.Words", + "usr": "s:s6UInt16V5WordsV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD2Storage", + "printedName": "Swift.UInt16.SIMD2Storage", + "usr": "s:s6UInt16V12SIMD2StorageV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD4Storage", + "printedName": "Swift.UInt16.SIMD4Storage", + "usr": "s:s6UInt16V12SIMD4StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD8Storage", + "printedName": "Swift.UInt16.SIMD8Storage", + "usr": "s:s6UInt16V12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, + "name": "SIMD16Storage", + "printedName": "Swift.UInt16.SIMD16Storage", + "usr": "s:s6UInt16V13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD32Storage", + "printedName": "Swift.UInt16.SIMD32Storage", + "usr": "s:s6UInt16V13SIMD32StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD64Storage", + "printedName": "Swift.UInt16.SIMD64Storage", + "usr": "s:s6UInt16V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt32", + "printedName": "UInt32", + "children": [ + { + "kind": "Function", + "name": "toByteArray", + "printedName": "toByteArray(size:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "declKind": "Func", + "usr": "s:s6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "mangledName": "$ss6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:s6UInt32V", + "mangledName": "$ss6UInt32V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, + "name": "Words", + "printedName": "Swift.UInt32.Words", + "usr": "s:s6UInt32V5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SIMD2Storage", + "printedName": "Swift.UInt32.SIMD2Storage", + "usr": "s:s6UInt32V12SIMD2StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD4Storage", + "printedName": "Swift.UInt32.SIMD4Storage", + "usr": "s:s6UInt32V12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SIMD8Storage", + "printedName": "Swift.UInt32.SIMD8Storage", + "usr": "s:s6UInt32V12SIMD8StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(forKey:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD16Storage", + "printedName": "Swift.UInt32.SIMD16Storage", + "usr": "s:s6UInt32V13SIMD16StorageV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clear", - "printedName": "clear(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.UInt32.SIMD32Storage", + "usr": "s:s6UInt32V13SIMD32StorageV" + } + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.UInt32.SIMD64Storage", + "usr": "s:s6UInt32V13SIMD64StorageV" + } + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyySSF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyySSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Function", - "name": "clear", - "printedName": "clear(_:)", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "clearAll", - "printedName": "clearAll()", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSUserDefaults", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSUserDefaults", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" } ] }, @@ -128584,191 +120209,279 @@ }, { "kind": "TypeDecl", - "name": "UInt8", - "printedName": "UInt8", - "children": [ + "name": "Float", + "printedName": "Float", + "declKind": "Struct", + "usr": "s:Sf", + "mangledName": "$sSf", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "bits", - "printedName": "bits", + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvp", - "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } - ], - "declKind": "Accessor", - "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvg", - "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { - "kind": "Var", - "name": "hexValue", - "printedName": "hexValue", + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvp", - "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ], - "declKind": "Accessor", - "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvg", - "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } - ] - } - ], - "declKind": "Struct", - "usr": "s:s5UInt8V", - "mangledName": "$ss5UInt8V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" }, { "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" }, { "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", + "name": "Numeric", + "printedName": "Numeric", "children": [ { "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt8.Words", - "usr": "s:s5UInt8V5WordsV" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ] } ], - "usr": "s:Sz", - "mangledName": "$sSz" + "usr": "s:Sj", + "mangledName": "$sSj" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", "children": [ { "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ] } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -128782,9 +120495,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ] } @@ -128794,40 +120507,211 @@ }, { "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Float.SIMD2Storage", + "usr": "s:Sf12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Float.SIMD4Storage", + "usr": "s:Sf12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Float.SIMD8Storage", + "usr": "s:Sf12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Float.SIMD16Storage", + "usr": "s:Sf13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Float.SIMD32Storage", + "usr": "s:Sf13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Float.SIMD64Storage", + "usr": "s:Sf13SIMD64StorageV" } ] } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Var", + "name": "milliseconds", + "printedName": "milliseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvp", + "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvg", + "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { "kind": "Conformance", "name": "DataConvertible", @@ -128858,24 +120742,210 @@ }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_StringElement", - "printedName": "_StringElement", - "usr": "s:s14_StringElementP", - "mangledName": "$ss14_StringElementP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" }, { "kind": "Conformance", @@ -128905,6 +120975,35 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, { "kind": "Conformance", "name": "SIMDScalar", @@ -128917,9 +121016,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ] }, @@ -128931,8 +121030,8 @@ { "kind": "TypeNominal", "name": "SIMD2Storage", - "printedName": "Swift.UInt8.SIMD2Storage", - "usr": "s:s5UInt8V12SIMD2StorageV" + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" } ] }, @@ -128944,8 +121043,8 @@ { "kind": "TypeNominal", "name": "SIMD4Storage", - "printedName": "Swift.UInt8.SIMD4Storage", - "usr": "s:s5UInt8V12SIMD4StorageV" + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" } ] }, @@ -128957,8 +121056,8 @@ { "kind": "TypeNominal", "name": "SIMD8Storage", - "printedName": "Swift.UInt8.SIMD8Storage", - "usr": "s:s5UInt8V12SIMD8StorageV" + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" } ] }, @@ -128970,8 +121069,8 @@ { "kind": "TypeNominal", "name": "SIMD16Storage", - "printedName": "Swift.UInt8.SIMD16Storage", - "usr": "s:s5UInt8V13SIMD16StorageV" + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" } ] }, @@ -128983,8 +121082,8 @@ { "kind": "TypeNominal", "name": "SIMD32Storage", - "printedName": "Swift.UInt8.SIMD32Storage", - "usr": "s:s5UInt8V13SIMD32StorageV" + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" } ] }, @@ -128996,8 +121095,8 @@ { "kind": "TypeNominal", "name": "SIMD64Storage", - "printedName": "Swift.UInt8.SIMD64Storage", - "usr": "s:s5UInt8V13SIMD64StorageV" + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" } ] } @@ -129017,9 +121116,9 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ] } @@ -129053,27 +121152,61 @@ }, { "kind": "TypeDecl", - "name": "UInt16", - "printedName": "UInt16", + "name": "String", + "printedName": "String", "children": [ { "kind": "Function", - "name": "toByteArray", - "printedName": "toByteArray(size:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "mangledName": "$sSS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "binary", + "printedName": "binary(with:toLength:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" }, { "kind": "TypeNominal", @@ -129084,159 +121217,323 @@ } ], "declKind": "Func", - "usr": "s:s6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "mangledName": "$ss6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "usr": "s:SS9ZTCoreKitE6binary4with8toLengthS2S_SitF", + "mangledName": "$sSS9ZTCoreKitE6binary4with8toLengthS2S_SitF", "moduleName": "ZTCoreKit", "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:s6UInt16V", - "mangledName": "$ss6UInt16V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", + "kind": "Var", + "name": "fromBase64", + "printedName": "fromBase64", "children": [ { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt16.Words", - "usr": "s:s6UInt16V5WordsV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "declKind": "Var", + "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvp", + "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvg", + "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "kind": "Var", + "name": "toBase64", + "printedName": "toBase64", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS9ZTCoreKitE8toBase64SSvp", + "mangledName": "$sSS9ZTCoreKitE8toBase64SSvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:SS9ZTCoreKitE8toBase64SSvg", + "mangledName": "$sSS9ZTCoreKitE8toBase64SSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "substring", + "printedName": "substring(from:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE9substring4from2toSSSi_SitF", + "mangledName": "$sSS9ZTCoreKitE9substring4from2toSSSi_SitF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Function", + "name": "substring", + "printedName": "substring(range:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_NSRange", + "printedName": "Foundation._NSRange", + "usr": "c:@S@_NSRange" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", + "mangledName": "$sSS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "matches", + "printedName": "matches(regex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sx", - "mangledName": "$sSx" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "mangledName": "$sSS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "kind": "Function", + "name": "random", + "printedName": "random(length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE6random6lengthSSSi_tFZ", + "mangledName": "$sSS9ZTCoreKitE6random6lengthSSSi_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "kind": "Function", + "name": "split", + "printedName": "split(usingRegex:)", "children": [ { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", + "mangledName": "$sSS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "kind": "Function", + "name": "serialNumber", + "printedName": "serialNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE12serialNumberSSyF", + "mangledName": "$sSS9ZTCoreKitE12serialNumberSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fileName", + "printedName": "fileName()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE8fileNameSSyF", + "mangledName": "$sSS9ZTCoreKitE8fileNameSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "incrementedMacAddress", + "printedName": "incrementedMacAddress()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE21incrementedMacAddressSSyF", + "mangledName": "$sSS9ZTCoreKitE21incrementedMacAddressSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ { "kind": "Conformance", "name": "DataConvertible", @@ -129258,6 +121555,20 @@ "usr": "s:SE", "mangledName": "$sSE" }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, { "kind": "Conformance", "name": "CustomReflectable", @@ -129274,17 +121585,17 @@ }, { "kind": "Conformance", - "name": "_StringElement", - "printedName": "_StringElement", - "usr": "s:s14_StringElementP", - "mangledName": "$ss14_StringElementP" + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" }, { "kind": "Conformance", @@ -129295,541 +121606,430 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" }, { "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", "children": [ { "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int16", - "printedName": "Swift.Int16", - "usr": "s:s5Int16V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.UInt16.SIMD2Storage", - "usr": "s:s6UInt16V12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.UInt16.SIMD4Storage", - "usr": "s:s6UInt16V12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt16.SIMD8Storage", - "usr": "s:s6UInt16V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt16.SIMD16Storage", - "usr": "s:s6UInt16V13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "name": "StringLiteralType", + "printedName": "StringLiteralType", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt16.SIMD32Storage", - "usr": "s:s6UInt16V13SIMD32StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ { "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt16.SIMD64Storage", - "usr": "s:s6UInt16V13SIMD64StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, { "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", "children": [ { "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", "children": [ { "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UInt32", - "printedName": "UInt32", - "children": [ - { - "kind": "Function", - "name": "toByteArray", - "printedName": "toByteArray(size:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } - ], - "usr": "s:Sa" + ] }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:s6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "mangledName": "$ss6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:s6UInt32V", - "mangledName": "$ss6UInt32V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ { "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt32.Words", - "usr": "s:s6UInt32V5WordsV" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + }, { "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" } ] } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "usr": "s:SK", + "mangledName": "$sSK" }, { "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "name": "Collection", + "printedName": "Collection", "children": [ { "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + }, { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", + "name": "Sequence", + "printedName": "Sequence", "children": [ { "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] }, { "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.UInt32.SIMD2Storage", - "usr": "s:s6UInt32V12SIMD2StorageV" + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" } ] - }, + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ { "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "name": "UTF8View", + "printedName": "UTF8View", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.UInt32.SIMD4Storage", - "usr": "s:s6UInt32V12SIMD4StorageV" + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "name": "UTF16View", + "printedName": "UTF16View", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt32.SIMD8Storage", - "usr": "s:s6UInt32V12SIMD8StorageV" + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt32.SIMD16Storage", - "usr": "s:s6UInt32V13SIMD16StorageV" + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt32.SIMD32Storage", - "usr": "s:s6UInt32V13SIMD32StorageV" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] - }, + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ { "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "name": "StringInterpolation", + "printedName": "StringInterpolation", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt32.SIMD64Storage", - "usr": "s:s6UInt32V13SIMD64StorageV" + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" } ] } ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" }, { "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" }, { "kind": "Conformance", @@ -129843,9 +122043,9 @@ "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" } ] } @@ -129855,10 +122055,91 @@ }, { "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "URLConvertible", + "printedName": "URLConvertible", + "usr": "s:9Alamofire14URLConvertibleP", + "mangledName": "$s9Alamofire14URLConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBService", + "printedName": "CBService", + "declKind": "Class", + "usr": "c:objc(cs)CBService", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBService", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBAttribute", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBAttribute", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -130169,976 +122450,170 @@ "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt64.SIMD8Storage", - "usr": "s:s6UInt64V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt64.SIMD16Storage", - "usr": "s:s6UInt64V13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt64.SIMD32Storage", - "usr": "s:s6UInt64V13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt64.SIMD64Storage", - "usr": "s:s6UInt64V13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "children": [ - { - "kind": "Var", - "name": "milliseconds", - "printedName": "milliseconds", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvp", - "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvg", - "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "children": [ - { - "kind": "Var", - "name": "hex", - "printedName": "hex", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvp", - "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvg", - "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == Swift.UInt8>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "has", - "printedName": "has(peripheral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", - "mangledName": "$sSa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : CoreBluetooth.CBPeripheral>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "chunked", - "printedName": "chunked(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", - "mangledName": "$sSa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stringify", - "printedName": "stringify()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitSSRszlE9stringifySSyF", - "mangledName": "$sSa9ZTCoreKitSSRszlE9stringifySSyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == Swift.String>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "SIMD8Storage", + "printedName": "Swift.UInt64.SIMD8Storage", + "usr": "s:s6UInt64V12SIMD8StorageV" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "SIMD16Storage", + "printedName": "Swift.UInt64.SIMD16Storage", + "usr": "s:s6UInt64V13SIMD16StorageV" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONArray:context:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD32Storage", + "printedName": "Swift.UInt64.SIMD32Storage", + "usr": "s:s6UInt64V13SIMD32StorageV" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "SIMD64Storage", + "printedName": "Swift.UInt64.SIMD64Storage", + "usr": "s:s6UInt64V13SIMD64StorageV" } - ], - "usr": "s:Sa" - }, + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Constructor", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "init_kind": "Designated" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Dictionary", + "printedName": "Dictionary", + "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(prettyPrint:)", + "name": "merge", + "printedName": "merge(dict:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", + "usr": "s:SD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", + "mangledName": "$sSD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", "isFromExtension": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", + "usr": "s:SD", + "mangledName": "$sSD", "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", "declAttributes": [ "EagerMove", "Frozen" ], "isExternal": true, "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, { "kind": "Conformance", "name": "Equatable", @@ -131148,37 +122623,22 @@ }, { "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", "children": [ { "kind": "TypeWitness", @@ -131187,73 +122647,44 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:s10ArraySliceV" + ] } ] }, { "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" } ] } ], - "usr": "s:Sk", - "mangledName": "$sSk" + "usr": "s:ST", + "mangledName": "$sST" }, { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "name": "Collection", + "printedName": "Collection", "children": [ { "kind": "TypeWitness", @@ -131262,75 +122693,46 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:s10ArraySliceV" + ] } ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ + }, { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Index", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", + "usr": "s:SD5IndexV" } ] }, { "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" } ] }, @@ -131341,16 +122743,29 @@ "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Slice", + "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], - "usr": "s:s10ArraySliceV" + "usr": "s:s5SliceV" } ] }, @@ -131361,33 +122776,45 @@ "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], - "usr": "s:Sn" + "usr": "s:SI" } ] } ], - "usr": "s:SK", - "mangledName": "$sSK" + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", "children": [ { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "Key", + "printedName": "Key", "children": [ { "kind": "TypeNominal", @@ -131398,195 +122825,524 @@ }, { "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "name": "Value", + "printedName": "Value", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ] - }, + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" } ] - }, + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Date", + "printedName": "Date", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apiFormat", + "printedName": "apiFormat", + "children": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logFormat", + "printedName": "logFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DateV", + "mangledName": "$s10Foundation4DateV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", "children": [ { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "ReferenceType", + "printedName": "ReferenceType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } ] - }, + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } ] } ], - "usr": "s:ST", - "mangledName": "$sST" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ] } ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" + "usr": "s:Sx", + "mangledName": "$sSx" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBCharacteristic", + "printedName": "CBCharacteristic", + "children": [ + { + "kind": "Function", + "name": "notifyValue", + "printedName": "notifyValue(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE9readValueyyF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE9readValueyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(_:writeType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristicWriteType", + "printedName": "CoreBluetooth.CBCharacteristicWriteType", + "usr": "c:@E@CBCharacteristicWriteType" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)CBCharacteristic", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBCharacteristic", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBAttribute", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBAttribute", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", @@ -131601,6 +123357,38 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBPeripheral", + "printedName": "CBPeripheral", + "declKind": "Class", + "usr": "c:objc(cs)CBPeripheral", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBPeripheral", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBPeer", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBPeer", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -131611,551 +123399,619 @@ }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "ZTCBPeripheralProtocol", + "printedName": "ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvp", + "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvg", + "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Numeric>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, + ] + } + ], + "declKind": "Protocol", + "usr": "s:Sj", + "mangledName": "$sSj", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.AdditiveArithmetic, τ_0_0 : Swift.ExpressibleByIntegerLiteral, τ_0_0.Magnitude : Swift.Comparable, τ_0_0.Magnitude : Swift.Numeric>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UserDefaults", + "printedName": "UserDefaults", + "children": [ + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ], - "usr": "s:s15CollectionOfOneV" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ - { - "kind": "Function", - "name": "merge", - "printedName": "merge(dict:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:SD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", - "mangledName": "$sSD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "EagerMove", - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" - }, + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_1" + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:s5SliceV" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SI" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Date", - "printedName": "Date", - "children": [ - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -132169,77 +124025,158 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", "moduleName": "ZTCoreKit", + "implicit": true, "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "apiFormat", - "printedName": "apiFormat", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "logFormat", - "printedName": "logFormat", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -132253,2298 +124190,1366 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DateV", - "mangledName": "$s10Foundation4DateV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + }, { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bundle", - "printedName": "Bundle", - "declKind": "Class", - "usr": "c:objc(cs)NSBundle", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSBundle", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBCharacteristic", - "printedName": "CBCharacteristic", - "children": [ - { - "kind": "Function", - "name": "notifyValue", - "printedName": "notifyValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "readValue", - "printedName": "readValue()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE9readValueyyF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE9readValueyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "write", - "printedName": "write(_:writeType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristicWriteType", - "printedName": "CoreBluetooth.CBCharacteristicWriteType", - "usr": "c:@E@CBCharacteristicWriteType" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CBCharacteristic", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBCharacteristic", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBAttribute", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBAttribute", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "FileManager", - "printedName": "FileManager", - "children": [ - { - "kind": "Function", - "name": "zipItem", - "printedName": "zipItem(at:to:shouldKeepParent:compressionMethod:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So13NSFileManagerC9ZTCoreKitE7zipItem2at2to16shouldKeepParent17compressionMethod8progressy10Foundation3URLV_ALSbAC013ZTCompressionM0OSo10NSProgressCSgtKF", - "mangledName": "$sSo13NSFileManagerC9ZTCoreKitE7zipItem2at2to16shouldKeepParent17compressionMethod8progressy10Foundation3URLV_ALSbAC013ZTCompressionM0OSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "unzipItem", - "printedName": "unzipItem(at:to:skipCRC32:progress:preferredEncoding:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Progress?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So13NSFileManagerC9ZTCoreKitE9unzipItem2at2to9skipCRC328progress17preferredEncodingy10Foundation3URLV_ALSbSo10NSProgressCSgSSAJE0M0VSgtKF", - "mangledName": "$sSo13NSFileManagerC9ZTCoreKitE9unzipItem2at2to9skipCRC328progress17preferredEncodingy10Foundation3URLV_ALSbSo10NSProgressCSgSSAJE0M0VSgtKF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSFileManager", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSFileManager", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URL", - "printedName": "URL", - "children": [ - { - "kind": "Function", - "name": "isContained", - "printedName": "isContained(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } + "AccessControl" ], - "declKind": "Func", - "usr": "s:10Foundation3URLV9ZTCoreKitE11isContained2inSbAC_tF", - "mangledName": "$s10Foundation3URLV9ZTCoreKitE11isContained2inSbAC_tF", - "moduleName": "ZTCoreKit", "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10Foundation3URLV", - "mangledName": "$s10Foundation3URLV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSURL", - "printedName": "Foundation.NSURL", - "usr": "c:objc(cs)NSURL" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSURL", - "printedName": "Foundation.NSURL", - "usr": "c:objc(cs)NSURL" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByFileReferenceLiteral", - "printedName": "_ExpressibleByFileReferenceLiteral", - "usr": "s:s34_ExpressibleByFileReferenceLiteralP", - "mangledName": "$ss34_ExpressibleByFileReferenceLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBService", - "printedName": "CBService", - "declKind": "Class", - "usr": "c:objc(cs)CBService", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBService", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBAttribute", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBAttribute", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBCentralManager", - "printedName": "CBCentralManager", - "children": [ - { - "kind": "Function", - "name": "retrievePeripheral", - "printedName": "retrievePeripheral(withIdentifier:)", - "children": [ + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "retrieveConnectedPeripherals", - "printedName": "retrieveConnectedPeripherals(withServices:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[any ZTCoreKit.ZTCBPeripheralProtocol]", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:Sa" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "cancelPeripheralConnection", - "printedName": "cancelPeripheralConnection(_:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CBCentralManager", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBCentralManager", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBManager", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBManager", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "ZTCBCentralManagerProtocol", - "printedName": "ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBPeripheral", - "printedName": "CBPeripheral", - "declKind": "Class", - "usr": "c:objc(cs)CBPeripheral", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBPeripheral", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBPeer", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBPeer", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "ZTCBPeripheralProtocol", - "printedName": "ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URLRequest", - "printedName": "URLRequest", - "declKind": "Struct", - "usr": "s:10Foundation10URLRequestV", - "mangledName": "$s10Foundation10URLRequestV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSURLRequest", - "printedName": "Foundation.NSURLRequest", - "usr": "c:objc(cs)NSURLRequest" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "NSURLRequest", - "printedName": "Foundation.NSURLRequest", - "usr": "c:objc(cs)NSURLRequest" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecTrust", - "printedName": "SecTrust", - "declKind": "Class", - "usr": "c:@T@SecTrustRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecPolicy", - "printedName": "SecPolicy", - "declKind": "Class", - "usr": "c:@T@SecPolicyRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecCertificate", - "printedName": "SecCertificate", - "declKind": "Class", - "usr": "c:@T@SecCertificateRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Int32", - "printedName": "Int32", - "declKind": "Struct", - "usr": "s:s5Int32V", - "mangledName": "$ss5Int32V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int32.Words", - "usr": "s:s5Int32V5WordsV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sj", - "mangledName": "$sSj" + ] }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + ], + "usr": "s:Sq" + }, { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int32.SIMD2Storage", - "usr": "s:s5Int32V12SIMD2StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int32.SIMD4Storage", - "usr": "s:s5Int32V12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int32.SIMD8Storage", - "usr": "s:s5Int32V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int32.SIMD16Storage", - "usr": "s:s5Int32V13SIMD16StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int32.SIMD32Storage", - "usr": "s:s5Int32V13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int32.SIMD64Storage", - "usr": "s:s5Int32V13SIMD64StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "usr": "s:Sq" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecTrustResultType", - "printedName": "SecTrustResultType", - "declKind": "Enum", - "usr": "c:@E@SecTrustResultType", - "moduleName": "Security", - "objc_name": "SecTrustResultType", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "Dynamic" - ], - "enumRawTypeName": "UInt32", - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + ] }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Function", + "name": "value", + "printedName": "value(forKey:)", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyySSF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyySSF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAll", + "printedName": "clearAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "TypeDecl", - "name": "URLSessionConfiguration", - "printedName": "URLSessionConfiguration", + ], "declKind": "Class", - "usr": "c:objc(cs)NSURLSessionConfiguration", + "usr": "c:objc(cs)NSUserDefaults", "moduleName": "Foundation", "isOpen": true, - "intro_iOS": "7.0", - "objc_name": "NSURLSessionConfiguration", + "objc_name": "NSUserDefaults", "declAttributes": [ - "Available", "ObjC", - "SynthesizedProtocol", "NonSendable", - "Sendable", "Dynamic" ], "superclassUsr": "c:objc(cs)NSObject", @@ -134554,13 +125559,6 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, { "kind": "Conformance", "name": "Equatable", @@ -134612,110 +125610,6 @@ } ] }, - { - "kind": "TypeDecl", - "name": "JSONDecoder", - "printedName": "JSONDecoder", - "declKind": "Class", - "usr": "s:10Foundation11JSONDecoderC", - "mangledName": "$s10Foundation11JSONDecoderC", - "moduleName": "Foundation", - "isOpen": true, - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "TopLevelDecoder", - "printedName": "TopLevelDecoder", - "children": [ - { - "kind": "TypeWitness", - "name": "Input", - "printedName": "Input", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:7Combine15TopLevelDecoderP", - "mangledName": "$s7Combine15TopLevelDecoderP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "PropertyListDecoder", - "printedName": "PropertyListDecoder", - "declKind": "Class", - "usr": "s:10Foundation19PropertyListDecoderC", - "mangledName": "$s10Foundation19PropertyListDecoderC", - "moduleName": "Foundation", - "isOpen": true, - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "TopLevelDecoder", - "printedName": "TopLevelDecoder", - "children": [ - { - "kind": "TypeWitness", - "name": "Input", - "printedName": "Input", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:7Combine15TopLevelDecoderP", - "mangledName": "$s7Combine15TopLevelDecoderP" - } - ] - }, { "kind": "TypeDecl", "name": "DateFormatter", @@ -134834,6 +125728,87 @@ } ] }, + { + "kind": "TypeDecl", + "name": "CBPeripheralManager", + "printedName": "CBPeripheralManager", + "declKind": "Class", + "usr": "c:objc(cs)CBPeripheralManager", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "CBPeripheralManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBManager", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBManager", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ZTCBPeripheralManagerProtocol", + "printedName": "ZTCBPeripheralManagerProtocol", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP" + } + ] + }, { "kind": "TypeDecl", "name": "Set", @@ -135227,170 +126202,34 @@ { "kind": "TypeWitness", "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices>", - "children": [ - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "SetAlgebra", - "printedName": "SetAlgebra", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "usr": "s:s10SetAlgebraP", - "mangledName": "$ss10SetAlgebraP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSSet", - "printedName": "Foundation.NSSet", - "usr": "c:objc(cs)NSSet" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URLComponents", - "printedName": "URLComponents", - "declKind": "Struct", - "usr": "s:10Foundation13URLComponentsV", - "mangledName": "$s10Foundation13URLComponentsV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "NSURLComponents", - "printedName": "Foundation.NSURLComponents", - "usr": "c:objc(cs)NSURLComponents" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:SI" } ] } ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", @@ -135401,14129 +126240,12029 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "SetAlgebra", + "printedName": "SetAlgebra", "children": [ { "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "NSURLComponents", - "printedName": "Foundation.NSURLComponents", - "usr": "c:objc(cs)NSURLComponents" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1668, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1896, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2172, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1574, - "length": 9, - "value": "\"CONNECT\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1666, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1751, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 6, - "value": "\"HEAD\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1926, - "length": 9, - "value": "\"OPTIONS\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2016, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2102, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2185, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2271, - "length": 7, - "value": "\"TRACE\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "Array", - "offset": 19884, - "length": 23, - "value": "[\"json\", \"xml\", \"text\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "IntegerLiteral", - "offset": 19956, - "length": 7, - "value": "100000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "IntegerLiteral", - "offset": 20520, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/DFU\/LegacyDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2054, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "IntegerLiteral", - "offset": 448, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 2614, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 3753, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 4348, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 5101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 5469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "IntegerLiteral", - "offset": 5691, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1367, - "length": 7, - "value": "[\"en0\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1402, - "length": 21, - "value": "[\"en2\", \"en3\", \"en4\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1454, - "length": 44, - "value": "[\"pdp_ip0\", \"pdp_ip1\", \"pdp_ip2\", \"pdp_ip3\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTAES.swift", - "kind": "StringLiteral", - "offset": 1885, - "length": 18, - "value": "\"1234567890123456\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTAES.swift", - "kind": "StringLiteral", - "offset": 1917, - "length": 18, - "value": "\"abcdefghijklmnop\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "IntegerLiteral", - "offset": 1540, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "IntegerLiteral", - "offset": 1691, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 1821, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "Array", - "offset": 3280, - "length": 745, - "value": "[408, 500, 502, 503, 504]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "StringLiteral", - "offset": 18242, - "length": 27, - "value": "\"ZTCoreKit.ZTConnectionLostRetryPolicy\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2197, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDfuPeripheralSelector.swift", - "kind": "StringLiteral", - "offset": 402, - "length": 23, - "value": "\"ZTCoreKit.ZTDfuPeripheralSelector\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 249, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 1355, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 1410, - "length": 34, - "value": "\"abcdefghjklmnpqrstuvwxyz12345789\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 1530, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 1564, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 2839, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 3376, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 3708, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 4040, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 7153, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "BooleanLiteral", - "offset": 307, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 4, - "value": "\"4C\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 4, - "value": "\"52\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 4, - "value": "\"4C\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 4, - "value": "\"52\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 649, - "length": 5, - "value": "0o644" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 704, - "length": 5, - "value": "0o755" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 830, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 861, - "length": 5, - "value": "66000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 910, - "length": 10, - "value": "0x06054b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 958, - "length": 10, - "value": "0x04034b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 1005, - "length": 10, - "value": "0x08074b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 1054, - "length": 10, - "value": "0x02014b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"memory\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4747, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/String+Operator.swift", - "kind": "StringLiteral", - "offset": 253, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/String+Operator.swift", - "kind": "StringLiteral", - "offset": 756, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "IntegerLiteral", - "offset": 410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 570, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 1352, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 6966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageTime.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+MemoryFile.swift", - "kind": "IntegerLiteral", - "offset": 2786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2892, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2922, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "IntegerLiteral", - "offset": 10257, - "length": 1, - "value": "0" - }, + } + ], + "usr": "s:s10SetAlgebraP", + "mangledName": "$ss10SetAlgebraP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSSet", + "printedName": "Foundation.NSSet", + "usr": "c:objc(cs)NSSet" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTMediaFileTemplate.swift", "kind": "StringLiteral", - "offset": 1633, - "length": 16, - "value": "\"ZTCoreKit.SecureDFUService\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", - "kind": "FloatLiteral", - "offset": 374, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", - "kind": "FloatLiteral", - "offset": 543, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1803, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1840, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 2064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCharacteristic.swift", - "kind": "BooleanLiteral", - "offset": 935, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTParameterEncoding.swift", - "kind": "Array", - "offset": 10302, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Array", - "offset": 4527, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Dictionary", - "offset": 4645, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 7635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Array", - "offset": 7970, + "offset": 310, "length": 2, - "value": "[]" + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", "kind": "StringLiteral", - "offset": 12435, - "length": 33, - "value": "\"org.alamofire.session.rootQueue\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 12508, - "length": 4, - "value": "true" + "offset": 223, + "length": 20, + "value": "\"arrayParametersKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", "kind": "Array", - "offset": 12843, + "offset": 835, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 23751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 25980, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 27688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 63072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 9, - "value": "\"Upgrade\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 11, - "value": "\"websocket\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1176, - "length": 6, - "value": "\"Host\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1219, - "length": 12, - "value": "\"Connection\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1268, - "length": 9, - "value": "\"Upgrade\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 24, - "value": "\"Sec-WebSocket-Protocol\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1375, - "length": 23, - "value": "\"Sec-WebSocket-Version\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1435, - "length": 4, - "value": "\"13\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1476, - "length": 26, - "value": "\"Sec-WebSocket-Extensions\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1539, - "length": 19, - "value": "\"Sec-WebSocket-Key\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1595, - "length": 8, - "value": "\"Origin\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1640, - "length": 22, - "value": "\"Sec-WebSocket-Accept\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "IntegerLiteral", - "offset": 1699, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "Array", - "offset": 1739, - "length": 16, - "value": "[\"wss\", \"https\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2069, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2069, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSessionDelegate.swift", - "kind": "StringLiteral", - "offset": 137, - "length": 17, - "value": "\"ZTCoreKit.ZTSessionDelegate\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTOperationQueue+Alamofire.swift", - "kind": "BooleanLiteral", - "offset": 2215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2744, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "IntegerLiteral", - "offset": 3297, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "StringLiteral", - "offset": 1633, - "length": 16, - "value": "\"ZTCoreKit.LegacyDFUService\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", - "kind": "IntegerLiteral", - "offset": 334, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2061, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2141, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2223, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2393, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2061, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2141, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2223, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2393, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "StringLiteral", - "offset": 3227, - "length": 11, - "value": "\"ZTCoreKit.DFUFirmware\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/URL+PlistHandler.swift", - "kind": "StringLiteral", - "offset": 1470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/HexToBinConverter\/IntelHex2BinConverter.swift", - "kind": "IntegerLiteral", - "offset": 2862, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", "kind": "IntegerLiteral", - "offset": 517, + "offset": 397, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", "kind": "IntegerLiteral", - "offset": 517, + "offset": 462, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTRequestChain.swift", "kind": "Array", - "offset": 1495, - "length": 3179, - "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "BooleanLiteral", - "offset": 7906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist+Error.swift", - "kind": "StringLiteral", - "offset": 1029, - "length": 17, - "value": "\"$ ZTPlist.error\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 177, - "length": 4, - "value": "0x00" + "offset": 470, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 366, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, - "length": 4, - "value": "0x0A" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, + "offset": 1608, "length": 4, - "value": "0x0B" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 501, + "offset": 1720, "length": 4, - "value": "0x0C" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 528, + "offset": 1802, "length": 4, - "value": "0x0D" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 1907, "length": 4, - "value": "0x0E" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 177, + "offset": 1997, "length": 4, - "value": "0x00" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 366, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, - "length": 4, - "value": "0x0A" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, + "offset": 1608, "length": 4, - "value": "0x0B" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 501, + "offset": 1720, "length": 4, - "value": "0x0C" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 528, + "offset": 1802, "length": 4, - "value": "0x0D" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 1907, "length": 4, - "value": "0x0E" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 177, + "offset": 1997, "length": 4, - "value": "0x00" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 312, + "offset": 1608, "length": 4, - "value": "0x05" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 339, + "offset": 1720, "length": 4, - "value": "0x06" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 366, + "offset": 1802, "length": 4, - "value": "0x07" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 393, + "offset": 1907, "length": 4, - "value": "0x08" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, + "offset": 1997, "length": 4, - "value": "0x09" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1067, "length": 4, - "value": "0x0A" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 501, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1279, "length": 4, - "value": "0x0C" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 528, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1403, "length": 4, - "value": "0x0D" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 555, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1751, "length": 4, - "value": "0x0E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 36, - "value": "\"com.vluxe.starscream.networkstream\"" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", - "kind": "Array", - "offset": 1247, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "IntegerLiteral", + "offset": 1863, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "BooleanLiteral", - "offset": 1330, + "offset": 2026, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "BooleanLiteral", - "offset": 1358, + "offset": 2143, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 1614, + "offset": 2263, "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2493, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2493, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" + "value": "50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" + "offset": 2371, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2493, + "offset": 2562, "length": 4, - "value": "0x04" + "value": "1200" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2691, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2820, "length": 4, - "value": "0x06" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2958, "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "StringLiteral", - "offset": 5098, - "length": 13, - "value": "\"ZTCoreKit.ButtonlessDFU\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1970, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2035, - "length": 1, - "value": "5" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 2, - "value": "10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 3068, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2220, + "offset": 3169, "length": 2, - "value": "15" + "value": "50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2293, + "offset": 4075, "length": 2, "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 1970, + "offset": 1461, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2035, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2220, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 2293, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", - "kind": "BooleanLiteral", - "offset": 1934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", - "kind": "BooleanLiteral", - "offset": 1971, + "offset": 1485, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1726, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1874, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAlamofire.swift", - "kind": "StringLiteral", - "offset": 1562, - "length": 7, - "value": "\"5.4.3\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2137, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2172, - "length": 25, - "value": "\"info_read_only_metadata\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2137, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2172, - "length": 25, - "value": "\"info_read_only_metadata\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2550, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2586, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2550, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2586, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 207, - "length": 4, - "value": "0x02" + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 228, - "length": 4, - "value": "0x03" + "offset": 1461, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 249, - "length": 4, - "value": "0x04" + "offset": 1485, + "length": 5, + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 270, - "length": 4, - "value": "0x05" + "offset": 1461, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 291, - "length": 4, - "value": "0x06" + "offset": 1485, + "length": 5, + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x07" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 333, - "length": 4, - "value": "0x08" + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x00" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 207, - "length": 4, - "value": "0x02" + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 228, - "length": 4, - "value": "0x03" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 249, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "kind": "IntegerLiteral", + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 270, + "offset": 228, "length": 4, - "value": "0x05" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 291, + "offset": 295, "length": 4, - "value": "0x06" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 312, + "offset": 357, "length": 4, - "value": "0x07" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 228, "length": 4, - "value": "0x08" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 186, + "offset": 295, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 207, + "offset": 357, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", "offset": 228, "length": 4, - "value": "0x03" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 295, "length": 4, - "value": "0x04" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 270, + "offset": 357, "length": 4, - "value": "0x05" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 291, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", + "kind": "BooleanLiteral", + "offset": 1916, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", + "kind": "BooleanLiteral", + "offset": 1955, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x07" + "offset": 334, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", "kind": "IntegerLiteral", - "offset": 333, - "length": 4, - "value": "0x08" + "offset": 393, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTCustomDateFormatTransform.swift", "kind": "StringLiteral", - "offset": 671, - "length": 8, - "value": "\".plist\"" + "offset": 1300, + "length": 27, + "value": "\"ZTCoreKit.ZTCustomDateFormatTransform\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", "kind": "StringLiteral", - "offset": 792, - "length": 2, + "offset": 354, + "length": 32, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 1, + "value": "\".networklogger\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 38, + "value": "\"99DDCDAB-A80C-4F94-BE5D-C66B9FBA40CF\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 2506, + "length": 38, + "value": "\"99DDCDA8-A80C-4F94-BE5D-C66B9FBA40CF\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 3659, + "length": 6, + "value": "\"180A\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 4672, + "length": 6, + "value": "\"FE59\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 443, + "offset": 157, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 500, + "offset": 180, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 551, + "offset": 203, "length": 4, - "value": "0x02" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 653, + "offset": 226, "length": 4, - "value": "0x05" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 724, + "offset": 157, "length": 4, - "value": "0x0B" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 774, + "offset": 180, "length": 4, - "value": "0x0C" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 844, + "offset": 203, "length": 4, - "value": "0x0D" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 921, + "offset": 226, "length": 4, - "value": "0x14" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 998, + "offset": 157, "length": 4, - "value": "0x15" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1060, + "offset": 180, "length": 4, - "value": "0x16" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1125, + "offset": 203, "length": 4, - "value": "0x18" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1189, + "offset": 226, "length": 4, - "value": "0x1C" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/HexToBinConverter\/IntelHex2BinConverter.swift", "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "0x1D" + "offset": 2866, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 4, - "value": "0x21" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1367, + "length": 7, + "value": "[\"en0\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1407, - "length": 4, - "value": "0x22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1402, + "length": 21, + "value": "[\"en2\", \"en3\", \"en4\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "0x23" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1454, + "length": 44, + "value": "[\"pdp_ip0\", \"pdp_ip1\", \"pdp_ip2\", \"pdp_ip3\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1667, - "length": 4, - "value": "0x24" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCharacteristic.swift", + "kind": "BooleanLiteral", + "offset": 935, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 4, - "value": "0x26" + "offset": 2063, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1792, - "length": 4, - "value": "0x27" + "offset": 2143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 4, - "value": "0x28" + "offset": 2225, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1967, - "length": 4, - "value": "0x29" + "offset": 2403, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2055, - "length": 4, - "value": "0x2A" + "offset": 2498, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2117, - "length": 4, - "value": "0x30" + "offset": 2063, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2345, - "length": 4, - "value": "0x31" + "offset": 2143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2539, - "length": 4, - "value": "0x32" + "offset": 2225, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2612, - "length": 4, - "value": "0x33" + "offset": 2403, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 4, - "value": "0x34" + "offset": 2498, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2757, - "length": 4, - "value": "0x40" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", + "kind": "StringLiteral", + "offset": 3254, + "length": 11, + "value": "\"ZTCoreKit.DFUFirmware\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2829, - "length": 4, - "value": "0x46" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 24, + "value": "\"com.zhortech.ZTCoreKit\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2890, - "length": 4, - "value": "0x49" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 11, + "value": "\"ZTCoreKit\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2966, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 705, "length": 4, - "value": "0x4A" + "value": "\"v1\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3013, - "length": 4, - "value": "0x50" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 759, + "length": 7, + "value": "\"1.4.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3080, - "length": 4, - "value": "0x51" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 5, + "value": "\"1.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3198, - "length": 4, - "value": "0x52" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 3112, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3331, - "length": 4, - "value": "0x53" + "offset": 4231, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3465, - "length": 4, - "value": "0xE1" + "offset": 4295, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3605, - "length": 4, - "value": "0xE2" + "offset": 4348, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3713, - "length": 4, - "value": "0xE3" + "offset": 4518, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3829, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 5024, "length": 4, - "value": "0xE4" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4003, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 5087, "length": 4, - "value": "0xE5" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4186, - "length": 4, - "value": "0xE6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 6317, + "length": 14, + "value": "\"3.1.0.PS.0.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4488, - "length": 4, - "value": "0xE7" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 6408, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4540, - "length": 4, - "value": "0xF6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 6513, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4583, - "length": 4, - "value": "0xF7" + "offset": 6844, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4626, - "length": 4, - "value": "0xFA" + "offset": 6996, + "length": 2, + "value": "60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4687, - "length": 4, - "value": "0xFC" + "offset": 9493, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4746, - "length": 4, - "value": "0xFD" + "offset": 10342, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4833, - "length": 4, - "value": "0xFE" + "offset": 11376, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4878, - "length": 4, - "value": "0xFF" + "offset": 12692, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 443, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 12709, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 500, - "length": 4, - "value": "0x01" + "offset": 15435, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 551, - "length": 4, - "value": "0x02" + "offset": 16457, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTDatabaseService.swift", "kind": "IntegerLiteral", - "offset": 653, - "length": 4, - "value": "0x05" + "offset": 1357, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 724, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTDatabaseService.swift", + "kind": "FloatLiteral", + "offset": 1569, "length": 4, - "value": "0x0B" + "value": "30.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 774, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 319, + "length": 12, + "value": "\"attributes\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 844, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 356, "length": 4, - "value": "0x0D" + "value": "\"id\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 921, - "length": 4, - "value": "0x14" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 16, + "value": "\"organizationId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 998, - "length": 4, - "value": "0x15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 7, + "value": "\"appId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1060, - "length": 4, - "value": "0x16" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 11, + "value": "\"createdAt\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1125, - "length": 4, - "value": "0x18" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 11, + "value": "\"updatedAt\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1189, - "length": 4, - "value": "0x1C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "0x1D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "Dictionary", + "offset": 646, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 4, - "value": "0x21" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1407, - "length": 4, - "value": "0x22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 10, + "value": "\"dat_file\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 10, + "value": "\"bin_file\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Data.swift", "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "0x23" + "offset": 1947, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "BooleanLiteral", + "offset": 297, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 391, + "length": 33, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 1, + "value": "\".websocketQueue\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 518, + "length": 32, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 1, + "value": "\".callbackQueue\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1667, - "length": 4, - "value": "0x24" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 4, - "value": "0x26" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1792, - "length": 4, - "value": "0x27" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 4, - "value": "0x28" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1967, - "length": 4, - "value": "0x29" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2055, - "length": 4, - "value": "0x2A" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2117, - "length": 4, - "value": "0x30" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2345, - "length": 4, - "value": "0x31" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2539, - "length": 4, - "value": "0x32" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2612, - "length": 4, - "value": "0x33" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 4, - "value": "0x34" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2757, - "length": 4, - "value": "0x40" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2829, - "length": 4, - "value": "0x46" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2890, - "length": 4, - "value": "0x49" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2966, - "length": 4, - "value": "0x4A" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3013, + "offset": 743, "length": 4, - "value": "0x50" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3080, + "offset": 770, "length": 4, - "value": "0x51" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 797, "length": 4, - "value": "0x52" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3331, + "offset": 824, "length": 4, - "value": "0x53" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3465, + "offset": 851, "length": 4, - "value": "0xE1" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3605, + "offset": 878, "length": 4, - "value": "0xE2" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3713, + "offset": 743, "length": 4, - "value": "0xE3" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3829, + "offset": 770, "length": 4, - "value": "0xE4" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 797, "length": 4, - "value": "0xE5" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4186, + "offset": 824, "length": 4, - "value": "0xE6" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 851, "length": 4, - "value": "0xE7" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4540, + "offset": 878, "length": 4, - "value": "0xF6" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4583, + "offset": 743, "length": 4, - "value": "0xF7" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4626, + "offset": 770, "length": 4, - "value": "0xFA" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4687, + "offset": 797, "length": 4, - "value": "0xFC" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4746, + "offset": 824, "length": 4, - "value": "0xFD" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4833, + "offset": 851, "length": 4, - "value": "0xFE" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4878, + "offset": 878, "length": 4, - "value": "0xFF" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 443, + "offset": 1681, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 500, + "offset": 1712, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 551, + "offset": 1743, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 653, + "offset": 1774, "length": 4, - "value": "0x05" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 724, + "offset": 1805, "length": 4, - "value": "0x0B" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 774, + "offset": 1836, "length": 4, - "value": "0x0C" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 844, + "offset": 1867, "length": 4, - "value": "0x0D" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 921, + "offset": 1898, "length": 4, - "value": "0x14" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 998, + "offset": 1929, "length": 4, - "value": "0x15" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1060, + "offset": 1960, "length": 4, - "value": "0x16" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1125, + "offset": 1991, "length": 4, - "value": "0x18" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1189, + "offset": 1681, "length": 4, - "value": "0x1C" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1234, + "offset": 1712, "length": 4, - "value": "0x1D" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1300, + "offset": 1743, "length": 4, - "value": "0x21" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1774, "length": 4, - "value": "0x22" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1515, + "offset": 1805, "length": 4, - "value": "0x23" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1667, + "offset": 1836, "length": 4, - "value": "0x24" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 1867, "length": 4, - "value": "0x26" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1792, + "offset": 1898, "length": 4, - "value": "0x27" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1863, + "offset": 1929, "length": 4, - "value": "0x28" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1967, + "offset": 1960, "length": 4, - "value": "0x29" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2055, + "offset": 1991, "length": 4, - "value": "0x2A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2117, + "offset": 1681, "length": 4, - "value": "0x30" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2345, + "offset": 1712, "length": 4, - "value": "0x31" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2539, + "offset": 1743, "length": 4, - "value": "0x32" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2612, + "offset": 1774, "length": 4, - "value": "0x33" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2674, + "offset": 1805, "length": 4, - "value": "0x34" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2757, + "offset": 1836, "length": 4, - "value": "0x40" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2829, + "offset": 1867, "length": 4, - "value": "0x46" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2890, + "offset": 1898, "length": 4, - "value": "0x49" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2966, + "offset": 1929, "length": 4, - "value": "0x4A" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3013, + "offset": 1960, "length": 4, - "value": "0x50" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3080, + "offset": 1991, "length": 4, - "value": "0x51" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 3444, "length": 4, - "value": "0x52" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3331, + "offset": 3480, "length": 4, - "value": "0x53" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3465, + "offset": 3515, "length": 4, - "value": "0xE1" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3605, + "offset": 3550, "length": 4, - "value": "0xE2" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3713, + "offset": 3585, "length": 4, - "value": "0xE3" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3829, + "offset": 3620, "length": 4, - "value": "0xE4" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 3655, "length": 4, - "value": "0xE5" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4186, + "offset": 3690, "length": 4, - "value": "0xE6" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 3725, "length": 4, - "value": "0xE7" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4540, + "offset": 3760, "length": 4, - "value": "0xF6" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4583, + "offset": 3795, "length": 4, - "value": "0xF7" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4626, + "offset": 3830, "length": 4, - "value": "0xFA" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4687, + "offset": 3865, "length": 4, - "value": "0xFC" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4746, + "offset": 3949, "length": 4, "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4833, + "offset": 4044, "length": 4, "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4878, + "offset": 3480, "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTCustomDateFormatTransform.swift", - "kind": "StringLiteral", - "offset": 1300, - "length": 27, - "value": "\"ZTCoreKit.ZTCustomDateFormatTransform\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 2352, - "length": 6, - "value": "\"\r\n\"" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "BooleanLiteral", - "offset": 3390, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3515, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "BooleanLiteral", - "offset": 3423, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3550, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3805, - "length": 10, - "value": "10000000" + "offset": 3585, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 3961, - "length": 48, - "value": "\"multipart\/form-data; boundary=\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3620, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 4008, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3655, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3690, "length": 4, - "value": "0x01" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3725, "length": 4, - "value": "0x02" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3760, "length": 4, - "value": "0x03" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 3795, "length": 4, - "value": "0x04" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1608, + "offset": 3830, "length": 4, - "value": "0x0D" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1720, + "offset": 3865, "length": 4, - "value": "0x0E" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 3949, "length": 4, - "value": "0x0F" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1907, + "offset": 4044, "length": 4, - "value": "0x10" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1997, + "offset": 3480, "length": 4, - "value": "0xEE" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3515, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3550, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3585, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 3620, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1608, + "offset": 3655, "length": 4, - "value": "0x0D" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1720, + "offset": 3690, "length": 4, - "value": "0x0E" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 3725, "length": 4, - "value": "0x0F" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1907, + "offset": 3760, "length": 4, - "value": "0x10" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1997, + "offset": 3795, "length": 4, - "value": "0xEE" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3830, "length": 4, - "value": "0x01" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3865, "length": 4, - "value": "0x02" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3949, "length": 4, - "value": "0x03" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 4044, "length": 4, - "value": "0x04" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1608, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDfuPeripheralSelector.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 23, + "value": "\"ZTCoreKit.ZTDfuPeripheralSelector\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/DFU\/LegacyDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 1720, - "length": 4, - "value": "0x0E" + "offset": 2080, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1802, - "length": 4, - "value": "0x0F" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1907, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1627, "length": 4, - "value": "0x10" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1997, - "length": 4, - "value": "0xEE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1892, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 213, - "length": 13, - "value": "\"ZTCoreKit.ZTDefaultsKey\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1961, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 426, - "length": 49, + "offset": 2003, + "length": 46, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 465, + "offset": 2042, "length": 1, - "value": "\".ZTApiKey\"" + "value": "\".Queue\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 526, - "length": 52, + "offset": 2079, + "length": 45, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 565, + "offset": 2118, "length": 1, - "value": "\".ZTApiSecret\"" + "value": "\".UUID\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 625, - "length": 48, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 2155, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 664, - "length": 1, - "value": "\".ZTAppId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 3637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 722, - "length": 50, - "value": "\"\"" + "offset": 499, + "length": 12, + "value": "\"ZTCoreKit.ZTBleManager\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 761, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1805, "length": 1, - "value": "\".ZTOrgCode\"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 821, - "length": 50, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1842, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 860, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1890, "length": 1, - "value": "\".ZTAppType\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 923, - "length": 52, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 2074, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 962, - "length": 1, - "value": "\".ZTAuthToken\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 560, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1029, - "length": 55, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1068, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 834, "length": 1, - "value": "\".ZTRefreshToken\"" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1135, - "length": 54, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "FloatLiteral", + "offset": 894, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1174, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 943, "length": 1, - "value": "\".ZTTokenExpire\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1241, - "length": 52, + "offset": 996, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1280, - "length": 1, - "value": "\".ZTAppUserId\"" + "offset": 1539, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1346, - "length": 56, - "value": "\"\"" + "offset": 1621, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1385, - "length": 1, - "value": "\".ZTChunkDuration\"" + "offset": 1659, + "length": 28, + "value": "\"CFBundleShortVersionString\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1453, - "length": 51, - "value": "\"\"" + "offset": 1703, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1492, - "length": 1, - "value": "\".ZTAuthData\"" + "offset": 1784, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1570, - "length": 63, + "offset": 1829, + "length": 54, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1609, + "offset": 1852, "length": 1, - "value": "\".lastDeviceSerialNumber\"" + "value": "\" \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1690, - "length": 55, + "offset": 1882, + "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1729, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 2065, "length": 1, - "value": "\".lastActivityId\"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1804, - "length": 57, + "offset": 2147, + "length": 210, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1843, + "offset": 2161, "length": 1, - "value": "\".lastDeviceQRCode\"" + "value": "\"\/\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1914, - "length": 51, - "value": "\"\"" + "offset": 2175, + "length": 1, + "value": "\" (\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1953, + "offset": 2193, "length": 1, - "value": "\".lastQRCode\"" + "value": "\"; \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2053, - "length": 56, - "value": "\"\"" + "offset": 2204, + "length": 1, + "value": "\"; build:\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2092, + "offset": 2223, "length": 1, - "value": "\".startAppVersion\"" + "value": "\"; model:\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2159, - "length": 49, - "value": "\"\"" + "offset": 2246, + "length": 5, + "value": "\"n\/a\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2198, + "offset": 2252, "length": 1, - "value": "\".deviceId\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 2263, - "length": 54, - "value": "\"\"" + "value": "\"; brand:Apple) SDK: \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2302, + "offset": 2299, "length": 1, - "value": "\".pairingMethod\"" + "value": "\"\/\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2370, - "length": 52, - "value": "\"\"" + "offset": 2317, + "length": 1, + "value": "\"-\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2409, + "offset": 2355, "length": 1, - "value": "\".pairingDate\"" + "value": "\";\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2479, - "length": 55, - "value": "\"\"" + "offset": 2375, + "length": 8, + "value": "\"ZTCore\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2518, - "length": 1, - "value": "\".startFwVersion\"" + "offset": 2502, + "length": 28, + "value": "\"CFBundleShortVersionString\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2588, - "length": 52, - "value": "\"\"" + "offset": 2546, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", "offset": 2627, - "length": 1, - "value": "\".startFwType\"" + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2692, - "length": 50, + "offset": 2650, + "length": 27, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2731, + "offset": 2664, "length": 1, - "value": "\".fwVersion\"" + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2791, - "length": 47, + "offset": 2676, + "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2830, - "length": 1, - "value": "\".fwType\"" + "offset": 2695, + "length": 8, + "value": "\"ZTCore\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 37318, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 39073, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 41103, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2891, - "length": 53, + "offset": 48987, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2930, - "length": 1, - "value": "\".wasDfuCopied\"" + "offset": 50337, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 3000, - "length": 59, + "offset": 50790, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 3039, - "length": 1, - "value": "\".ZTIsStorageUpdated\"" + "offset": 51222, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "StringLiteral", + "offset": 51936, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1749, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "StringLiteral", + "offset": 51960, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1784, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 64108, "length": 4, - "value": "0x02" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1819, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 64128, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "kind": "StringLiteral", + "offset": 2598, + "length": 15, + "value": "\"manifest.json\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "offset": 2654, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "offset": 2691, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 2739, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 3268, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "offset": 3313, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "offset": 3358, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 2302, + "offset": 1630, "length": 4, - "value": "0x0C" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 2337, + "offset": 1684, "length": 4, - "value": "0x60" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1749, + "offset": 1738, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "0x02" + "offset": 2296, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1819, - "length": 4, - "value": "0x03" + "offset": 2527, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "offset": 2630, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 15, + "value": "\"ZTCoreKit.DFUFirmwareSize\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 3, + "value": "\"0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 249, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 1355, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 1410, + "length": 34, + "value": "\"abcdefghjklmnpqrstuvwxyz12345789\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2302, - "length": 4, - "value": "0x0C" + "offset": 1564, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2337, - "length": 4, - "value": "0x60" + "offset": 2839, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "offset": 3376, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1749, - "length": 4, - "value": "0x01" + "offset": 3708, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "0x02" + "offset": 4040, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1819, + "offset": 7153, "length": 4, - "value": "0x03" + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2302, - "length": 4, - "value": "0x0C" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2337, - "length": 4, - "value": "0x60" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3242, - "length": 4, - "value": "0x00" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3277, - "length": 4, - "value": "0x02" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3312, - "length": 4, - "value": "0x03" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3347, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "Dictionary", + "offset": 1576, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3382, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1621, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3417, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1737, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3452, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "StringLiteral", + "offset": 1798, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3487, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1874, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3522, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 2164, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3557, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "StringLiteral", + "offset": 3812, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3627, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 3835, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3662, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2145, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3242, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3277, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 25, + "value": "\"info_read_only_metadata\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3312, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3347, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2296, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3382, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2145, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3417, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3452, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 25, + "value": "\"info_read_only_metadata\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3487, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3522, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2296, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3557, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2628, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3627, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3662, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2628, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3242, + "offset": 188, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3277, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3312, + "offset": 236, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3347, + "offset": 260, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3382, + "offset": 284, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3417, + "offset": 305, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3452, + "offset": 330, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3487, + "offset": 357, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3522, + "offset": 385, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3557, + "offset": 407, "length": 4, "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3592, + "offset": 430, "length": 4, "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3627, + "offset": 456, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3662, + "offset": 482, "length": 4, "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 4913, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 507, "length": 4, - "value": "0x02" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4913, + "offset": 536, "length": 4, - "value": "0x01" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 557, "length": 4, - "value": "0x02" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4913, + "offset": 578, "length": 4, - "value": "0x01" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 601, "length": 4, - "value": "0x02" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 626, "length": 4, - "value": "0x00" + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 188, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 236, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 260, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 284, "length": 4, - "value": "0x02" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 305, "length": 4, - "value": "0x00" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 330, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 357, "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 385, "length": 4, - "value": "0x01" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 407, "length": 4, - "value": "0x02" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 430, "length": 4, - "value": "0x03" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 456, "length": 4, - "value": "0x04" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 482, "length": 4, - "value": "0x05" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 507, "length": 4, - "value": "0x06" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 536, "length": 4, - "value": "0x07" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 557, "length": 4, - "value": "0x08" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 578, "length": 4, - "value": "0x0A" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 601, "length": 4, - "value": "0x0B" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "offset": 626, + "length": 4, + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 188, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 236, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 260, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 284, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 305, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 330, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 357, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 385, "length": 4, - "value": "0x0A" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 407, "length": 4, - "value": "0x0B" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 430, "length": 4, - "value": "0x01" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 456, "length": 4, - "value": "0x02" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 482, "length": 4, - "value": "0x03" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 507, "length": 4, - "value": "0x04" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 536, "length": 4, - "value": "0x05" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 557, "length": 4, - "value": "0x06" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 578, "length": 4, - "value": "0x07" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 601, "length": 4, - "value": "0x08" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 626, "length": 4, - "value": "0x0A" + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 186, "length": 4, - "value": "0x0B" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "StringLiteral", - "offset": 15139, - "length": 21, - "value": "\"ZTCoreKit.SecureDFUControlPoint\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 1, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 1, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 9, - "value": "\"RSSI=%@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1203, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "IntegerLiteral", - "offset": 2786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3268, - "length": 24, - "value": "\"MSG_GENERAL_STATES: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3506, - "length": 33, - "value": "\"MSG_SOFTWARE: right=%@, left=%@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3576, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3614, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 4893, - "length": 23, - "value": "\"MSG_ACTIVITY_INFO: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 40, - "value": "\"MSG_BTLOADER_INFO: right: %@; left: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5233, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5273, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5544, - "length": 15, - "value": "\"MSG_DEBUG: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 6180, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "IntegerLiteral", - "offset": 11580, - "length": 1, - "value": "0" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 14537, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 14626, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 14326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 215, - "length": 8, - "value": "\"ZTCoreKit.ZTDevice\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 2459, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 4947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 8625, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 8652, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11500, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11543, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 14728, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 14759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 26839, + "offset": 207, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" + "offset": 186, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" + "offset": 207, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 186, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 207, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6051, - "length": 1, - "value": "1" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6085, - "length": 1, - "value": "2" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6119, - "length": 1, - "value": "3" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6153, - "length": 1, - "value": "4" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "5" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "6" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", "kind": "IntegerLiteral", - "offset": 6051, + "offset": 551, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", "kind": "IntegerLiteral", - "offset": 6085, + "offset": 588, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6119, - "length": 1, - "value": "3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 245, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6153, - "length": 1, - "value": "4" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 273, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "5" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 3635, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 8995, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6051, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 9023, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6085, - "length": 1, - "value": "2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 17709, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 17737, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6119, + "offset": 1658, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6153, + "offset": 1695, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6187, + "offset": 1743, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6221, + "offset": 1927, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "BooleanLiteral", - "offset": 9193, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1040, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", "kind": "StringLiteral", - "offset": 8806, - "length": 15, - "value": "\"ZTCoreKit.DFUControlPoint\"" + "offset": 1112, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 443, "length": 4, - "value": "0x01" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 500, "length": 4, - "value": "0x02" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 551, "length": 4, - "value": "0x03" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 653, "length": 4, - "value": "0x04" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 724, "length": 4, - "value": "0x0D" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 774, "length": 4, - "value": "0x0E" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 844, "length": 4, - "value": "0x0F" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 921, "length": 4, - "value": "0x10" + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 998, "length": 4, - "value": "0xEE" + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 1060, "length": 4, - "value": "0x01" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 1125, "length": 4, - "value": "0x02" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 1189, "length": 4, - "value": "0x03" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 1234, "length": 4, - "value": "0x04" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 1300, "length": 4, - "value": "0x0D" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 1407, "length": 4, - "value": "0x0E" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 1515, "length": 4, - "value": "0x0F" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 1667, "length": 4, - "value": "0x10" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 1744, "length": 4, - "value": "0xEE" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 1792, "length": 4, - "value": "0x01" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 1863, "length": 4, - "value": "0x02" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 1967, "length": 4, - "value": "0x03" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 2055, "length": 4, - "value": "0x04" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 2117, "length": 4, - "value": "0x0D" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 2345, "length": 4, - "value": "0x0E" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 2539, "length": 4, - "value": "0x0F" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 2612, "length": 4, - "value": "0x10" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 2674, "length": 4, - "value": "0xEE" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", - "kind": "StringLiteral", - "offset": 2588, - "length": 15, - "value": "\"manifest.json\"" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2640, - "length": 1, - "value": "1" + "offset": 2757, + "length": 4, + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2677, - "length": 1, - "value": "1" + "offset": 2829, + "length": 4, + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2725, - "length": 1, - "value": "0" + "offset": 2890, + "length": 4, + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3240, - "length": 1, - "value": "0" + "offset": 2966, + "length": 4, + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3283, - "length": 1, - "value": "0" + "offset": 3013, + "length": 4, + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3327, - "length": 1, - "value": "0" + "offset": 3080, + "length": 4, + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 551, - "length": 1, - "value": "0" + "offset": 3198, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 588, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", - "kind": "StringLiteral", - "offset": 1040, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", - "kind": "StringLiteral", - "offset": 1112, - "length": 2, - "value": "\"\"" + "offset": 3331, + "length": 4, + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 10, - "value": "\"ZTSports\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 255, - "length": 8, - "value": "\"ZTWarm\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3605, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 11, - "value": "\"ZTRunning\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3713, + "length": 4, + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 315, - "length": 13, - "value": "\"ZTPodoSmart\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3829, + "length": 4, + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 344, - "length": 9, - "value": "\"DfuTarg\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4003, + "length": 4, + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 7, - "value": "\"ZTDFU\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4186, + "length": 4, + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 399, - "length": 5, - "value": "\"ZTB\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4488, + "length": 4, + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 10, - "value": "\"ZTSports\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4540, + "length": 4, + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 255, - "length": 8, - "value": "\"ZTWarm\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4583, + "length": 4, + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 11, - "value": "\"ZTRunning\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4626, + "length": 4, + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 315, - "length": 13, - "value": "\"ZTPodoSmart\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4687, + "length": 4, + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 344, - "length": 9, - "value": "\"DfuTarg\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4746, + "length": 4, + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 7, - "value": "\"ZTDFU\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4833, + "length": 4, + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 399, - "length": 5, - "value": "\"ZTB\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4878, + "length": 4, + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 443, "length": 4, - "value": "1" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 500, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 551, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 653, "length": 4, - "value": "1" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 724, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 774, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 844, "length": 4, - "value": "1" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 921, + "length": 4, + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 998, + "length": 4, + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 1060, "length": 4, - "value": "0x00" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 1125, "length": 4, - "value": "0x01" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 1189, "length": 4, - "value": "0x02" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 1234, "length": 4, - "value": "0x03" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 1300, "length": 4, - "value": "0x04" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 1407, "length": 4, - "value": "0x05" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 1515, "length": 4, - "value": "0x00" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 1667, "length": 4, - "value": "0x01" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 1744, "length": 4, - "value": "0x02" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 1792, "length": 4, - "value": "0x03" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 1863, "length": 4, - "value": "0x04" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 1967, "length": 4, - "value": "0x05" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 2055, "length": 4, - "value": "0x00" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 2117, "length": 4, - "value": "0x01" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 2345, "length": 4, - "value": "0x02" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 2539, "length": 4, - "value": "0x03" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 2612, "length": 4, - "value": "0x04" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 2674, "length": 4, - "value": "0x05" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 2757, "length": 4, - "value": "0x00" + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 2829, "length": 4, - "value": "0x01" + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 2890, "length": 4, - "value": "0x02" + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 2966, "length": 4, - "value": "0x03" + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 3013, "length": 4, - "value": "0x04" + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 3080, "length": 4, - "value": "0x05" + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 3198, "length": 4, - "value": "0x06" + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 3331, "length": 4, - "value": "0x07" + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 3465, "length": 4, - "value": "0x08" + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 3605, "length": 4, - "value": "0x09" + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 3713, "length": 4, - "value": "0x10" + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 3829, "length": 4, - "value": "0x00" + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 4003, "length": 4, - "value": "0x01" + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 4186, "length": 4, - "value": "0x02" + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 4488, "length": 4, - "value": "0x03" + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 4540, "length": 4, - "value": "0x04" + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 4583, "length": 4, - "value": "0x05" + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 4626, "length": 4, - "value": "0x06" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 4687, "length": 4, - "value": "0x07" + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4746, "length": 4, - "value": "0x08" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 4833, "length": 4, - "value": "0x09" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 4878, "length": 4, - "value": "0x10" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 443, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 500, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 551, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 653, "length": 4, - "value": "0x03" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 724, "length": 4, - "value": "0x04" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 774, "length": 4, - "value": "0x05" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 844, "length": 4, - "value": "0x06" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 921, "length": 4, - "value": "0x07" + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 998, "length": 4, - "value": "0x08" + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 1060, "length": 4, - "value": "0x09" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 1125, "length": 4, - "value": "0x10" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3700, + "offset": 1189, "length": 4, - "value": "0xFA" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 1234, "length": 4, - "value": "0x00" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 1300, "length": 4, - "value": "0x01" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 1407, "length": 4, - "value": "0x02" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 1515, "length": 4, - "value": "0x03" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 1667, "length": 4, - "value": "0x04" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 1744, "length": 4, - "value": "0x05" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 1792, "length": 4, - "value": "0x06" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 1863, "length": 4, - "value": "0x07" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 1967, "length": 4, - "value": "0x0A" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 2055, "length": 4, - "value": "0x64" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4130, + "offset": 2117, "length": 4, - "value": "0x65" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 2345, "length": 4, - "value": "0x66" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4261, + "offset": 2539, "length": 4, - "value": "0xFD" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4364, + "offset": 2612, "length": 4, - "value": "0xFE" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 2674, "length": 4, - "value": "0x00" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 2757, "length": 4, - "value": "0x01" + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 2829, "length": 4, - "value": "0x02" + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 2890, "length": 4, - "value": "0x03" + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 2966, "length": 4, - "value": "0x04" + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 3013, "length": 4, - "value": "0x05" + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 3080, "length": 4, - "value": "0x06" + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 3198, "length": 4, - "value": "0x07" + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 3331, "length": 4, - "value": "0x0A" + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 3465, "length": 4, - "value": "0x64" + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4130, + "offset": 3605, "length": 4, - "value": "0x65" + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 3713, "length": 4, - "value": "0x66" + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4261, + "offset": 3829, "length": 4, - "value": "0xFD" + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4364, + "offset": 4003, "length": 4, - "value": "0xFE" + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 4186, "length": 4, - "value": "0x00" + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 4488, "length": 4, - "value": "0x01" + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 4540, "length": 4, - "value": "0x02" + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 4583, "length": 4, - "value": "0x03" + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 4626, "length": 4, - "value": "0x04" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 4687, "length": 4, - "value": "0x05" + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 4746, "length": 4, - "value": "0x06" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 4833, "length": 4, - "value": "0x07" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 4878, "length": 4, - "value": "0x0A" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 4, - "value": "0x64" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2124, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 4, - "value": "0x65" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4169, - "length": 4, - "value": "0x66" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2943, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4261, - "length": 4, - "value": "0xFD" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 3593, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 3976, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", "offset": 4364, - "length": 4, - "value": "0xFE" + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Serialization.swift", - "kind": "BooleanLiteral", - "offset": 1442, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 4753, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", - "kind": "BooleanLiteral", - "offset": 258, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 5165, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 352, - "length": 33, - "value": "\"\"" + "offset": 5791, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 369, - "length": 1, - "value": "\".websocketQueue\"" + "offset": 6421, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 479, - "length": 32, - "value": "\"\"" + "offset": 7103, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 496, - "length": 1, - "value": "\".callbackQueue\"" + "offset": 7791, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 797, - "length": 2, - "value": "\"\"" + "offset": 8733, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 9446, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 10207, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 11144, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 11890, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 901, + "offset": 12631, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTMediaUploader.swift", + "kind": "Array", + "offset": 317, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 410, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 570, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 1352, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 6966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2033, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "IntegerLiteral", - "offset": 2069, - "length": 1, - "value": "0" + "offset": 5949, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "BooleanLiteral", - "offset": 2111, + "offset": 9420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "BooleanLiteral", - "offset": 2154, + "offset": 10843, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2308, - "length": 1, - "value": "3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "FloatLiteral", + "offset": 11084, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1107, - "length": 9, - "value": "\"Network\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "FloatLiteral", + "offset": 12388, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1164, - "length": 9, - "value": "\"Modules\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 13604, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1213, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 16027, "length": 5, - "value": "\"SDK\"" + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 16478, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "StringLiteral", - "offset": 1107, - "length": 9, - "value": "\"Network\"" + "offset": 2408, + "length": 19, + "value": "\"ZTCoreKit.DFUServiceInitiator\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", + "kind": "FloatLiteral", + "offset": 374, + "length": 6, + "value": "1000.0" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", + "kind": "FloatLiteral", + "offset": 543, + "length": 6, + "value": "1000.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", "kind": "StringLiteral", - "offset": 1164, - "length": 9, - "value": "\"Modules\"" + "offset": 228, + "length": 10, + "value": "\"ZTSports\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", "kind": "StringLiteral", - "offset": 1213, - "length": 5, - "value": "\"SDK\"" + "offset": 255, + "length": 8, + "value": "\"ZTWarm\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 11, + "value": "\"ZTRunning\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 13, + "value": "\"ZTPodoSmart\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 9, + "value": "\"DfuTarg\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 7, + "value": "\"ZTDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 5, + "value": "\"ZTB\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 228, + "length": 10, + "value": "\"ZTSports\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 255, + "length": 8, + "value": "\"ZTWarm\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 11, + "value": "\"ZTRunning\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 13, + "value": "\"ZTPodoSmart\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 9, + "value": "\"DfuTarg\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 7, + "value": "\"ZTDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 5, + "value": "\"ZTB\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTURLTransform.swift", + "kind": "BooleanLiteral", + "offset": 1794, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1247, + "length": 9, + "value": "\"RSSI=%@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1258, + "length": 9, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1266, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "offset": 2841, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 3323, + "length": 24, + "value": "\"MSG_GENERAL_STATES: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 7161, - "length": 24, - "value": "\"ZTCore.log.notifcation\"" + "offset": 3561, + "length": 33, + "value": "\"MSG_SOFTWARE: right=%@, left=%@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 7259, - "length": 29, - "value": "\"ZTCore.log.notification.ble\"" + "offset": 3631, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNetworkReachabilityManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 3999, - "length": 33, - "value": "\"org.alamofire.reachabilityQueue\"" + "offset": 3669, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 4948, + "length": 23, + "value": "\"MSG_ACTIVITY_INFO: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5209, + "length": 40, + "value": "\"MSG_BTLOADER_INFO: right: %@; left: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 357, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5288, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5328, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5599, + "length": 15, + "value": "\"MSG_DEBUG: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 6235, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "offset": 11635, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "offset": 14590, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 357, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 14679, "length": 4, - "value": "0x03" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 14379, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 251, + "length": 8, + "value": "\"ZTCoreKit.ZTDevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "offset": 1891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "offset": 1973, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "offset": 2038, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 357, - "length": 4, - "value": "0x03" + "offset": 2169, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "offset": 2223, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "offset": 2296, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "offset": 1891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1090, - "length": 4, - "value": "0x00" + "offset": 1973, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1133, - "length": 4, - "value": "0x01" + "offset": 2038, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1176, - "length": 4, - "value": "0x02" + "offset": 2169, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1219, - "length": 4, - "value": "0x03" + "offset": 2223, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1262, - "length": 4, - "value": "0x04" + "offset": 2296, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 4807, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1348, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "StringLiteral", + "offset": 2523, + "length": 17, + "value": "\"ZTCoreKit.BaseDFUPeripheral\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22455, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1434, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22675, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1477, - "length": 4, - "value": "0x10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22946, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1520, - "length": 4, - "value": "0x11" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 23227, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 285, "length": 4, - "value": "0x0C" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 316, "length": 4, - "value": "0x0F" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 285, "length": 4, - "value": "0x26" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 316, "length": 4, - "value": "0x27" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 285, "length": 4, - "value": "0x28" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 316, "length": 4, - "value": "0xFF" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1090, + "offset": 418, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1133, + "offset": 453, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1176, + "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1219, + "offset": 523, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1262, + "offset": 558, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1305, + "offset": 593, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1348, + "offset": 628, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1434, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1477, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1520, + "offset": 418, "length": 4, - "value": "0x11" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 453, "length": 4, - "value": "0x0C" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 488, "length": 4, - "value": "0x0F" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 523, "length": 4, - "value": "0x26" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 558, "length": 4, - "value": "0x27" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 593, "length": 4, - "value": "0x28" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 628, "length": 4, - "value": "0xFF" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1090, + "offset": 418, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1133, + "offset": 453, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1176, + "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1219, + "offset": 523, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1262, + "offset": 558, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1305, + "offset": 593, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1348, + "offset": 628, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1434, + "offset": 733, "length": 4, - "value": "0x09" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1477, + "offset": 764, "length": 4, - "value": "0x10" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1520, + "offset": 795, "length": 4, - "value": "0x11" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 826, "length": 4, - "value": "0x0C" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 733, "length": 4, - "value": "0x0F" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 764, "length": 4, - "value": "0x26" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 795, "length": 4, - "value": "0x27" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 826, "length": 4, - "value": "0x28" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 733, "length": 4, - "value": "0xFF" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3372, + "offset": 764, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3415, + "offset": 795, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3458, + "offset": 826, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 1585, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3544, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 1769, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 11873, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3630, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 12156, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3673, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 14664, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3716, - "length": 4, - "value": "0x09" + "offset": 2062, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3372, - "length": 4, - "value": "0x01" + "offset": 2112, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3415, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "kind": "BooleanLiteral", + "offset": 2160, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3458, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "kind": "BooleanLiteral", + "offset": 2207, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "offset": 2366, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3544, + "offset": 249, "length": 4, - "value": "0x05" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3587, + "offset": 280, "length": 4, - "value": "0x06" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3630, + "offset": 249, "length": 4, - "value": "0x07" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3673, + "offset": 280, "length": 4, - "value": "0x08" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3716, + "offset": 249, "length": 4, - "value": "0x09" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3372, + "offset": 280, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3415, - "length": 4, - "value": "0x02" + "offset": 1861, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3458, - "length": 4, - "value": "0x03" + "offset": 2052, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "offset": 2109, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3544, - "length": 4, - "value": "0x05" + "offset": 2199, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTAuthManager.swift", + "kind": "BooleanLiteral", + "offset": 2100, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3630, + "offset": 186, "length": 4, - "value": "0x07" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3673, + "offset": 217, "length": 4, - "value": "0x08" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3716, + "offset": 248, "length": 4, - "value": "0x09" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 279, "length": 4, - "value": "0x00" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 186, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 217, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 248, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 279, "length": 4, - "value": "0x01" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 186, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4329, + "offset": 217, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4367, + "offset": 248, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4329, + "offset": 279, "length": 4, - "value": "0x03" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4367, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1079, + "length": 9, + "value": "\"Network\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4329, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 9, + "value": "\"Modules\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4367, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1079, + "length": 9, + "value": "\"Network\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 9, + "value": "\"Modules\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFoundationHTTPServerHandler.swift", - "kind": "StringLiteral", - "offset": 1085, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 453, - "length": 38, - "value": "\"99DDCDAB-A80C-4F94-BE5D-C66B9FBA40CF\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 2506, - "length": 38, - "value": "\"99DDCDA8-A80C-4F94-BE5D-C66B9FBA40CF\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 3659, - "length": 6, - "value": "\"180A\"" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 4672, - "length": 6, - "value": "\"FE59\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageTime.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 295, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 326, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 357, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 388, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 419, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 450, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 330, + "offset": 295, "length": 4, - "value": "0x07" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 326, "length": 4, - "value": "0x08" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 357, "length": 4, - "value": "0x09" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 388, "length": 4, - "value": "0x0A" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 419, "length": 4, - "value": "0x0B" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 450, "length": 4, - "value": "0x0C" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 482, + "offset": 295, "length": 4, - "value": "0x0D" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 326, "length": 4, - "value": "0x0E" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 357, "length": 4, - "value": "0x0F" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 388, "length": 4, - "value": "0x10" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 419, "length": 4, - "value": "0x11" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 450, "length": 4, - "value": "0x12" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 1219, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 1262, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 1305, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 1348, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 330, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 1391, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 1434, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 1477, "length": 4, - "value": "0x0A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 1520, "length": 4, - "value": "0x0B" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 1563, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 1606, "length": 4, - "value": "0x0E" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 1649, "length": 4, - "value": "0x0F" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 1692, "length": 4, - "value": "0x10" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 1735, "length": 4, - "value": "0x11" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 1778, "length": 4, - "value": "0x12" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 1219, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 1262, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 1305, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 1348, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 330, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 1391, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 1434, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 1477, "length": 4, - "value": "0x0A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 1520, "length": 4, - "value": "0x0B" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 1563, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 1606, "length": 4, - "value": "0x0E" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 1649, "length": 4, - "value": "0x0F" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 1692, "length": 4, - "value": "0x10" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 1735, "length": 4, - "value": "0x11" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 1778, "length": 4, - "value": "0x12" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1628, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1680, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 1219, "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "IntegerLiteral", - "offset": 2287, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "IntegerLiteral", - "offset": 2515, - "length": 1, - "value": "0" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "StringLiteral", - "offset": 2057, - "length": 15, - "value": "\"ZTCoreKit.DFUFirmwareSize\"" + "offset": 1262, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" + "offset": 1305, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1348, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1391, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 1434, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 1477, "length": 4, "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", - "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1520, + "length": 4, + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1563, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 1606, + "length": 4, + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 1649, "length": 4, - "value": "0x10" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" + "offset": 1692, + "length": 4, + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1735, + "length": 4, + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1778, + "length": 4, + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 3372, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 3415, "length": 4, - "value": "0x10" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3458, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3501, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3544, "length": 4, - "value": "0x02" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3587, "length": 4, - "value": "0x00" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3630, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3673, "length": 4, - "value": "0x02" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3716, "length": 4, - "value": "0x00" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3372, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3415, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7386, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3458, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7425, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3501, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7472, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 245, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3587, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 273, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3630, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 3635, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3673, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 8995, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3716, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 9023, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3372, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 17709, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3415, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 17737, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3458, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Data.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1959, - "length": 1, - "value": "0" + "offset": 3501, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTFoundationSecurity.swift", - "kind": "BooleanLiteral", - "offset": 1069, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTFoundationSecurity.swift", - "kind": "BooleanLiteral", - "offset": 1109, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3587, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2124, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3630, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2395, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3673, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3716, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 3593, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 3976, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 4364, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 4753, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 5165, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 5791, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 6421, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 7103, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 7791, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 8733, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 9446, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 10207, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 11144, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 11890, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 12631, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 4900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4930, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1912, + "offset": 4955, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 4984, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2071, + "offset": 5012, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2158, + "offset": 5042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2244, + "offset": 5072, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2320, + "offset": 5102, "length": 1, "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "IntegerLiteral", - "offset": 2403, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2608, - "length": 2, - "value": "10" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 4900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4930, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1912, + "offset": 4955, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 4984, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2071, + "offset": 5012, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2158, + "offset": 5042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2244, + "offset": 5072, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2320, + "offset": 5102, "length": 1, "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2403, - "length": 1, - "value": "8" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2507, + "offset": 4900, "length": 1, - "value": "9" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2608, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "StringLiteral", - "offset": 2654, - "length": 7, - "value": "\"ZTCoreKit.DFUUuid\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 319, - "length": 12, - "value": "\"attributes\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 356, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 16, - "value": "\"organizationId\"" + "offset": 4930, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 441, - "length": 7, - "value": "\"appId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4955, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 480, - "length": 11, - "value": "\"createdAt\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4984, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 523, - "length": 11, - "value": "\"updatedAt\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5012, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 563, - "length": 8, - "value": "\"userId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5042, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "Dictionary", - "offset": 646, - "length": 3, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5072, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 2542, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5102, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 11571, - "length": 1, - "value": "0" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "BooleanLiteral", - "offset": 13384, + "offset": 2832, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "BooleanLiteral", - "offset": 13448, + "offset": 2864, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 618, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 1703, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 8911, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Starscream\/ZTWebSocket.swift", - "kind": "BooleanLiteral", - "offset": 3279, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "StringLiteral", - "offset": 284, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "StringLiteral", - "offset": 393, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", + "kind": "IntegerLiteral", + "offset": 3416, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "StringLiteral", - "offset": 501, - "length": 5, - "value": "\"N\/A\"" + "offset": 1605, + "length": 16, + "value": "\"ZTCoreKit.LegacyDFUService\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "Array", - "offset": 1122, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1712, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1409, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1499, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1599, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1702, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4877, + "offset": 1952, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4898, + "offset": 2026, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5802, + "offset": 2074, "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 9214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 10613, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "FloatLiteral", - "offset": 10840, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "FloatLiteral", - "offset": 12109, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 13291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 15653, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 16089, - "length": 5, - "value": "false" + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "StringLiteral", - "offset": 2405, - "length": 19, - "value": "\"ZTCoreKit.DFUServiceInitiator\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 397, + "offset": 1664, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 462, + "offset": 1712, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1422, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didResume\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1655, - "length": 52, - "value": "\"org.alamofire.notification.name.request.didSuspend\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1888, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didCancel\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2119, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didFinish\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 55, - "value": "\"org.alamofire.notification.name.request.didResumeTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1952, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2659, - "length": 56, - "value": "\"org.alamofire.notification.name.request.didSuspendTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2932, - "length": 55, - "value": "\"org.alamofire.notification.name.request.didCancelTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2074, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 3206, - "length": 57, - "value": "\"org.alamofire.notification.name.request.didCompleteTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 40, - "value": "\"org.alamofire.notification.key.request\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 1712, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, - "length": 2, - "value": "20" + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, - "length": 2, - "value": "90" + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 1952, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 2026, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, + "offset": 2074, "length": 2, - "value": "20" + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, + "offset": 2123, "length": 2, - "value": "90" + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 3204, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, - "length": 2, - "value": "20" + "offset": 3204, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, - "length": 2, - "value": "90" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 3204, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2842, + "offset": 6105, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2943, + "offset": 6139, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3039, + "offset": 6173, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3130, + "offset": 6207, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3212, + "offset": 6241, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3310, + "offset": 6275, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 3488, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3681, - "length": 2, - "value": "13" + "offset": 6105, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3819, - "length": 2, - "value": "14" + "offset": 6139, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 2, - "value": "15" + "offset": 6173, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4011, - "length": 2, - "value": "16" + "offset": 6207, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4113, - "length": 2, - "value": "17" + "offset": 6241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4220, - "length": 2, - "value": "18" + "offset": 6275, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4329, - "length": 2, - "value": "20" + "offset": 6105, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4600, - "length": 2, - "value": "21" + "offset": 6139, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4960, - "length": 2, - "value": "22" + "offset": 6173, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5108, - "length": 2, - "value": "23" + "offset": 6207, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5438, - "length": 2, - "value": "24" + "offset": 6241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5782, - "length": 2, - "value": "25" + "offset": 6275, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6040, - "length": 2, - "value": "26" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "BooleanLiteral", + "offset": 9374, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6315, - "length": 2, - "value": "27" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "StringLiteral", + "offset": 8985, + "length": 15, + "value": "\"ZTCoreKit.DFUControlPoint\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6585, - "length": 2, - "value": "28" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6751, - "length": 2, - "value": "29" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "30" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7031, - "length": 2, - "value": "31" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7190, - "length": 2, - "value": "32" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7337, - "length": 2, - "value": "33" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 339, "length": 4, - "value": "9001" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7719, + "offset": 366, "length": 4, - "value": "9002" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7843, + "offset": 393, "length": 4, - "value": "9004" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8073, - "length": 2, - "value": "91" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8182, - "length": 2, - "value": "92" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8296, - "length": 2, - "value": "94" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8476, - "length": 2, - "value": "95" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8576, - "length": 2, - "value": "96" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8712, - "length": 2, - "value": "97" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8821, - "length": 3, - "value": "101" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8919, - "length": 3, - "value": "102" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9210, - "length": 3, - "value": "103" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9602, - "length": 3, - "value": "104" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9723, - "length": 3, - "value": "201" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9825, - "length": 3, - "value": "202" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9916, - "length": 3, - "value": "203" + "offset": 339, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10006, - "length": 3, - "value": "301" + "offset": 366, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10163, - "length": 3, - "value": "302" + "offset": 393, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10270, - "length": 3, - "value": "303" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10375, - "length": 3, - "value": "304" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10472, - "length": 3, - "value": "305" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10580, - "length": 3, - "value": "306" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10676, - "length": 3, - "value": "307" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10848, - "length": 3, - "value": "308" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 11006, - "length": 3, - "value": "309" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 11188, - "length": 3, - "value": "500" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 2842, - "length": 1, - "value": "1" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 2943, - "length": 1, - "value": "2" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3039, - "length": 1, - "value": "3" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3130, - "length": 1, - "value": "4" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3212, - "length": 1, - "value": "5" + "offset": 339, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3310, - "length": 1, - "value": "6" + "offset": 366, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3488, - "length": 2, - "value": "11" + "offset": 393, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3593, - "length": 2, - "value": "12" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3681, - "length": 2, - "value": "13" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3819, - "length": 2, - "value": "14" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 2, - "value": "15" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 4011, - "length": 2, - "value": "16" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 4113, - "length": 2, - "value": "17" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4220, - "length": 2, - "value": "18" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "BooleanLiteral", + "offset": 2973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4329, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "BooleanLiteral", + "offset": 3005, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", "kind": "IntegerLiteral", - "offset": 4600, - "length": 2, - "value": "21" + "offset": 11176, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4960, - "length": 2, - "value": "22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "StringLiteral", + "offset": 1605, + "length": 16, + "value": "\"ZTCoreKit.SecureDFUService\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", "kind": "IntegerLiteral", - "offset": 5108, - "length": 2, - "value": "23" + "offset": 448, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 5438, - "length": 2, - "value": "24" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 2614, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 5782, - "length": 2, - "value": "25" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 3753, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6040, - "length": 2, - "value": "26" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 4348, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6315, - "length": 2, - "value": "27" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 5101, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6585, - "length": 2, - "value": "28" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 5469, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", "kind": "IntegerLiteral", - "offset": 6751, - "length": 2, - "value": "29" + "offset": 5691, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "30" + "offset": 1656, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7031, - "length": 2, - "value": "31" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7190, - "length": 2, - "value": "32" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7337, - "length": 2, - "value": "33" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 1837, "length": 4, - "value": "9001" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7719, + "offset": 1911, "length": 4, - "value": "9002" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7843, + "offset": 1948, "length": 4, - "value": "9004" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8073, - "length": 2, - "value": "91" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8182, - "length": 2, - "value": "92" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8296, - "length": 2, - "value": "94" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8476, - "length": 2, - "value": "95" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8576, - "length": 2, - "value": "96" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8712, - "length": 2, - "value": "97" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8821, + "offset": 1656, "length": 3, - "value": "101" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8919, - "length": 3, - "value": "102" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9210, - "length": 3, - "value": "103" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9602, - "length": 3, - "value": "104" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9723, - "length": 3, - "value": "201" + "offset": 1837, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9825, - "length": 3, - "value": "202" + "offset": 1911, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9916, - "length": 3, - "value": "203" + "offset": 1948, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10006, - "length": 3, - "value": "301" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10163, - "length": 3, - "value": "302" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10270, - "length": 3, - "value": "303" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10375, - "length": 3, - "value": "304" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10472, - "length": 3, - "value": "305" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10580, - "length": 3, - "value": "306" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10676, + "offset": 1656, "length": 3, - "value": "307" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10848, - "length": 3, - "value": "308" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11006, - "length": 3, - "value": "309" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11188, - "length": 3, - "value": "500" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11874, - "length": 8, - "value": "1" + "offset": 1837, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11949, - "length": 15, - "value": "2" + "offset": 1911, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12021, - "length": 9, - "value": "3" + "offset": 1948, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12129, - "length": 10, - "value": "4" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12216, - "length": 13, - "value": "5" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12290, - "length": 9, - "value": "6" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12344, - "length": 7, - "value": "7" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11874, - "length": 8, - "value": "1" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11949, - "length": 15, - "value": "2" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12021, - "length": 9, - "value": "3" + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12129, - "length": 10, - "value": "4" + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12216, - "length": 13, - "value": "5" + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12290, - "length": 9, - "value": "6" + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12344, - "length": 7, - "value": "7" + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1611, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1637, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1678, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1705, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "FloatLiteral", - "offset": 11636, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, "length": 4, - "value": "30.0" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11665, - "length": 1, - "value": "5" + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "BooleanLiteral", - "offset": 12125, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12175, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12261, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12317, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "StringLiteral", - "offset": 12607, - "length": 40, - "value": "\"org.alamofire.authentication.inspector\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 55, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 1, - "value": "\".ZTSegmentsData\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 398, - "length": 1, - "value": "0" + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1054, - "length": 1, - "value": "0" + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1116, - "length": 1, - "value": "0" + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1353, - "length": 1, - "value": "0" + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 9, - "value": "\"STARTED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 345, - "length": 10, - "value": "\"COMPLETE\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 447, - "length": 12, - "value": "\"PROCESSING\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 503, - "length": 9, - "value": "\"ERRORED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 9, - "value": "\"STARTED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 345, - "length": 10, - "value": "\"COMPLETE\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 447, - "length": 12, - "value": "\"PROCESSING\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 503, - "length": 9, - "value": "\"ERRORED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 632, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 5, - "value": "\"N\/A\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 723, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 17, - "value": "\"ZTCoreKit.BaseDFUPeripheral\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22025, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22235, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22501, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22780, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 973, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1627, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1892, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1961, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 46, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2042, - "length": 1, - "value": "\".Queue\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2079, - "length": 45, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5497, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2118, - "length": 1, - "value": "\".UUID\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 2155, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 3637, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5497, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 499, - "length": 12, - "value": "\"ZTCoreKit.ZTBleManager\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, + "offset": 5469, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 5497, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 5525, "length": 4, - "value": "0x03" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, - "length": 4, - "value": "0x04" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9813, "length": 4, - "value": "0x05" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 9851, "length": 4, - "value": "0x06" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 9889, "length": 4, - "value": "0x07" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 9927, "length": 4, - "value": "0x08" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 976, + "offset": 9965, "length": 4, - "value": "0x09" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10003, "length": 4, - "value": "0x0A" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1134, + "offset": 10041, "length": 4, - "value": "0x0B" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 10079, "length": 4, - "value": "0x0C" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1285, + "offset": 10117, "length": 4, - "value": "0x0D" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 10155, "length": 4, - "value": "0x0E" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, - "length": 4, - "value": "0x00" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 9813, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 9851, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 9889, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, + "offset": 9927, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9965, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 10003, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 10041, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 10079, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 976, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10117, "length": 4, "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1134, + "offset": 10155, "length": 4, "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1210, - "length": 4, - "value": "0x0C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1285, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1354, - "length": 4, - "value": "0x0E" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, + "offset": 9813, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 9851, "length": 4, - "value": "0x01" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 9889, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, + "offset": 9927, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9965, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 10003, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 10041, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 10079, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 976, + "offset": 10117, "length": 4, - "value": "0x09" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10155, "length": 4, - "value": "0x0A" + "value": "0x0B" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "StringLiteral", + "offset": 16773, + "length": 21, + "value": "\"ZTCoreKit.SecureDFUControlPoint\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1134, - "length": 4, - "value": "0x0B" + "offset": 295, + "length": 3, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 337, "length": 4, - "value": "0x0C" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1285, + "offset": 295, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "kind": "IntegerLiteral", + "offset": 337, "length": 4, - "value": "0x0D" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 295, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "kind": "IntegerLiteral", + "offset": 337, "length": 4, - "value": "0x0E" + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUVersion.swift", + "kind": "StringLiteral", + "offset": 1684, + "length": 10, + "value": "\"ZTCoreKit.DFUVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", "kind": "Array", - "offset": 417, + "offset": 453, "length": 25, "value": "[401, 429, 502, 503, 504]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", "kind": "BooleanLiteral", - "offset": 473, + "offset": 509, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", - "kind": "StringLiteral", - "offset": 185, - "length": 20, - "value": "\"arrayParametersKey\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "BooleanLiteral", + "offset": 307, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", - "kind": "Array", - "offset": 799, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "IntegerLiteral", + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 201, - "length": 4, - "value": "0x01" + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 201, - "length": 4, - "value": "0x01" + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", - "kind": "IntegerLiteral", - "offset": 201, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2412, "length": 4, - "value": "0x01" + "value": "\"4C\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2434, + "length": 4, + "value": "\"52\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 337, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2412, "length": 4, - "value": "2" + "value": "\"4C\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2434, + "length": 4, + "value": "\"52\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 337, - "length": 4, - "value": "2" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 337, - "length": 4, - "value": "2" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, - "value": "1" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, - "value": "2" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, - "value": "3" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, - "value": "4" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, - "value": "5" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, - "value": "6" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, - "value": "1" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, - "value": "2" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, - "value": "3" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, - "value": "4" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, - "value": "5" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, - "value": "6" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, + "offset": 2859, + "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, + "offset": 2960, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, + "offset": 3056, + "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, + "offset": 3147, + "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, + "offset": 3229, + "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, + "offset": 3327, + "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 333, - "length": 11, - "value": "\"updatable\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3513, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 370, - "length": 5, - "value": "\"sid\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3618, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 401, - "length": 5, - "value": "\"url\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3706, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 433, - "length": 6, - "value": "\"type\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3844, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 6, - "value": "\"arch\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3936, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 502, - "length": 9, - "value": "\"version\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4036, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "BooleanLiteral", - "offset": 569, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4138, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2504, - "length": 13, - "value": "\"application\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4245, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2554, - "length": 23, - "value": "\"softdevice_bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4354, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2604, - "length": 12, - "value": "\"softdevice\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4633, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2643, - "length": 12, - "value": "\"bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5001, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2504, - "length": 13, - "value": "\"application\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5149, + "length": 2, + "value": "23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2554, - "length": 23, - "value": "\"softdevice_bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2604, - "length": 12, - "value": "\"softdevice\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5829, + "length": 2, + "value": "25" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2643, - "length": 12, - "value": "\"bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6091, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "Dictionary", - "offset": 1576, - "length": 3, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6370, + "length": 2, + "value": "27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1621, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6640, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1737, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6806, + "length": 2, + "value": "29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "StringLiteral", - "offset": 1798, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6934, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1874, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7086, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 2164, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7245, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 2232, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7392, + "length": 2, + "value": "33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "StringLiteral", - "offset": 3812, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7663, + "length": 4, + "value": "9001" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 3835, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7782, + "length": 4, + "value": "9002" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 7906, + "length": 4, + "value": "9004" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8144, + "length": 2, + "value": "91" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 8253, + "length": 2, + "value": "92" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8367, + "length": 2, + "value": "94" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 8547, + "length": 2, + "value": "95" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8647, + "length": 2, + "value": "96" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 8783, + "length": 2, + "value": "97" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 8896, + "length": 3, + "value": "101" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 8994, + "length": 3, + "value": "102" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 9295, + "length": 3, + "value": "103" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 9705, + "length": 3, + "value": "104" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 9830, + "length": 3, + "value": "201" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 9932, + "length": 3, + "value": "202" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 10023, + "length": 3, + "value": "203" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 10113, + "length": 3, + "value": "301" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 10270, + "length": 3, + "value": "302" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 10377, + "length": 3, + "value": "303" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 10482, + "length": 3, + "value": "304" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1607, - "length": 2, - "value": "30" + "offset": 10579, + "length": 3, + "value": "305" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1916, - "length": 2, - "value": "16" + "offset": 10687, + "length": 3, + "value": "306" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 2622, - "length": 2, - "value": "46" + "offset": 10783, + "length": 3, + "value": "307" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTMediaFileTemplate.swift", - "kind": "StringLiteral", - "offset": 310, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 10982, + "length": 3, + "value": "308" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "StringLiteral", - "offset": 1367, - "length": 26, - "value": "\"Sec-WebSocket-Extensions\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 11168, + "length": 3, + "value": "309" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 11366, + "length": 3, + "value": "500" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 1524, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 2859, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 3451, + "offset": 2960, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 3461, - "length": 6, - "value": "0x2000" + "offset": 3056, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 3504, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3147, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 5784, + "offset": 3229, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 5794, - "length": 6, - "value": "0x2000" + "offset": 3327, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 5837, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3513, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", - "kind": "StringLiteral", - "offset": 318, - "length": 32, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3618, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", - "kind": "StringLiteral", - "offset": 335, - "length": 1, - "value": "\".networklogger\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3706, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 947, - "length": 4, - "value": "0x80" + "offset": 3844, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 984, - "length": 4, - "value": "0x0F" + "offset": 3936, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1021, - "length": 4, - "value": "0x70" + "offset": 4036, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1058, - "length": 4, - "value": "0x40" + "offset": 4138, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1095, - "length": 4, - "value": "0x80" + "offset": 4245, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1132, - "length": 4, - "value": "0x7F" + "offset": 4354, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1169, + "offset": 4633, "length": 2, - "value": "32" + "value": "21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 5001, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 5149, + "length": 2, + "value": "23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 5481, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 5829, + "length": 2, + "value": "25" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, - "length": 4, - "value": "1005" + "offset": 6091, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, - "length": 4, - "value": "1007" + "offset": 6370, + "length": 2, + "value": "27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, - "length": 4, - "value": "1008" + "offset": 6640, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 6806, + "length": 2, + "value": "29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 6934, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 7086, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 7245, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 7392, + "length": 2, + "value": "33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, + "offset": 7663, "length": 4, - "value": "1005" + "value": "9001" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, + "offset": 7782, "length": 4, - "value": "1007" + "value": "9002" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, + "offset": 7906, "length": 4, - "value": "1008" + "value": "9004" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 8144, + "length": 2, + "value": "91" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 8253, + "length": 2, + "value": "92" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 8367, + "length": 2, + "value": "94" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 8547, + "length": 2, + "value": "95" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 8647, + "length": 2, + "value": "96" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, - "length": 4, - "value": "1005" + "offset": 8783, + "length": 2, + "value": "97" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, - "length": 4, - "value": "1007" + "offset": 8896, + "length": 3, + "value": "101" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, - "length": 4, - "value": "1008" + "offset": 8994, + "length": 3, + "value": "102" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 9295, + "length": 3, + "value": "103" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, + "offset": 9705, "length": 3, - "value": "0x0" + "value": "104" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 9830, "length": 3, - "value": "0x1" + "value": "201" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 9932, "length": 3, - "value": "0x2" + "value": "202" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, + "offset": 10023, "length": 3, - "value": "0x8" + "value": "203" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 10113, "length": 3, - "value": "0x9" + "value": "301" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, + "offset": 10270, "length": 3, - "value": "0xA" + "value": "302" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 10377, "length": 3, - "value": "100" + "value": "303" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, + "offset": 10482, "length": 3, - "value": "0x0" + "value": "304" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 10579, "length": 3, - "value": "0x1" + "value": "305" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 10687, "length": 3, - "value": "0x2" + "value": "306" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, + "offset": 10783, "length": 3, - "value": "0x8" + "value": "307" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 10982, "length": 3, - "value": "0x9" + "value": "308" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, + "offset": 11168, "length": 3, - "value": "0xA" + "value": "309" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 11366, "length": 3, - "value": "100" + "value": "500" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, - "length": 3, - "value": "0x0" + "offset": 12066, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, - "length": 3, - "value": "0x1" + "offset": 12141, + "length": 15, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, - "length": 3, - "value": "0x2" + "offset": 12213, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, - "length": 3, - "value": "0x8" + "offset": 12321, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 3, - "value": "0x9" + "offset": 12408, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, - "length": 3, - "value": "0xA" + "offset": 12482, + "length": 9, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, - "length": 3, - "value": "100" + "offset": 12536, + "length": 7, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "StringLiteral", - "offset": 2524, - "length": 31, - "value": "\"com.vluxe.starscream.wsframer\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12066, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "Array", - "offset": 2569, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12141, + "length": 15, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "BooleanLiteral", - "offset": 2680, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12213, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "BooleanLiteral", - "offset": 2740, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12321, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTRequestChain.swift", - "kind": "Array", - "offset": 436, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12408, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1657, - "length": 1, - "value": "1" + "offset": 12482, + "length": 9, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1694, - "length": 1, - "value": "1" + "offset": 12536, + "length": 7, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1742, - "length": 1, - "value": "0" + "offset": 1731, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1918, - "length": 1, - "value": "0" + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Save.swift", - "kind": "BooleanLiteral", - "offset": 3796, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTFileManager+ZIP.swift", - "kind": "BooleanLiteral", - "offset": 1855, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1731, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTFileManager+ZIP.swift", - "kind": "BooleanLiteral", - "offset": 5527, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 534, - "length": 1, - "value": "0" + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 597, - "length": 1, - "value": "0" + "offset": 1731, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 783, - "length": 1, - "value": "0" + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 835, - "length": 1, - "value": "0" + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2693, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2803, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2900, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", - "kind": "BooleanLiteral", - "offset": 240, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", - "kind": "BooleanLiteral", - "offset": 274, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTURLTransform.swift", - "kind": "BooleanLiteral", - "offset": 1794, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/crc32.swift", - "kind": "Array", - "offset": 1142, - "length": 3283, - "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2693, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTAuthManager.swift", - "kind": "BooleanLiteral", - "offset": 2062, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2803, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 1585, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 1769, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 11873, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 12156, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 14664, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2693, + "length": 4, + "value": "0x05" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2803, + "length": 4, + "value": "0x06" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "StringLiteral", + "offset": 5445, + "length": 13, + "value": "\"ZTCoreKit.ButtonlessDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTMediaUploader.swift", - "kind": "Array", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiService.swift", + "kind": "BooleanLiteral", + "offset": 3527, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1609, + "length": 28, + "value": "\"yyyy-MM-dd'T'HH:mm:ssZZZZZ\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1647, + "length": 13, + "value": "\"en_US_POSIX\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1492, + "length": 22, + "value": "\"ZTCoreKit.ZTISO8601DateTransform\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", "offset": 279, - "length": 2, - "value": "[]" + "length": 9, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 524, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 601, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, + "value": "5" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", "kind": "IntegerLiteral", - "offset": 798, - "length": 1, + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "FloatLiteral", - "offset": 858, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 5, + "value": "6" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "kind": "StringLiteral", + "offset": 833, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", "kind": "IntegerLiteral", - "offset": 907, + "offset": 1084, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 960, - "length": 2, - "value": "\"\"" + "offset": 2546, + "length": 13, + "value": "\"application\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1503, - "length": 9, - "value": "\"Unknown\"" + "offset": 2596, + "length": 23, + "value": "\"softdevice_bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1585, - "length": 9, - "value": "\"Unknown\"" + "offset": 2646, + "length": 12, + "value": "\"softdevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1623, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "offset": 2685, + "length": 12, + "value": "\"bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1667, - "length": 9, - "value": "\"Unknown\"" + "offset": 2546, + "length": 13, + "value": "\"application\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1748, - "length": 9, - "value": "\"Unknown\"" + "offset": 2596, + "length": 23, + "value": "\"softdevice_bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1793, - "length": 54, - "value": "\"\"" + "offset": 2646, + "length": 12, + "value": "\"softdevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1816, - "length": 1, - "value": "\" \"" + "offset": 2685, + "length": 12, + "value": "\"bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 1846, - "length": 1, - "value": "\"\"" + "offset": 428, + "length": 10, + "value": "\"Database\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "IntegerLiteral", - "offset": 2029, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 492, + "length": 6, + "value": "\"momd\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2111, - "length": 210, + "offset": 993, + "length": 46, + "value": "\"Failed to find model URL in framework bundle\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 1150, + "length": 47, + "value": "\"Failed to create model from file: \"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 1196, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2125, - "length": 1, - "value": "\"\/\"" + "offset": 1436, + "length": 27, + "value": "\"Unresolved error \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2139, + "offset": 1462, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1733, "length": 1, - "value": "\" (\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2157, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1826, "length": 1, - "value": "\"; \"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2168, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1912, "length": 1, - "value": "\"; build:\"" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2187, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1999, "length": 1, - "value": "\"; model:\"" + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2210, - "length": 5, - "value": "\"n\/a\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2071, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2216, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2158, "length": 1, - "value": "\"; brand:Apple) SDK: \"" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2263, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2244, "length": 1, - "value": "\"\/\"" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2281, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2320, "length": 1, - "value": "\"-\"" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2319, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2403, "length": 1, - "value": "\";\"" + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2339, - "length": 8, - "value": "\"ZTCore\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2608, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2591, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2614, - "length": 27, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1912, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2628, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1999, "length": 1, - "value": "\".\"" + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2640, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2071, "length": 1, - "value": "\"\"" + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2659, - "length": 8, - "value": "\"ZTCore\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2158, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 37254, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2244, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 39015, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2320, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 41051, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2403, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 48973, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 50329, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2608, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", "kind": "StringLiteral", - "offset": 50782, - "length": 2, - "value": "\"\"" + "offset": 2654, + "length": 7, + "value": "\"ZTCoreKit.DFUUuid\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 51214, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Peripherals\/LegacyDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 1706, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", "kind": "StringLiteral", - "offset": 51928, - "length": 2, - "value": "\"\"" + "offset": 2272, + "length": 24, + "value": "\"ZTCore.log.notifcation\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", "kind": "StringLiteral", - "offset": 51952, - "length": 2, - "value": "\"\"" + "offset": 2370, + "length": 29, + "value": "\"ZTCore.log.notification.ble\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 64138, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 64158, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 1376, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 11923, - "length": 25, - "value": "[\"br\", \"gzip\", \"deflate\"]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 11990, - "length": 19, - "value": "[\"gzip\", \"deflate\"]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 12468, - "length": 1, - "value": "6" + "offset": 403, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 12910, - "length": 20, - "value": "\"CFBundleExecutable\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13018, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, "length": 3, - "value": "\"\/\"" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13061, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13098, - "length": 20, - "value": "\"CFBundleIdentifier\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13134, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13175, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13219, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13258, - "length": 17, - "value": "\"CFBundleVersion\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13291, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13445, - "length": 73, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13469, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13493, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13517, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13719, - "length": 5, - "value": "\"iOS\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 14193, - "length": 28, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14203, - "length": 1, - "value": "\" \"" + "offset": 288, + "length": 9, + "value": "\"STARTED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14220, - "length": 1, - "value": "\"\"" + "offset": 345, + "length": 10, + "value": "\"COMPLETE\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14266, - "length": 22, - "value": "\"Alamofire\/\"" + "offset": 447, + "length": 12, + "value": "\"PROCESSING\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14287, - "length": 1, - "value": "\"\"" + "offset": 503, + "length": 9, + "value": "\"ERRORED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14314, - "length": 98, - "value": "\"\"" + "offset": 288, + "length": 9, + "value": "\"STARTED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14328, - "length": 1, - "value": "\"\/\"" + "offset": 345, + "length": 10, + "value": "\"COMPLETE\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14342, - "length": 1, - "value": "\" (\"" + "offset": 447, + "length": 12, + "value": "\"PROCESSING\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14353, - "length": 1, - "value": "\"; build:\"" + "offset": 503, + "length": 9, + "value": "\"ERRORED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14372, - "length": 1, - "value": "\"; \"" + "offset": 632, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14390, - "length": 1, - "value": "\") \"" + "offset": 673, + "length": 5, + "value": "\"N\/A\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14411, - "length": 1, + "offset": 723, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "offset": 534, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "offset": 597, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "offset": 783, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" + "offset": 836, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1678, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1705, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTReachability.swift", + "kind": "BooleanLiteral", + "offset": 1993, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", + "kind": "BooleanLiteral", + "offset": 240, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", + "kind": "BooleanLiteral", + "offset": 274, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "StringLiteral", - "offset": 1609, - "length": 28, - "value": "\"yyyy-MM-dd'T'HH:mm:ssZZZZZ\"" + "offset": 305, + "length": 30, + "value": "\"com.zhortech.ztcore.activity\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", - "kind": "StringLiteral", - "offset": 1647, - "length": 13, - "value": "\"en_US_POSIX\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", + "kind": "Array", + "offset": 1390, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", - "kind": "StringLiteral", - "offset": 1492, - "length": 22, - "value": "\"ZTCoreKit.ZTISO8601DateTransform\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", + "kind": "Array", + "offset": 1459, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "IntegerLiteral", - "offset": 1357, + "offset": 7297, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 7317, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1357, - "length": 1, - "value": "1" + "offset": 1668, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 1900, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1357, + "offset": 2086, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 2180, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTReachability.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", "kind": "BooleanLiteral", - "offset": 1993, - "length": 5, - "value": "false" + "offset": 573, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", + "kind": "BooleanLiteral", + "offset": 1790, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, - "length": 5, - "value": "1000" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", + "kind": "BooleanLiteral", + "offset": 10038, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 333, + "length": 11, + "value": "\"updatable\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 370, "length": 5, - "value": "1000" + "value": "\"sid\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 401, + "length": 5, + "value": "\"url\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, - "length": 5, - "value": "1000" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 6, + "value": "\"type\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", - "kind": "BooleanLiteral", - "offset": 2933, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 466, + "length": 6, + "value": "\"arch\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", - "kind": "BooleanLiteral", - "offset": 3694, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 9, + "value": "\"version\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", "kind": "BooleanLiteral", - "offset": 4495, + "offset": 569, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "BooleanLiteral", - "offset": 14563, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/crc32.swift", "kind": "Array", - "offset": 17637, - "length": 2, - "value": "[]" + "offset": 1142, + "length": 3281, + "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", "kind": "BooleanLiteral", - "offset": 26709, - "length": 4, - "value": "true" + "offset": 2553, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", "kind": "IntegerLiteral", - "offset": 31004, + "offset": 12379, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37719, - "length": 7, - "value": "\":#[]@\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 14368, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37820, - "length": 13, - "value": "\"!$&'()*+,;=\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 14434, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", "kind": "StringLiteral", - "offset": 37891, - "length": 54, + "offset": 541, + "length": 55, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", "kind": "StringLiteral", - "offset": 37920, + "offset": 580, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37944, - "length": 2, - "value": "\"\"" + "value": "\".ZTSegmentsData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", - "kind": "Array", - "offset": 5684, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", + "kind": "BooleanLiteral", + "offset": 8629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 6545, + "offset": 5720, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 7222, + "offset": 6581, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 5141, + "offset": 7258, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5302, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "kind": "BooleanLiteral", + "offset": 2933, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", "kind": "BooleanLiteral", - "offset": 5412, + "offset": 3694, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5623, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "kind": "BooleanLiteral", + "offset": 4495, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5741, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5941, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 6036, - "length": 1, - "value": "0" + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "BooleanLiteral", - "offset": 6379, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 597, + "length": 4, + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 7652, - "length": 1, - "value": "0" + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 9232, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "StringLiteral", - "offset": 40931, - "length": 13, - "value": "\"ZTCoreKit.ZTDataRequest\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 597, + "length": 4, + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 47949, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 48116, - "length": 1, - "value": "0" + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 48236, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 52978, + "offset": 597, "length": 4, - "value": "1024" + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 45127, - "length": 19, - "value": "\"ZTCoreKit.ZTDataStreamRequest\"" + "offset": 213, + "length": 13, + "value": "\"ZTCoreKit.ZTDefaultsKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56284, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 426, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56289, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 465, "length": 1, - "value": "0" + "value": "\".ZTApiKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56441, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 52, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 565, "length": 1, - "value": "1" + "value": "\".ZTApiSecret\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56446, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 625, + "length": 48, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 664, "length": 1, - "value": "1" + "value": "\".ZTAppId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 58233, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 58951, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 1, + "value": "\".ZTOrgCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 59181, - "length": 36, - "value": "\"Alamofire_\"" + "offset": 821, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 59216, + "offset": 860, "length": 1, + "value": "\".ZTAppType\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 923, + "length": 52, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 55919, - "length": 17, - "value": "\"ZTCoreKit.ZTDownloadRequest\"" + "offset": 962, + "length": 1, + "value": "\".ZTAuthToken\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 69086, - "length": 15, - "value": "\"ZTCoreKit.ZTUploadRequest\"" + "offset": 1029, + "length": 55, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Reading.swift", - "kind": "BooleanLiteral", - "offset": 1165, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1068, + "length": 1, + "value": "\".ZTRefreshToken\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Reading.swift", - "kind": "BooleanLiteral", - "offset": 4413, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1135, + "length": 54, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 606, - "length": 24, - "value": "\"com.zhortech.ZTCoreKit\"" + "offset": 1174, + "length": 1, + "value": "\".ZTTokenExpire\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 651, - "length": 11, - "value": "\"ZTCoreKit\"" + "offset": 1241, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 689, - "length": 4, - "value": "\"v1\"" + "offset": 1280, + "length": 1, + "value": "\".ZTAppUserId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 743, - "length": 7, - "value": "\"1.3.2\"" + "offset": 1346, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 797, - "length": 5, - "value": "\"1.0\"" + "offset": 1385, + "length": 1, + "value": "\".ZTChunkDuration\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 3096, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4215, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1492, "length": 1, - "value": "2" + "value": "\".ZTAuthData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4279, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 63, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1609, "length": 1, - "value": "0" + "value": "\".lastDeviceSerialNumber\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4332, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1690, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1729, "length": 1, - "value": "0" + "value": "\".lastActivityId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4502, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1804, + "length": 57, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1843, "length": 1, - "value": "0" + "value": "\".lastDeviceQRCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 5008, - "length": 4, - "value": "true" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1914, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1953, + "length": 1, + "value": "\".lastQRCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 6301, - "length": 14, - "value": "\"3.1.0.PS.0.0\"" + "offset": 2053, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 6392, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 1, + "value": "\".startAppVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 6497, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2159, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 6828, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2198, + "length": 1, + "value": "\".deviceId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 6980, - "length": 2, - "value": "60" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 54, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 9479, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 1, + "value": "\".pairingMethod\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 10328, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2370, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 11362, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2409, + "length": 1, + "value": "\".pairingDate\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 12680, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2518, "length": 1, - "value": "5" + "value": "\".startFwVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 12697, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2588, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 15423, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 1, + "value": "\".startFwType\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 16447, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2692, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUVersion.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1684, - "length": 10, - "value": "\"ZTCoreKit.DFUVersion\"" + "offset": 2731, + "length": 1, + "value": "\".fwVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1220, - "length": 32, - "value": "\"com.vluxe.starscream.websocket\"" + "offset": 2791, + "length": 47, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "Array", - "offset": 1266, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2830, + "length": 1, + "value": "\".fwType\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "BooleanLiteral", - "offset": 1375, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2891, + "length": 53, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "BooleanLiteral", - "offset": 1467, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2930, + "length": 1, + "value": "\".wasDfuCopied\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "IntegerLiteral", - "offset": 1823, - "length": 2, - "value": "10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 3000, + "length": 59, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1057, - "length": 21, - "value": "\"ZTCoreKit.ZTFoundationTransport\"" + "offset": 3039, + "length": 1, + "value": "\".ZTIsStorageUpdated\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1481, "length": 39, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1506, "length": 1, "value": "\".SavedDevices\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1622, "length": 40, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1647, "length": 1, "value": "\".SavedRequests\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1773, "length": 47, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1798, "length": 1, "value": "\".ActivityAppDataStore\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1946, "length": 43, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1971, "length": 1, "value": "\".ManufacturerData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "IntegerLiteral", "offset": 2031, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1383, - "length": 1, - "value": "0" + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", - "kind": "BooleanLiteral", - "offset": 1402, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", - "kind": "BooleanLiteral", - "offset": 1492, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1067, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, "length": 4, - "value": "true" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1148, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1279, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 697, "length": 4, - "value": "true" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1403, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, "length": 4, - "value": "true" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1751, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, "length": 4, - "value": "true" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 1, - "value": "3" + "offset": 976, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2026, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2143, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2263, - "length": 2, - "value": "50" + "offset": 1210, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2371, - "length": 1, - "value": "3" + "offset": 1285, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2562, + "offset": 1354, "length": 4, - "value": "1200" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2691, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2820, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2958, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, "length": 4, - "value": "true" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 3068, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3169, - "length": 2, - "value": "50" + "offset": 596, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4069, - "length": 2, - "value": "20" + "offset": 697, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Peripherals\/LegacyDFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 1731, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "StringLiteral", - "offset": 1385, - "length": 43, - "value": "\"com.vluxe.starscream.server.networkstream\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "Array", - "offset": 1442, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 976, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "BooleanLiteral", - "offset": 3070, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, "length": 4, - "value": "true" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "BooleanLiteral", - "offset": 3155, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 668, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1210, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "StringLiteral", - "offset": 702, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1285, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "StringLiteral", - "offset": 753, - "length": 33, - "value": "\"com.vluxe.starscream.writequeue\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1354, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 835, - "length": 1, - "value": "1" + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 862, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 944, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, "length": 4, - "value": "true" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTEventMonitor.swift", - "kind": "StringLiteral", - "offset": 17719, - "length": 37, - "value": "\"org.alamofire.compositeEventMonitor\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 4, + "value": "0x05" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 4, + "value": "0x06" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "0x08" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 976, + "length": 4, + "value": "0x09" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, + "length": 4, + "value": "0x0A" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1210, + "length": 4, + "value": "0x0C" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1285, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1354, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" } ] } \ No newline at end of file diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.private.swiftinterface index f984c16..0b7657a 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,18 +1,13 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit -import Combine -import CommonCrypto -import Compression +// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit import CoreBluetooth -import CoreFoundation +import CoreData import CoreTelephony import Dispatch import Foundation -import MobileCoreServices import Network import ObjectiveC -import Security import Swift import SystemConfiguration import UIKit @@ -21,175 +16,158 @@ import _StringProcessing import _SwiftConcurrencyShims import os.log import os -import zlib -public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case timestamp - case modeId - case precisionMode - case numberOfSteps - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +public protocol ZTEnum : Swift.Decodable, Swift.Encodable { + var description: Swift.String { get } } -extension Foundation.Data { - public func macAddress() -> Swift.String? - public var bytes: [Swift.UInt8] { - get - } - public var hexDescription: Swift.String { +extension ZTCoreKit.ZTEnum { + public var description: Swift.String { get } - public init?(hex: Swift.String) - public func getUInt(offset: Swift.Int) -> Swift.UInt16 - public func getUInt32(offset: Swift.Int) -> Swift.UInt32 - public func getFloat(offset: Swift.Int) -> Swift.Float - public func getByte(at index: Swift.Int) -> Swift.Int8 - public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 - public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 - public mutating func append(byte data: Swift.Int8) - public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) - public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -extension Foundation.Data { - public func dataObject(at index: Foundation.Data.Index = 0) -> T - public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int - public func object(at offset: Swift.Int) -> T +@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { + public var name: Swift.String + public var description: Swift.String? + public var mimeType: Swift.String? + public var key: Swift.String? + public var url: Swift.String? + public var data: Foundation.Data? + convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) + required convenience public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Swift.Numeric { - public var data: Foundation.Data { +public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void +public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void +public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void +public typealias ZTCompletion = (() -> Swift.Void) +public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { + public var rawData: Foundation.Data? + public var right: Swift.UInt8 + public var left: Swift.UInt8 + public var min: Swift.UInt8 { get } -} -public struct ZTAES { - public let key: Foundation.Data - public let iv: Foundation.Data - public var algorithm: CommonCrypto.CCAlgorithm { + public var description: Swift.String { get } - public var options: CommonCrypto.CCOptions { + public init() + public init(data: Foundation.Data) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static let uuid: Swift.String + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var encOption: CommonCrypto.CCOptions { + public var byte1: Swift.UInt8? { get } - public var decOption: CommonCrypto.CCOptions { + public var byte2: Swift.UInt8? { get } - public var successStatus: Swift.UInt32 { + public var byte3: Swift.UInt8? { get } - public func evaluate(_ current: CommonCrypto.CCCryptorStatus, with needed: Swift.UInt32) -> Swift.Bool - public typealias error = ZTCoreKit.ZTPlist.Error - public init?(key: Swift.String, iv: Swift.String) - public func encrypt(data: Foundation.Data) -> Foundation.Data? - public func decrypt(data: Foundation.Data?) -> Foundation.Data? - public func crypt(data: Foundation.Data?, option: CommonCrypto.CCOperation) -> Foundation.Data? -} -@_hasMissingDesignatedInitializers open class ZTRetryPolicy { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTConnectionLostRetryPolicy : ZTCoreKit.ZTRetryPolicy { - @objc deinit + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTMessageGeneralState { + public var activityStartedRight: Swift.Bool { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -extension Foundation.UserDefaults { - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { + public var activityStartedLeft: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { + public var pairIsConnected: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { + public var memsHasError: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { + public var firmwareDifferent: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { + public var actualState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { + public var previousState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { + public var description: Swift.String { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { +} +@_hasMissingDesignatedInitializers public class ZTCommandResponse { + public var bytes: [Swift.UInt8] + public var rightModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { + public var leftModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { + public var command: ZTCoreKit.ZTCommand? { get - set } - public subscript(key: Swift.String) -> Any? { + public var status: ZTCoreKit.ZTCommandStatus? { get - set(value) } - public func value(forKey key: Swift.String) -> T? - public func clear(_ key: Swift.String) - public func clear(_ key: ZTCoreKit.ZTDefaultsKey) - public func clearAll() + @objc deinit } -public struct ZTPairedDevice : Swift.Codable { - public var macAddress: Swift.String { +public enum ZTCommandStatus : Swift.UInt8 { + case success + case busy + case invalidParam + case invalidState + case forbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerresponse + public var description: Swift.String { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -public enum ZTDfuPackageType : Swift.String { - case APP - case BL - case SD - case SD_BL - case SD_BL_APP - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers final public class ZTSettings { + public static let shared: ZTCoreKit.ZTSettings + final public var version: Swift.String? + final public var logLevel: ZTCoreKit.ZTLogLevel + final public var environment: ZTCoreKit.ZTEnvironment + final public var autoConnect: Swift.Bool + final public var enableEventLogging: Swift.Bool + final public var shouldObtaineMissedChunks: Swift.Bool + final public var enableRawDataCheck: Swift.Bool + final public var shouldAutoResendData: Swift.Bool + final public var activityDataSyncThreshold: Swift.Int + final public var enableBackgroundDFU: Swift.Bool + final public var enableBackgroundDataStreaming: Swift.Bool + final public var activityChunkStoreForFreeMemory: Swift.Int + final public var activityChunkRetryLimit: Swift.Int + final public var checkFirmwareUpdatePeriod: Swift.Int + final public var enableAnalyticsData: Swift.Bool + final public var autorestartBackgroundDfu: Swift.Bool + final public var getChunksOnApplicationDidBecomeActive: Swift.Bool + final public var enablePacketsDataLogging: Swift.Bool + final public var cachedPacketsBatchUploadSize: Swift.Int + final public var chunkDuration: Swift.Int? { get + set } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + final public func clear() @objc deinit } -@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { +@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { public static let uuid: Swift.String open var data: Foundation.Data? { get @@ -198,336 +176,317 @@ public enum ZTDfuPackageType : Swift.String { override open func valueUpdated() @objc deinit } -public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var bootloaderVersion: Swift.UInt8 { - get - } - public var appSupportVersion: Swift.UInt8 { - get - } - public var softDeviceId: Swift.UInt8 { - get +extension ZTCoreKit.ZTRealtimeMessage { + public struct Status : Swift.CustomStringConvertible { + public var code: ZTCoreKit.ZTAlgoStatus? { + get + } + public var timestamp: Swift.UInt32? { + get + } + public var algoMode: ZTCoreKit.ZTAlgoMode? { + get + } + public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { + get + } + public var consecutiveSteps: Swift.UInt8? { + get + } + public var description: Swift.String { + get + } + public init(data: Foundation.Data) } - public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { +} +public enum ZTBleManagerState : Swift.CustomStringConvertible { + case off + case on + case idle + case scanning + case unauthorized + case resetting + case unknown + case unsupported + public var description: Swift.String { get } - public var description: Swift.String { + public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public enum DfuState : Swift.UInt8 { - case none - case inProgress - case received - case readyForCopy - case activation - case done - case error - case validationError - case activationError - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } -extension Swift.String { - public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String - public var fromBase64: Swift.String? { +public enum ZTRealtimeMetric : Swift.String { + case duration + case steps + case cycleDuration + case stepCadence + case stepSpeed + case distance + case footDistance + case energySum + case walkingQualityScore + case stairsClimbed + case intenseActivity + case slope + case accelerationFoot + case strideLength + case relativePronationAngleFoot + case pronationAngleFFI + case pronationAngleFFO + case plantarFlexionAngularSpeedMaxPropulsion + case symmetry + public func value() -> Swift.UInt8 + public var activityType: ZTCoreKit.ZTActivityType { get } - public var toBase64: Swift.String { + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String - public func substring(range: Foundation.NSRange) -> Swift.String - public func matches(regex: Swift.String) -> [Swift.String] - public static func random(length: Swift.Int = 9) -> Swift.String - public func split(usingRegex pattern: Swift.String) -> [Swift.String] - public func serialNumber() -> Swift.String - public func fileName() -> Swift.String - public func incrementedMacAddress() -> Swift.String } -extension Swift.Int { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +extension ZTCoreKit.ZTRealtimeMetric { + public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) + public init?(name: Swift.String) } -extension Swift.UInt8 { - public var bits: [Swift.UInt8] { - get - } - public var hexValue: Swift.String { - get +open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.Double + public enum Unit : Foundation.TimeInterval { + case seconds + case milliseconds + public init?(rawValue: Foundation.TimeInterval) + public typealias RawValue = Foundation.TimeInterval + public var rawValue: Foundation.TimeInterval { + get + } } + public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + @objc deinit } -extension Swift.UInt16 { - public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] -} -extension Swift.UInt32 { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] -} -extension Swift.UInt64 { - public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] +open class ZTDataTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Data + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.Data? + open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? + @objc deinit } -extension Swift.Double { - public var milliseconds: Swift.Int64 { +@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension Swift.Array where Element == Swift.UInt8 { - public var hex: Swift.String { +public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case defaultMode + case economicMode + case performanceMode + public var parameters: [Swift.UInt8] { get } -} -extension Swift.Dictionary { - public func merge(dict: [Key : Value]) -> [Key : Value] -} -extension Foundation.Date { - public var timestamp: Swift.Int64 { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - public var apiFormat: Swift.String { - get +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { + @objc public func pause() + @objc public func resume() + @objc public func abort() -> Swift.Bool + @objc public func restart() + @objc public var paused: Swift.Bool { + @objc get } - public var logFormat: Swift.String { - get + @objc public var aborted: Swift.Bool { + @objc get } + @objc deinit } -extension Swift.Array where Element : CoreBluetooth.CBPeripheral { - public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool -} -extension Swift.Array { - public func chunked(into size: Swift.Int = 1000) -> [[Element]] -} -extension Swift.Array where Element == Swift.String { - public func stringify() -> Swift.String -} -extension CoreBluetooth.CBCharacteristic { - public func notifyValue(_ isEnabled: Swift.Bool) - public func readValue() - @discardableResult - public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { + public var left: Swift.UInt32 + public var right: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTEnvironment { - case dev - case staging - case production - case zcdev - case zcstaging - case zcproduction - public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { +extension ZTCoreKit.ZTMessageInactivityTimeout { + public var description: Swift.String { get } } -public enum ZTModuleSide : Swift.String, Swift.Codable { - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } +public protocol ZTCBCentralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + func stopScan() + func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] + func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] + func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) + func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) + func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) } -public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable -public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable -public protocol ZTEnum : Swift.Decodable, Swift.Encodable { - var description: Swift.String { get } +extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { + public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? + public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] + public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) } -extension ZTCoreKit.ZTEnum { +open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { + public init(formatString: Swift.String) + @objc deinit +} +public struct ZTMapError : Swift.Error { + public var key: Swift.String? + public var currentValue: Any? + public var reason: Swift.String? + public var file: Swift.StaticString? + public var function: Swift.StaticString? + public var line: Swift.UInt? + public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) +} +extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { public var description: Swift.String { get } } -extension ZTCoreKit.ZTArchive { - final public func totalUnitCountForRemoving(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForReading(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForAddingItem(at url: Foundation.URL) -> Swift.Int64 -} -public let defaultReadChunkSize: Swift.UInt32 -public let defaultWriteChunkSize: Swift.UInt32 -public let defaultFilePermissions: Swift.UInt16 -public let defaultDirectoryPermissions: Swift.UInt16 -final public class ZTArchive : Swift.Sequence { - public enum ArchiveError : Swift.Error { - case unreadableArchive - case unwritableArchive - case invalidEntryPath - case invalidCompressionMethod - case invalidStartOfCentralDirectoryOffset - case missingEndOfCentralDirectoryRecord - case invalidNumberOfEntriesOnDisk - case invalidNumberOfEntriesInCentralDirectory - case cancelledOperation - case invalidBufferSize - public static func == (a: ZTCoreKit.ZTArchive.ArchiveError, b: ZTCoreKit.ZTArchive.ArchiveError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get +public protocol ZTPacketCachable : CoreData.NSManagedObject { + associatedtype Activity : ZTCoreKit.ZTActivityCachable + var id: Swift.Int16 { get set } + var createdAt: Foundation.Date { get set } + var fulfilledAt: Foundation.Date { get set } + var sentAt: Foundation.Date { get set } + var timestamp: Swift.Int64 { get set } + var duration: Swift.Int16 { get set } + var statusRawValue: Swift.Int16 { get set } + var status: ZTCoreKit.ZTPacket.Status { get set } + var scheduledDeleted: Foundation.Date? { get set } + var rawData: Foundation.Data? { get set } + var activity: Self.Activity? { get set } + var fwVersion: Swift.String? { get set } + init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, context: CoreData.NSManagedObjectContext, name: Swift.String) +} +extension ZTCoreKit.ZTPacketCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public enum ZTServices { + public enum Primary { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + case test + public var uid: Swift.String { + get + } + public var uuid: CoreBluetooth.CBUUID { + get + } + public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - public enum AccessMode : Swift.UInt { - case create - case read - case update - public init?(rawValue: Swift.UInt) - public typealias RawValue = Swift.UInt - public var rawValue: Swift.UInt { - get + public enum PrimaryOld { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - final public let url: Foundation.URL - final public let accessMode: ZTCoreKit.ZTArchive.AccessMode - public init?(url: Foundation.URL, accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - public init?(data: Foundation.Data = Data(), accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - @objc deinit - final public func makeIterator() -> Swift.AnyIterator - final public subscript(path: Swift.String) -> ZTCoreKit.ZTEntry? { - get - } - public typealias Element = ZTCoreKit.ZTEntry - public typealias Iterator = Swift.AnyIterator -} -final public class ZTSignal { - public typealias ZTSignalCallback = (T) -> Swift.Void - final public var fireCount: Swift.Int { - get - } - final public var retainLastData: Swift.Bool { - get - set - } - final public var lastDataFired: T? { - get + public enum DeviceInformation { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case manufacturerName + case modelNumber + case serialNumber + case firmwareRevision + case hardwareRevision + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - final public var observers: [Swift.AnyObject] { - get + public enum DeviceDFU { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case dfuControlPoint + case dfuPacket + case dfuButtonless + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - public init(retainLastData: Swift.Bool = false) - @discardableResult - final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - final public func fire(_ data: T) - final public func cancelSubscription(for observer: Swift.AnyObject) - final public func cancelAllSubscriptions() - final public func clearLastData() - @objc deinit -} -extension ZTCoreKit.ZTSignal where T == () { - final public func fire() -} -@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { - public typealias ZTSignalCallback = (T) -> Swift.Void - public typealias ZTSignalFilter = (T) -> Swift.Bool - weak final public var observer: Swift.AnyObject? - final public var once: Swift.Bool - @discardableResult - final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription - final public func cancel() - @objc deinit } -infix operator => : AssignmentPrecedence -public func => (signal: ZTCoreKit.ZTSignal, data: T) -public struct ZTMessageTime : Swift.CustomStringConvertible { - public var timestamp: Swift.Int64 - public var side: ZTCoreKit.ZTModuleSide - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { +public enum ZTRealtimeSide : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@objc public protocol DFUPeripheralSelectorDelegate { - @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool - @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? -} -extension ZTCoreKit.ZTArchive { - final public var data: Foundation.Data? { - get - } +@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { + public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? + @objc override dynamic public init() + @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage.Event { - public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case motion - case transition - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension ZTCoreKit.ZTRealtimeMessage { + public struct Acknowledgment : Swift.CustomStringConvertible { + public var command: ZTCoreKit.ZTAlgoCommand? { get } - } - public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case stepForward - case stepBackward - case stepSideLeft - case stepSideRight - case stepUp - case stepDown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { get } - } - public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case low - case medium - case high - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -public class ZTDateTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public enum DFUStreamHexError : Swift.Error { - case invalidHexFile - public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -open class ZTDataTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Data - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.Data? - open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? - @objc deinit -} open class ZTCharacteristic { weak public var service: ZTCoreKit.ZTService? { get @@ -557,951 +516,1103 @@ open class ZTCharacteristic { open func notificationUpdated() @objc deinit } -@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@objc public enum DFUFirmwareType : Swift.UInt8 { + case softdevice = 1 + case bootloader = 2 + case application = 4 + case softdeviceBootloader = 3 + case softdeviceBootloaderApplication = 7 + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) +} +public struct DFUFirmwareError : Swift.Error { + public enum FileType { + case zip + case binOrHex + case dat + public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public let type: ZTCoreKit.DFUFirmwareError.FileType +} +extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +@objc public class DFUFirmware : ObjectiveC.NSObject { + @objc final public let fileName: Swift.String? + @objc final public let fileUrl: Foundation.URL? + @objc public var valid: Swift.Bool { + @objc get + } + @objc public var size: ZTCoreKit.DFUFirmwareSize { + @objc get + } + @objc public var parts: Swift.Int { + @objc get + } + @objc convenience public init(urlToZipFile: Foundation.URL) throws + @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws + @objc convenience public init(zipFile: Foundation.Data) throws + @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) + @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws @objc deinit } -public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { +public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void +@_hasMissingDesignatedInitializers final public class ZTCore { + public static let version: Swift.String + final public var zcVersion: Swift.String + public static let shared: ZTCoreKit.ZTCore + final public let bleManager: ZTCoreKit.ZTBleManager + final public var settings: ZTCoreKit.ZTSettings { get } - public var byte1: Swift.UInt8? { + final public var appUserId: Swift.String? { get } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTMessageChunkConfig { - public var side: ZTCoreKit.ZTModuleSide { + final public var lastCommand: ZTCoreKit.ZTCommand? + final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] + final public var lastActivityId: Swift.String? { get } - public var flag: Swift.UInt8 { + final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { get } - public var description: Swift.String { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } -} -@_hasMissingDesignatedInitializers open class ZTSession { - @objc deinit -} -open class ZTService { - weak public var device: ZTCoreKit.ZTDevice! { + final public var lastDeviceSerialNumber: Swift.String? { get } - final public let service: CoreBluetooth.CBService - public static var serviceType: ZTCoreKit.ZTService.Type { + final public var lastDeviceQRCode: Swift.String? { get } - public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { + final public var lastQRCode: Swift.String? { get } - public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + final public var isDfuInProgress: Swift.Bool { + get + } + weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? + final public var firmwareDfuState: ZTCoreKit.DFUState? { + get + } + final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { + get + set + } + final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> + final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> + final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuCopied: ZTCoreKit.ZTSignal<()> + final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + final public func clearUser() + final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) + @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func stopScan() + final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) + #if compiler(>=5.3) && $AsyncAwait + final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice + #endif + @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") + final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) + final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) + final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func setDeepSleepMode() throws + @objc deinit } -extension ZTCoreKit.ZTService : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +public class ZTDatabaseService where Packet : ZTCoreKit.ZTPacketCachable, Activity : ZTCoreKit.ZTActivityCachable { + public var currentActivityId: Swift.String? + public init(context: CoreData.NSManagedObjectContext = ZTCoreDataStack.shared.context) + @objc deinit + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withId activityId: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withSerial serial: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func createActivity(withId id: Swift.String, updateBlock: ((Activity) -> Swift.Void)? = nil) async throws -> Activity? + #endif + public func updateActivity(id: Swift.String, updateBlock: @escaping (Activity) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + public func deleteActivity(withId id: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + #if compiler(>=5.3) && $AsyncAwait + public func createPacket(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, updateBlock: ((Packet) -> Swift.Void)? = nil) async -> Packet + #endif + public func fetchPackets(for activityId: Swift.String, completion: @escaping (Swift.Result<[Packet], any Swift.Error>) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func fetchPackets(forActivityId activityId: Swift.String, from startId: Swift.Int16? = nil, to lastId: Swift.Int16? = nil, in managedObjectContext: CoreData.NSManagedObjectContext) async throws -> [Packet] + #endif + public func trashOldPackets() + public func updatePackets(for activityId: Swift.String, from startId: Swift.Int16, to endId: Swift.Int16, withStatus newStatus: ZTCoreKit.ZTPacket.Status, completion: @escaping ((any Swift.Error)?) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func add(_ packet: Packet, to activityId: Swift.String, in managedContext: CoreData.NSManagedObjectContext) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + public func update(_ packets: [Packet], withNewStatus newStatus: ZTCoreKit.ZTPacket.Status, in managedContext: CoreData.NSManagedObjectContext) async + #endif + public func update(packet: Packet, updateBlock: @escaping (Packet) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) } -public protocol ZTServiceProtocol : AnyObject { - static var uuid: Swift.String { get } - static var serviceType: ZTCoreKit.ZTService.Type { get } - static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +public class ZTUser : ZTCoreKit.ZTMappable { + public var attributes: [Swift.String : Any] + public var id: Swift.String? + public var organizationId: Swift.String? + public var appId: Swift.String? + public var createdAt: Swift.String? + public var updatedAt: Swift.String? + public var userId: Swift.String? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { +public class ZTAchievement : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var type: Swift.String? + public var activityId: Swift.String? + public var code: Swift.String? + public var appuserId: Swift.String? + public var data: [Swift.String : Any]? + public var duration: Swift.Int64? + public var calories: Swift.Double? + public var createdAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +open class ZTService { + weak public var device: ZTCoreKit.ZTDevice! { + get + } + final public let service: CoreBluetooth.CBService public static var serviceType: ZTCoreKit.ZTService.Type { get } -} -@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) - @objc deinit -} -public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { - case status(id: ZTCoreKit.ZTAlgoStatus) - case startNewChunk - case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) - case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) - case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) - case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) - case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) - public var parameters: [Swift.UInt8] { + public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static let uuid: Swift.String - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) @objc deinit } -public enum ZTRealtimeMetric : Swift.String { - case duration - case steps - case cycleDuration - case stepCadence - case stepSpeed - case distance - case footDistance - case energySum - case walkingQualityScore - case stairsClimbed - case intenseActivity - case slope - case accelerationFoot - case strideLength - case relativePronationAngleFoot - case pronationAngleFFI - case pronationAngleFFO - case plantarFlexionAngularSpeedMaxPropulsion - case symmetry - public func value() -> Swift.UInt8 - public var activityType: ZTCoreKit.ZTActivityType { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +extension ZTCoreKit.ZTService : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +} +extension Foundation.Data { + public var hexString: Swift.String { get } } -extension ZTCoreKit.ZTRealtimeMetric { - public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) - public init?(name: Swift.String) +public protocol DataConvertible { + static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + static func += (lhs: inout Foundation.Data, rhs: Self) } -public protocol ZTCBCentralManagerProtocol : AnyObject { - var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } - var state: CoreBluetooth.CBManagerState { get } - func stopScan() - func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] - func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] - func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) - func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) - func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) +extension ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + public static func += (lhs: inout Foundation.Data, rhs: Self) } -extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { - public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? - public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] - public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) +extension Swift.UInt8 : ZTCoreKit.DataConvertible { } -@objc @_hasMissingDesignatedInitializers open class ZTSessionDelegate : ObjectiveC.NSObject { - @objc deinit +extension Swift.UInt16 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, didBecomeInvalidWithError error: (any Swift.Error)?) +extension Swift.UInt32 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionTaskDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didReceive challenge: Foundation.URLAuthenticationChallenge, completionHandler: @escaping (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didSendBodyData bytesSent: Swift.Int64, totalBytesSent: Swift.Int64, totalBytesExpectedToSend: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, needNewBodyStream completionHandler: @escaping (Foundation.InputStream?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didFinishCollecting metrics: Foundation.URLSessionTaskMetrics) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didCompleteWithError error: (any Swift.Error)?) - @available(macOS 10.13, iOS 11.0, tvOS 11.0, watchOS 4.0, *) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, taskIsWaitingForConnectivity task: Foundation.URLSessionTask) +extension Swift.Int : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDataDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, didReceive data: Foundation.Data) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, willCacheResponse proposedResponse: Foundation.CachedURLResponse, completionHandler: @escaping (Foundation.CachedURLResponse?) -> Swift.Void) +extension Swift.Float : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDownloadDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didResumeAtOffset fileOffset: Swift.Int64, expectedTotalBytes: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didWriteData bytesWritten: Swift.Int64, totalBytesWritten: Swift.Int64, totalBytesExpectedToWrite: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didFinishDownloadingTo location: Foundation.URL) +extension Swift.Double : ZTCoreKit.DataConvertible { } -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +extension Swift.String : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data +} +extension Foundation.Data : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data +} +@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { + @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool + @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? + @objc override dynamic public init() + @objc deinit +} +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.Int16, anchorTime: Swift.Int64?) + public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTPacket) + public static func updateSegments(ids: [Swift.Int16], status: ZTCoreKit.ZTPacket.Status, activityId: Swift.String?) +} +@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public protocol ZTCBPeripheralProtocol { - var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } - var name: Swift.String? { get } - var rssi: Foundation.NSNumber? { get } - var state: CoreBluetooth.CBPeripheralState { get } - var services: [CoreBluetooth.CBService]? { get } - var identifier: Foundation.UUID { get } - func discoverServices(_: [CoreBluetooth.CBUUID]?) - func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) - func readValue(for: CoreBluetooth.CBCharacteristic) - func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) - func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) -} -extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { -} -extension ZTCoreKit.ZTPlist { - public func asCollection() -> [Foundation.NSDictionary.Element] - public func set(_ rawValue: Any?, for key: Swift.String) - public func get(_ key: Swift.String) -> Any? - public func clean() - public func remove(_ keys: Swift.String...) - public func remove(keys collection: [Swift.String]) - public func bool(_ key: Swift.String) -> Swift.Bool? - public func int(_ key: Swift.String) -> Swift.Int? - public func double(_ key: Swift.String) -> Swift.Double? - public func float(_ key: Swift.String) -> Swift.Float? - public func string(_ key: Swift.String) -> Swift.String? - public func dictionary(_ key: Swift.String) -> [Swift.String : Any]? - public func collection(_ key: Swift.String) -> [Any]? - public func date(_ key: Swift.String) -> Foundation.Date? - public func data(_ key: Swift.String) -> Foundation.Data? - public func null(_ key: Swift.String) -} -public struct ZTRealtimeMessage : Swift.CustomStringConvertible { - public var description: Swift.String { - get +extension ZTCoreKit.ZTPacket { + public enum Status : Swift.Int16, Swift.Codable, Swift.Equatable { + case new + case readyToSend + case sending + case sent + case error + public init?(rawValue: Swift.Int16) + public typealias RawValue = Swift.Int16 + public var rawValue: Swift.Int16 { + get + } } - public enum Side : Swift.UInt8 { - case none - case left - case right - case both + public enum TimestampType : Swift.UInt8, Swift.Codable { + case unknown + case start + case stop + case pause + case resume + case reboot + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } - public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + public enum BmTimestampType : Swift.UInt8, Swift.Codable { + case unknown + case shoeWearOn + case shoeWearOff + case walkingStart + case walkingStop + case runningStart + case runningStop + case cyclingStart + case cyclingStop + case transportStart + case transportStop + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public enum PacketType : Swift.UInt8, Swift.Codable { + public static let maxDataValue: Swift.UInt8 + case unknown + case quantification + case walkAnalysis + case runAnalysis + case stairs + case cycling + case jump + case safety + case staticActivity + case debug + case debugTelemetry + case debugProba + case bmTimestampPacket + case fwTimestampPacket + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { + final public var advertisingServices: [CoreBluetooth.CBUUID]? + final public var managerState: ZTCoreKit.ZTBleManagerState { get + set } - public var content: [Swift.UInt8] { + final public class var instance: ZTCoreKit.ZTBleManager { get } - public init(bytes: [Swift.UInt8]) - public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { get } - public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + final public var macAddress: Swift.String? { get } - public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? + final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { get } - public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + final public var product: ZTCoreKit.ZTProductType? { get + set } -} -@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() + final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + get + } + final public var scanning: Swift.Bool { + get + } + final public var isDfuMode: Swift.Bool { + get + } + final public let onBluetoothStateChange: ZTCoreKit.ZTSignal + final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onDeviceDiscovered: ZTCoreKit.ZTSignal + final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> @objc deinit } -public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { - public var left: Swift.UInt32 - public var right: Swift.UInt32 - public init(bytes: [Swift.UInt8]) +extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +} +public struct ZTPairedDevice : Swift.Codable { + public var macAddress: Swift.String { + get + } public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageInactivityTimeout { - public var description: Swift.String { +public enum DFUStreamHexError : Swift.Error { + case invalidHexFile + public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -@objc public enum DFUFirmwareType : Swift.UInt8 { - case softdevice = 1 - case bootloader = 2 - case application = 4 - case softdeviceBootloader = 3 - case softdeviceBootloaderApplication = 7 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void +public enum ZTScannerResult { + case success(device: ZTCoreKit.ZTDevice) + case cancelled + case failed((any Swift.Error)?) +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit } -public struct DFUFirmwareError : Swift.Error { - public enum FileType { - case zip - case binOrHex - case dat - public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +public enum DFUStreamZipError : Swift.Error { + case noManifest + case invalidManifest + case fileNotFound + case typeNotFound + public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get } - public let type: ZTCoreKit.DFUFirmwareError.FileType } -extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { +extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { public var errorDescription: Swift.String? { get } } -@objc public class DFUFirmware : ObjectiveC.NSObject { - @objc final public let fileName: Swift.String? - @objc final public let fileUrl: Foundation.URL? - @objc public var valid: Swift.Bool { - @objc get - } - @objc public var size: ZTCoreKit.DFUFirmwareSize { - @objc get - } - @objc public var parts: Swift.Int { - @objc get +@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get } - @objc convenience public init(urlToZipFile: Foundation.URL) throws - @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws - @objc convenience public init(zipFile: Foundation.Data) throws - @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) - @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Status : Swift.CustomStringConvertible { - public var code: ZTCoreKit.ZTAlgoStatus? { - get - } - public var timestamp: Swift.UInt32? { - get - } - public var algoMode: ZTCoreKit.ZTAlgoMode? { - get - } - public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { - get - } - public var consecutiveSteps: Swift.UInt8? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) +public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { + case status(id: ZTCoreKit.ZTAlgoStatus) + case startNewChunk + case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) + case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) + case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) + case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) + case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) + public var parameters: [Swift.UInt8] { + get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { + @objc open var softdevice: Swift.UInt32 { + get + } + @objc open var bootloader: Swift.UInt32 { + get + } + @objc open var application: Swift.UInt32 { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() @objc deinit } -infix operator <<- : DefaultPrecedence -infix operator ->> : DefaultPrecedence -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) -public func ->> (left: T, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) -public func ->> (left: T?, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { - public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? - @objc override dynamic public init() - @objc deinit -} -public enum ZTCompressionMethod : Swift.UInt16 { - case none - case deflate - public init?(rawValue: Swift.UInt16) - public typealias RawValue = Swift.UInt16 - public var rawValue: Swift.UInt16 { +extension Swift.String { + public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String + public var fromBase64: Swift.String? { get } -} -public typealias CRC32 = Swift.UInt32 -public typealias ZTConsumer = (_ data: Foundation.Data) throws -> Swift.Void -public typealias ZTProvider = (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data -extension Foundation.Data { - public func crc32(checksum: ZTCoreKit.CRC32) -> ZTCoreKit.CRC32 - public static func compress(size: Swift.Int, bufferSize: Swift.Int, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 - public static func decompress(size: Swift.Int, bufferSize: Swift.Int, skipCRC32: Swift.Bool, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 -} -extension ZTCoreKit.ZTPlist { - public enum Error { - case notFound(at: Foundation.URL?) - case deleted(at: Foundation.URL?) - case parse(at: Foundation.URL?) - case filemanagerRemove(with: any Swift.Error) - case aesKeyFail(key: Swift.String) - case aesInitialVectorFail(iv: Swift.String) - case aesCryptFail(status: Swift.Int32) - case noData - case stringNotInUtf8 - public static let identifier: Swift.String - public func raise() - } -} -extension ZTCoreKit.ZTPlist.Error : Swift.Error, Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var toBase64: Swift.String { get } + public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String + public func substring(range: Foundation.NSRange) -> Swift.String + public func matches(regex: Swift.String) -> [Swift.String] + public static func random(length: Swift.Int = 9) -> Swift.String + public func split(usingRegex pattern: Swift.String) -> [Swift.String] + public func serialNumber() -> Swift.String + public func fileName() -> Swift.String + public func incrementedMacAddress() -> Swift.String } -public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case walking - case running - case pedaling - case jump - case stairsUp - case stairsDown - case standing - case sitting - case kneeling - case tiptoe - case vibration - case slip - case incident - case freewheel - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Int { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +} +extension Swift.UInt8 { + public var bits: [Swift.UInt8] { get } -} -public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { - var rawData: Foundation.Data? { get set } -} -@objc public enum LogLevel : Swift.Int { - case debug = 0 - case verbose = 1 - case info = 5 - case application = 10 - case warning = 15 - case error = 20 - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexValue: Swift.String { get } } -@objc public protocol LoggerDelegate { - @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +extension Swift.UInt16 { + public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { - get - } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - @objc deinit +extension Swift.UInt32 { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { - @objc public func pause() - @objc public func resume() - @objc public func abort() -> Swift.Bool - @objc public func restart() - @objc public var paused: Swift.Bool { - @objc get - } - @objc public var aborted: Swift.Bool { - @objc get - } - @objc deinit +extension Swift.UInt64 { + public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] } -public enum ZTTXPower : Swift.UInt8 { - case dBm0 - case dBm2 - case dBm3 - case dBm4 - case dBm5 - case dBm6 - case dBm7 - case dBm8 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Double { + public var milliseconds: Swift.Int64 { get } } -public class ZTPlist { - public static let folderName: Swift.String - final public let url: Foundation.URL - public var encrypted: Swift.Bool { - get - } - public var encryption: ZTCoreKit.ZTAES? { +extension Swift.Array where Element == Swift.UInt8 { + public var hex: Swift.String { get } - public var dictionary: Foundation.NSMutableDictionary? { +} +extension Swift.Dictionary { + public func merge(dict: [Key : Value]) -> [Key : Value] +} +extension Foundation.Date { + public var timestamp: Swift.Int64 { get } - public var cache: Foundation.NSMutableDictionary? { + public var apiFormat: Swift.String { get - set } - public var volume: Swift.Int64 { + public var logFormat: Swift.String { get } - public var size: Swift.String { +} +extension Swift.Array where Element : CoreBluetooth.CBPeripheral { + public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool +} +extension Swift.Array { + public func chunked(into size: Swift.Int = 1000) -> [[Element]] +} +extension Swift.Array where Element == Swift.String { + public func stringify() -> Swift.String +} +extension CoreBluetooth.CBCharacteristic { + public func notifyValue(_ isEnabled: Swift.Bool) + public func readValue() + @discardableResult + public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +} +public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var fileName: Swift.String { + public var byte1: Swift.UInt8? { get } - public var name: Swift.String { + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkConfig { + public var side: ZTCoreKit.ZTModuleSide { get } - @objc public func save() - public init(insideBundleUrl url: Foundation.URL) - public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName) - convenience public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName, encryption: ZTCoreKit.ZTAES) - public static func delete(_ plist: inout ZTCoreKit.ZTPlist?) - @objc deinit -} -public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { - public var id: Swift.UInt8 { + public var flag: Swift.UInt8 { get } - case generalState - case startNewActivity - case stopNewActivity - case resendData - case deepSleep - case reboot - case detailedBattery - case hardwareInformation - case firmwareInformation - case bootloaderVersion - case setInactivityTimeout - case setDFUInstall - case setDFUMode - case setChunkConfig - case setChunkMinutesInterval - case setChunkSecondsInterval - case selectAlgorithm - case freeMemory - case getTimestamp - case passthroughAlgo - case resetActivity - case getActivityMetadata - case disableHeating - case setHeating - case setTimer - case getTemperature - case getTimer - case startPostureCalibration - case setUserParameters - case resetCalibration - case getCalibrationState - case rawDataSend - case rawDataEnable - case rawDataLookup - case rawDataDebug - case calibrateStatic - case clearCalibrateStatic - case cancelCalibrateStatic - case getCalibrateStaticMessage - case getCalibrateStaticData - case testCalibrateStatic - case memsConfig - case updateTxPower - case updatePhy - case disconnect - case startDFURight - case startDFULeft - case enablePeerConnection - case factoryReset public var description: Swift.String { get } +} +@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + @objc deinit +} +public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { + case undefined + case userRequest + case memoryFull + case inactivity public init?(rawValue: Swift.UInt8) - public typealias AllCases = [ZTCoreKit.ZTCommand] - public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public static var allCases: [ZTCoreKit.ZTCommand] { - get - } public var rawValue: Swift.UInt8 { get } } -open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { - public init(formatString: Swift.String) - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTMultipartFormData { - open var contentType: Swift.String { +@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get - set } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTCommandResponse { - public var bytes: [Swift.UInt8] - public var rightModule: Swift.Bool { +public protocol ZTServiceProtocol : AnyObject { + static var uuid: Swift.String { get } + static var serviceType: ZTCoreKit.ZTService.Type { get } + static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +} +extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { + public static var serviceType: ZTCoreKit.ZTService.Type { get } - public var leftModule: Swift.Bool { +} +public protocol ZTMapContext { +} +final public class ZTMap { + final public let mappingType: ZTCoreKit.ZTMappingType + final public var JSON: [Swift.String : Any] { get } - public var command: ZTCoreKit.ZTCommand? { + final public var isKeyPresent: Swift.Bool { get } - public var status: ZTCoreKit.ZTCommandStatus? { + final public var currentValue: Any? { + get + } + final public var currentKey: Swift.String? { + get + } + final public var nestedKeyDelimiter: Swift.String { + get + } + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + final public let toObject: Swift.Bool + public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { get } + final public func value() -> T? @objc deinit } -public enum ZTCommandStatus : Swift.UInt8 { - case success - case busy - case invalidParam - case invalidState - case forbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerresponse - public var description: Swift.String { +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, default: T) throws -> T + final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +} +extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) + @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) + public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) + public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) + public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) +} +public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { + case staticType + case dynamic + case walking + case running + case cycling + case jump + case stairsUp + case stairsDown + case staticOther + case kneel + case tiptoe + case vibration + case trampling + case crawling + case dynamicOther + case slip + case trip + case active + case inactive + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } +} +public enum ZTTXPower : Swift.UInt8 { + case dBm0 + case dBm2 + case dBm3 + case dBm4 + case dBm5 + case dBm6 + case dBm7 + case dBm8 public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -@_hasMissingDesignatedInitializers public class ZTDefaults { - @objc deinit -} -@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { - final public let stringValue: Swift.String - public init(_ value: Swift.String) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func addEntry(with path: Swift.String, relativeTo baseURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, fileURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, type: ZTCoreKit.ZTEntry.EntryType, uncompressedSize: Swift.UInt32, modificationDate: Foundation.Date = Date(), permissions: Swift.UInt16? = nil, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data) throws - final public func remove(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, progress: Foundation.Progress? = nil) throws -} -@objc public class ZTDevice : ObjectiveC.NSObject { - public var id: Swift.String - public var peripheral: CoreBluetooth.CBPeripheral? { +@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { get } - public var serialNumber: Swift.String { + open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { get } - public var name: Swift.String? { + open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { get } - public var qrCode: Swift.String? { + open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { get } - public var rssi: Swift.Int { + open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { get } - public var macAddressRight: Swift.String? - public var macAddressLeft: Swift.String? - public var advertisementData: [Swift.String : Any]? - public var manufacturer: Swift.String? { + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +extension ZTCoreKit.ZTCore { + final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) + final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) + final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) +} +@_hasMissingDesignatedInitializers public class ZTDeviceInfo { + public var project: ZTCoreKit.ZTProjectCodeType? { get } - public var hardwareRevision: Swift.String? { + public var productCode: ZTCoreKit.ZTProductCodeType? { get } - public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { get } - public var modelNumber: Swift.String? { + public var productType: ZTCoreKit.ZTProductTypeCode? { get } - public var uuid: Swift.String { + public var hardwareVersion: Swift.Int8? { get } - public var isConnected: Swift.Bool { + public var boardVersion: Swift.Int8? { get } - public var isActivityRunning: Swift.Bool { + public var testeur: Swift.String? { get } - public var isDeviceReady: Swift.Bool { + public var sizeRaw: Swift.String? { get } - public var info: ZTCoreKit.ZTDeviceInfo? { + public var year: Swift.Int? { get - set } - public var batterylevel: ZTCoreKit.ZTBatteryLevel? { + public var week: Swift.Int? { get } - public var lastActivityDate: Foundation.Date { + public var SN: Swift.String? { get } - public var generalState: ZTCoreKit.ZTMessageGeneralState? { + public var serialNumber: Swift.String + public var deviceIdentifier: Swift.String + public var macAddressRight: Swift.String? { get - set } - public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { + public var macAddressLeft: Swift.String? { get - set } - public var lowSoftwareInfo: Swift.String { + public var code: Swift.String? { get } - public var activityInfo: ZTCoreKit.ZTMessageActivity? { + @objc deinit +} +extension ZTCoreKit.ZTDeviceInfo { + public var size: Swift.Int? { get - set } - public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { + public var gender: Swift.String? { get - set } - public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { +} +public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { + public var id: Swift.UInt8 { get - set } - public var actualState: ZTCoreKit.ZTDeviceActualState - public var previousState: ZTCoreKit.ZTDeviceActualState - public var hasInitialUpdate: Swift.Bool { + case generalState + case startNewActivity + case stopNewActivity + case resendData + case deepSleep + case reboot + case detailedBattery + case hardwareInformation + case firmwareInformation + case bootloaderVersion + case setInactivityTimeout + case setDFUInstall + case setDFUMode + case setChunkConfig + case setChunkMinutesInterval + case setChunkSecondsInterval + case selectAlgorithm + case freeMemory + case getTimestamp + case passthroughAlgo + case resetActivity + case getActivityMetadata + case disableHeating + case setHeating + case setTimer + case getTemperature + case getTimer + case startPostureCalibration + case setUserParameters + case resetCalibration + case getCalibrationState + case rawDataSend + case rawDataEnable + case rawDataLookup + case rawDataDebug + case calibrateStatic + case clearCalibrateStatic + case cancelCalibrateStatic + case getCalibrateStaticMessage + case getCalibrateStaticData + case testCalibrateStatic + case memsConfig + case updateTxPower + case updatePhy + case disconnect + case startDFURight + case startDFULeft + case enablePeerConnection + case factoryReset + public var description: Swift.String { get } - final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> - final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> - final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> - final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> - final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> - final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> - final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> - final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> - final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> - final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> - final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> - final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> - final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> - final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> - final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> - final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> - final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> - final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> - final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> - final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> - final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> - required public init(peripheral: CoreBluetooth.CBPeripheral) - public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) - public func connect() - public func disconnect() - @objc deinit - @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) - public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService - public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) - public func readGeneralState() -} -extension ZTCoreKit.ZTDevice { - public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool - public var isLowBattery: Swift.Bool? { - get - } -} -@_hasMissingDesignatedInitializers open class ZTServerTrustManager { - @objc deinit -} -public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case success - case busy - case invalidParam - case invalidState - case fwResForbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerResponse public init?(rawValue: Swift.UInt8) + public typealias AllCases = [ZTCoreKit.ZTCommand] + public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public static var allCases: [ZTCoreKit.ZTCommand] { get } -} -public enum DFUStreamZipError : Swift.Error { - case noManifest - case invalidManifest - case fileNotFound - case typeNotFound - public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { + public var rawValue: Swift.UInt8 { get } } -extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } +public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { + init(map: ZTCoreKit.ZTMap) throws } -@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { - get - } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() +extension ZTCoreKit.ZTImmutableMappable { + public func mapping(map: ZTCoreKit.ZTMap) + public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws +} +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType +} +extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { + final public func map(JSON: [Swift.String : Any]) throws -> N + final public func map(JSONString: Swift.String) throws -> N + final public func map(JSONObject: Any) throws -> N + final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] + final public func mapArray(JSONString: Swift.String) throws -> [N] + final public func mapArray(JSONObject: Any) throws -> [N] + final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] + final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] + final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] +} +@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTDeviceInfo { - public var project: ZTCoreKit.ZTProjectCodeType? { - get - } - public var productCode: ZTCoreKit.ZTProductCodeType? { - get - } - public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { - get - } - public var productType: ZTCoreKit.ZTProductTypeCode? { - get - } - public var hardwareVersion: Swift.Int8? { - get - } - public var boardVersion: Swift.Int8? { - get - } - public var testeur: Swift.String? { - get - } - public var sizeRaw: Swift.String? { - get - } - public var year: Swift.Int? { - get - } - public var week: Swift.Int? { +public enum ZTPeriod : Swift.String { + case day + case week + case month + case year + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public var SN: Swift.String? { +} +open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + final public let dateFormatter: Foundation.DateFormatter + public init(dateFormatter: Foundation.DateFormatter) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +final public class ZTSignal { + public typealias ZTSignalCallback = (T) -> Swift.Void + final public var fireCount: Swift.Int { get } - public var serialNumber: Swift.String - public var deviceIdentifier: Swift.String - public var macAddressRight: Swift.String? { + final public var retainLastData: Swift.Bool { get + set } - public var macAddressLeft: Swift.String? { + final public var lastDataFired: T? { get } - public var code: Swift.String? { + final public var observers: [Swift.AnyObject] { get } + public init(retainLastData: Swift.Bool = false) + @discardableResult + final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + final public func fire(_ data: T) + final public func cancelSubscription(for observer: Swift.AnyObject) + final public func cancelAllSubscriptions() + final public func clearLastData() @objc deinit } -extension ZTCoreKit.ZTDeviceInfo { - public var size: Swift.Int? { - get - } - public var gender: Swift.String? { - get - } +extension ZTCoreKit.ZTSignal where T == () { + final public func fire() } -public enum ZTProductType : Swift.String { - case sports - case warm - case safety - case podoSmart - case dfu - case ztDfu - case baliston - public var activityType: Swift.String { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { + public typealias ZTSignalCallback = (T) -> Swift.Void + public typealias ZTSignalFilter = (T) -> Swift.Bool + weak final public var observer: Swift.AnyObject? + final public var once: Swift.Bool + @discardableResult + final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription + final public func cancel() + @objc deinit +} +infix operator => : AssignmentPrecedence +public func => (signal: ZTCoreKit.ZTSignal, data: T) +public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case monitoring + case gaming + public var parameters: [Swift.UInt8] { get } -} -public enum ZTProjectCodeType : Swift.String { - case zt1 - case zt2 - case zt3 - case zt4 - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +@objc public class DFUServiceInitiator : ObjectiveC.NSObject { + @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? + @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? + @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? + @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate + @objc public var packetReceiptNotificationParameter: Swift.UInt16 + @objc public var forceDfu: Swift.Bool + @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool + @objc public var connectionTimeout: Swift.Double + @objc public var dataObjectPreparationDelay: Swift.Double + @objc public var alternativeAdvertisingNameEnabled: Swift.Bool + @objc public var alternativeAdvertisingName: Swift.String? + @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool + @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper + @objc public var disableResume: Swift.Bool + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) + @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator + @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") + @objc public func start() -> ZTCoreKit.DFUServiceController? + @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? + @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @objc deinit +} +public class ZTDateTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get + } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public enum ZTProductType : Swift.String { + case sports + case warm + case safety + case podoSmart + case dfu + case ztDfu + case baliston + public var activityType: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTProjectCodeType : Swift.String { + case zt1 + case zt2 + case zt3 + case zt4 + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } } @@ -1596,606 +1707,306 @@ public enum ZTUnitSizeCodeType : Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public enum Status : Swift.Int8, Swift.Codable { - case new - case sent - case sending - case error - public init?(rawValue: Swift.Int8) - public typealias RawValue = Swift.Int8 - public var rawValue: Swift.Int8 { - get - } - } - public enum TimestampType : Swift.UInt8, Swift.Codable { - case unknown - case start - case stop - case pause - case resume - case reboot - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +open class ZTURLTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.URL + public typealias JSON = Swift.String + public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) + open func transformFromJSON(_ value: Any?) -> Foundation.URL? + open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? + @objc deinit +} +@objc public class ZTDevice : ObjectiveC.NSObject { + public var id: Swift.String + public var peripheral: CoreBluetooth.CBPeripheral? { + get } - public enum BmTimestampType : Swift.UInt8, Swift.Codable { - case unknown - case shoeWearOn - case shoeWearOff - case walkingStart - case walkingStop - case runningStart - case runningStop - case cyclingStart - case cyclingStop - case transportStart - case transportStop - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + get } - public enum PacketType : Swift.UInt8, Swift.Codable { - case unknown - case quantification - case walkAnalysis - case runAnalysis - case stairs - case cycling - case jump - case safety - case staticActivity - case debug - case debugTelemetry - case debugProba - case bmTimestampPacket - case fwTimestampPacket - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var serialNumber: Swift.String { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Acknowledgment : Swift.CustomStringConvertible { - public var command: ZTCoreKit.ZTAlgoCommand? { - get - } - public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var name: Swift.String? { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Event : Swift.CustomStringConvertible { - public var timestamp: Swift.UInt32? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { - get - } - public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { - get - } - public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { - get - } - public var arguments: [Swift.UInt8]? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var qrCode: Swift.String? { + get } -} -public protocol ZTTransformType { - associatedtype Object - associatedtype JSON - func transformFromJSON(_ value: Any?) -> Self.Object? - func transformToJSON(_ value: Self.Object?) -> Self.JSON? -} -public enum ZTError : Swift.Equatable, Swift.Error { - case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) - case ble(type: ZTCoreKit.ZTError.Enums.BleError) - case network(type: ZTCoreKit.ZTError.Enums.NetworkError) - case store(type: ZTCoreKit.ZTError.Enums.StoreError) - case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) - case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) - case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) - case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) - @_hasMissingDesignatedInitializers public class Enums { - @objc deinit + public var rssi: Swift.Int { + get } - public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool - public var error: (any Swift.Error)? { + public var macAddressRight: Swift.String? + public var macAddressLeft: Swift.String? + public var advertisementData: [Swift.String : Any]? + public var manufacturer: Swift.String? { get } -} -extension ZTCoreKit.ZTError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var hardwareRevision: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ScanningError { - case cameraPermission - case wrongCode - case unknown - case notLinkedUser - public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + get } -} -extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var modelNumber: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum BleError { - case invalidState - case resetting - case poweredOff - case unsupported - case timeout - case unauthorized - case notConnected - case notConnectedLeft - case activityIsRunning - case busy - case dfu - case commandError - public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var uuid: Swift.String { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum FirmwareError { - case differentFirmware - case memsError - case leftNoConnected - case restartRequired - case recoverFromDfu - case minimumFwVersion - case updateRequired - case unsupported - case wrongProductType - case firstChunkIdIsGreater - case startTimeZero - public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isConnected: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DfuError { - case noLeftModule - case noUpdate - case wrongFile - case noStart - case aborted - case abortedRight - case abortedLeft - case unsupported - case lowBattery - case inProgress - case updateRequired - case wrongProductType - public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isActivityRunning: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum StoreError { - case missing(Swift.String) - case invalid(Swift.String, Any?) - case wrong(Swift.String) - case unknown - } -} -extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isDeviceReady: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ActivityError { - case notStarted - case notStartedLeft - case notStopped - case unknown - case modeNotSetActivityIsRunning - case previousNotStopped - case previousRestoring - case noUserParametersSet - case rawDataFlowIsRunning - case invalidMobilityScanResults - case outsideActivityDetected - case anomalyDetected - case mobility - public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var info: ZTCoreKit.ZTDeviceInfo? { get + set } -} -extension ZTCoreKit.ZTError.Enums { - public enum NetworkError { - case userLinkError - case inaccessible - case urlError(Foundation.URLError) - case generalError(any Swift.Error) - case noResponse - case invalidResponseType(Foundation.URLResponse) - case noResponseData(Foundation.HTTPURLResponse) - case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) - case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) - } -} -extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var batterylevel: ZTCoreKit.ZTBatteryLevel? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DecodableError { - case invalidKeyPath - case emptyKeyPath - case invalidJSON - public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var lastActivityDate: Foundation.Date { get } -} -public class ZTFirmwareRevision { - public var fwSystemVersion: Swift.String? { + public var generalState: ZTCoreKit.ZTMessageGeneralState? { get + set } - public var productType: ZTCoreKit.ZTProductCodeType? { + public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { get + set } - public var bmVersion: Swift.String? { + public var lowSoftwareInfo: Swift.String { get } - public var date: Foundation.Date? { + public var activityInfo: ZTCoreKit.ZTMessageActivity? { get + set } - public var code: Swift.String { + public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { get + set } - public var fwVersion: Swift.String { + public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { get + set } - public var versions: ZTCoreKit.ZTFwBmVersion? { + public var actualState: ZTCoreKit.ZTDeviceActualState + public var previousState: ZTCoreKit.ZTDeviceActualState + public var hasInitialUpdate: Swift.Bool { get } - public init(code: Swift.String) + final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> + final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> + final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> + final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> + final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> + final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> + final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> + final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> + final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> + final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> + final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> + final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> + final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> + final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> + final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> + final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> + final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> + final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> + final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> + final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> + final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> + required public init(peripheral: CoreBluetooth.CBPeripheral) + public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) + public func connect() + public func disconnect() @objc deinit + @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) + public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService + public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) + public func readGeneralState() } -extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool -} -public struct ZTFwBmVersion { - public var fwSystemMajorVersion: Swift.Int - public var fwSystemMinorVersion: Swift.Int - public var fwSystemBuildVersion: Swift.Int - public var bmMajorVersion: Swift.Int - public var bmMinorVersion: Swift.Int -} -extension ZTCoreKit.ZTFirmwareRevision { - public var fwSystemMajorVersion: Swift.Int { - get - } - public var fwSystemMinorVersion: Swift.Int { - get - } - public var fwSystemBuildVersion: Swift.Int { - get - } - public var bmMajorVersion: Swift.Int { - get - } - public var bmMinorVersion: Swift.Int { +extension ZTCoreKit.ZTDevice { + public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool + public var isLowBattery: Swift.Bool? { get } } -public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { - public enum Mode : Swift.UInt8 { - case manual - case automatic - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public var byte0: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } - public var byte1: Swift.UInt8? { - get - } - public var byte2: Swift.UInt8? { - get - } - public var byte3: Swift.UInt8? { - get - } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension ZTCoreKit.ZTMessageChunkData { +infix operator <<- : DefaultPrecedence +infix operator ->> : DefaultPrecedence +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) +public func ->> (left: T, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) +public func ->> (left: T?, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) public var side: ZTCoreKit.ZTModuleSide { get } - public var mode: ZTCoreKit.ZTMessageChunkData.Mode { - get - } - public var length: Swift.UInt8 { + public var baseMajor: Swift.UInt8 { get } - public var payload: Foundation.Data? { + public var baseMinor: Swift.UInt8 { get } - public var description: Swift.String { + public var baseBuild: Swift.UInt16 { get } -} -@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - public var stringValue: Swift.String? { + public var app: Swift.String { get } - @objc deinit -} -open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.NSDecimalNumber - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? - open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? - @objc deinit -} -public enum ZTLogLevel : Swift.String { - case all - case debug - case info - case error - case fatal - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var appMajor: Swift.UInt8 { get } -} -extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { - public var description: Swift.String { + public var appMinor: Swift.UInt8 { get } -} -public enum ZTLogCategory : Swift.String { - case networkAgent - case modules - case sdk - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var version: Swift.String { get } -} -extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case status - case acknowledgment - case realTimeEvent - case realTimeMetrics - case warning - case error - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } -} -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -@_hasMissingDesignatedInitializers public class ZTLogger { - public static let instance: ZTCoreKit.ZTLogger + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTLogger { - public func ztDebugPrint(_ message: Swift.String) - public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func print(_ value: @autoclosure () -> Any) +public protocol ZTActivityCachable : CoreData.NSManagedObject { + var id: Swift.String { get set } + var packets: Foundation.NSMutableOrderedSet? { get set } + var startDate: Foundation.Date? { get set } + #if compiler(>=5.3) && $AsyncAwait + func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif } -public struct ZTLoggerLine : Swift.Codable { - public static let notification: Foundation.Notification.Name - public static let ble: Foundation.Notification.Name - public var date: Foundation.Date - public let message: Swift.String - public let level: Swift.String - public let category: Swift.String - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws +extension ZTCoreKit.ZTActivityCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool } -@_hasMissingDesignatedInitializers open class ZTNetworkReachabilityManager { - open var isReachable: Swift.Bool { - get - } - open var isReachableOnCellular: Swift.Bool { - get - } - open var isReachableOnEthernetOrWiFi: Swift.Bool { - get - } - open var flags: SystemConfiguration.SCNetworkReachabilityFlags? { +@objc public enum LogLevel : Swift.Int { + case debug = 0 + case verbose = 1 + case info = 5 + case application = 10 + case warning = 15 + case error = 20 + public func name() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - @objc deinit } -public enum ZTNotifyData { - public enum GroupID : Swift.UInt8 { - case common - case warm - case running - case cycling - case safety - case generic - public var description: Swift.String { +@objc public protocol LoggerDelegate { + @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Metrics : Swift.CustomStringConvertible { + public var activityType: ZTCoreKit.ZTActivityType? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var metricId: Swift.UInt8? { get } - } - public enum CommonMessageId : Swift.UInt8 { - case MSG_GENERAL_STATES - case MSG_BATTERY_LEVEL - case MSG_MEMS - case MSG_FLASH - case MSG_TIME - case MSG_HARDWARE - case MSG_SOFTWARE - case MSG_ACTIVITY_INFO - case MSG_ACTIVITY_METADATA - case MSG_RAWDATA_HEADER - case MSG_RAWDATA_FRAME - case MSG_BTLOADER_INFO - case MSG_INACTIVITY_TIMEOUT - case MSG_CHUNK_SEND_STATUS - case MSG_CHUNK_DATA - case MSG_CHUNK_CONFIG - case MSG_DEBUG - public var description: Swift.String { + public var metric: ZTCoreKit.ZTRealtimeMetric? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var value: [Swift.UInt8]? { get } - } -} -extension ZTCoreKit.ZTNotifyData { - public enum WarmMessageId : Swift.UInt8 { - case MSG_HEATING_TEMP_1 - case MSG_HEATING_TEMP_2 - case MSG_HEATING_STEP_R_CNT - case MSG_HEATING_STEP_L_CNT - case MSG_HEATING_SETPOINT_R - case MSG_HEATING_SETPOINT_L - case MSG_GET_HEAT_TIMER - case MSG_HEATING_DEBUG_R - case MSG_HEATING_DEBUG_L - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -extension ZTCoreKit.ZTNotifyData { - public enum RunningMessageId : Swift.UInt8 { - case UNKNOWN +extension ZTCoreKit.ZTRealtimeMessage.Event { + public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case motion + case transition public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum CyclingMessageId : Swift.UInt8 { - case MSG_CADENCE + public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case stepForward + case stepBackward + case stepSideLeft + case stepSideRight + case stepUp + case stepDown public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum SafetyMessageId : Swift.UInt8 { - case MSG_CALIBRATION_SAFETY - case MSG_ALGO_RT_EVENT + public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case low + case medium + case high public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { @@ -2203,38 +2014,213 @@ extension ZTCoreKit.ZTNotifyData { } } } -extension ZTCoreKit.ZTNotifyData { - public enum GenericMessageId : Swift.UInt8 { - case MSG_ALGO_RT_EVENT - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public enum ZTMappingType { + case fromJSON + case toJSON + public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public func map(JSONObject: Any?, toObject object: N) -> N + final public func map(JSONString: Swift.String, toObject object: N) -> N + final public func map(JSON: [Swift.String : Any], toObject object: N) -> N + final public func map(JSONString: Swift.String) -> N? + final public func map(JSONObject: Any?) -> N? + final public func map(JSON: [Swift.String : Any]) -> N? + final public func mapArray(JSONString: Swift.String) -> [N]? + final public func mapArray(JSONObject: Any?) -> [N]? + final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] + final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? + final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? + public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? + public static func parseJSONString(JSONString: Swift.String) -> Any? + @objc deinit +} +extension ZTCoreKit.ZTMapper { + final public func map(JSONfile: Swift.String) -> N? + final public func mapArray(JSONfile: Swift.String) -> [N]? +} +extension ZTCoreKit.ZTMapper { + final public func toJSON(_ object: N) -> [Swift.String : Any] + final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] + final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] + final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] + final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? + final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? + public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? + public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? +} +extension ZTCoreKit.ZTMapper where N : Swift.Hashable { + final public func mapSet(JSONString: Swift.String) -> Swift.Set? + final public func mapSet(JSONObject: Any?) -> Swift.Set? + final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set + final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] + final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? +} +public enum ZTLoggerComponent : Swift.String { + case api + case app + case sdk + case firmware + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTLoggerSeverity : Swift.String { + case debug + case error + case info + case warn + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTDfuPackageType : Swift.String { + case APP + case BL + case SD + case SD_BL + case SD_BL_APP + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { + get + } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + @objc deinit +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Event : Swift.CustomStringConvertible { + public var timestamp: Swift.UInt32? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { + get + } + public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { + get + } + public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { + get + } + public var arguments: [Swift.UInt8]? { + get + } + public var description: Swift.String { + get } + public init(data: Foundation.Data) } } -public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { - case activityNone - case activityStarting - case eraseMemory - case activityRunning - case activityPaused - case activityStopping - case activityPendData - case activitySendData - case unknown +public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { + public enum Mode : Swift.UInt8 { + case manual + case automatic + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var byte0: Swift.UInt8? { + get + } + public var byte1: Swift.UInt8? { + get + } + public var byte2: Swift.UInt8? { + get + } + public var byte3: Swift.UInt8? { + get + } + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkData { + public var side: ZTCoreKit.ZTModuleSide { + get + } + public var mode: ZTCoreKit.ZTMessageChunkData.Mode { + get + } + public var length: Swift.UInt8 { + get + } + public var payload: Foundation.Data? { + get + } public var description: Swift.String { get } +} +public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case timestamp + case modeId + case precisionMode + case numberOfSteps public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } +public enum ZTLogLevel : Swift.String { + case all + case debug + case info + case error + case fatal + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +public enum ZTLogCategory : Swift.String { + case networkAgent + case modules + case sdk + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType where Key : Swift.Hashable, Key : Swift.RawRepresentable, Value : ZTCoreKit.ZTMappable, Key.RawValue == Swift.String { public init() public func transformFromJSON(_ value: Any?) -> [Key : Value]? @@ -2242,494 +2228,367 @@ public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType wher public typealias JSON = Any public typealias Object = [Key : Value] } -public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void -public enum ZTScannerResult { - case success(device: ZTCoreKit.ZTDevice) - case cancelled - case failed((any Swift.Error)?) -} -@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var side: ZTCoreKit.ZTModuleSide { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { + public var bootloaderVersion: Swift.UInt8 { get } - open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { + public var appSupportVersion: Swift.UInt8 { get } - open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { + public var softDeviceId: Swift.UInt8 { get } - open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { + public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { get } - open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { + public var description: Swift.String { get } - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + public enum DfuState : Swift.UInt8 { + case none + case inProgress + case received + case readyForCopy + case activation + case done + case error + case validationError + case activationError + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTServices { - public enum Primary { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - case test - public var uid: Swift.String { - get - } - public var uuid: CoreBluetooth.CBUUID { - get - } - public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +extension ZTCoreKit.ZTCore { + final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) + final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +} +public struct ZTMessageTime : Swift.CustomStringConvertible { + public var timestamp: Swift.Int64 + public var side: ZTCoreKit.ZTModuleSide + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { + get + } +} +public enum ZTNotifyData { + public enum GroupID : Swift.UInt8 { + case common + case warm + case running + case cycling + case safety + case generic + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum PrimaryOld { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public enum CommonMessageId : Swift.UInt8 { + case MSG_GENERAL_STATES + case MSG_BATTERY_LEVEL + case MSG_MEMS + case MSG_FLASH + case MSG_TIME + case MSG_HARDWARE + case MSG_SOFTWARE + case MSG_ACTIVITY_INFO + case MSG_ACTIVITY_METADATA + case MSG_RAWDATA_HEADER + case MSG_RAWDATA_FRAME + case MSG_BTLOADER_INFO + case MSG_INACTIVITY_TIMEOUT + case MSG_CHUNK_SEND_STATUS + case MSG_CHUNK_DATA + case MSG_CHUNK_CONFIG + case MSG_DEBUG + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceInformation { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case manufacturerName - case modelNumber - case serialNumber - case firmwareRevision - case hardwareRevision - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum WarmMessageId : Swift.UInt8 { + case MSG_HEATING_TEMP_1 + case MSG_HEATING_TEMP_2 + case MSG_HEATING_STEP_R_CNT + case MSG_HEATING_STEP_L_CNT + case MSG_HEATING_SETPOINT_R + case MSG_HEATING_SETPOINT_L + case MSG_GET_HEAT_TIMER + case MSG_HEATING_DEBUG_R + case MSG_HEATING_DEBUG_L + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceDFU { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case dfuControlPoint - case dfuPacket - case dfuButtonless - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum RunningMessageId : Swift.UInt8 { + case UNKNOWN + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } } -public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { - case staticType - case dynamic +extension ZTCoreKit.ZTNotifyData { + public enum CyclingMessageId : Swift.UInt8 { + case MSG_CADENCE + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum SafetyMessageId : Swift.UInt8 { + case MSG_CALIBRATION_SAFETY + case MSG_ALGO_RT_EVENT + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum GenericMessageId : Swift.UInt8 { + case MSG_ALGO_RT_EVENT + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { + case activityNone + case activityStarting + case eraseMemory + case activityRunning + case activityPaused + case activityStopping + case activityPendData + case activitySendData + case unknown + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined case walking case running - case cycling + case pedaling case jump case stairsUp case stairsDown - case staticOther - case kneel + case standing + case sitting + case kneeling case tiptoe case vibration - case trampling - case crawling - case dynamicOther case slip - case trip - case active - case inactive + case incident + case freewheel public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -open class ZTTransformOf : ZTCoreKit.ZTTransformType { - public typealias Object = ObjectType - public typealias JSON = JSONType - public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) - open func transformFromJSON(_ value: Any?) -> ObjectType? - open func transformToJSON(_ value: ObjectType?) -> JSONType? - @objc deinit +public protocol ZTDfuDelegate : AnyObject { + func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) + func dfuDelegate(didFinish: Swift.Bool) + func dfuDelegate(didFail error: ZTCoreKit.ZTError?) + func dfuDelegate(progress: Swift.Float?) + func dfuDelegate(leftDidFinish newVersion: Swift.String?) + func dfuDelegate(rightDidFinish newVersion: Swift.String?) } -@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { - @objc open var softdevice: Swift.UInt32 { +public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var isRight: Swift.Bool { get } - @objc open var bootloader: Swift.UInt32 { + public var isLeft: Swift.Bool { get } - @objc open var application: Swift.UInt32 { + public var selectedMode: ZTCoreKit.ZTActivityMode? { get } - @objc deinit -} -public enum ZTActivityMode : Swift.UInt8, Swift.Codable { - case safety - case walking - case running - case cycling - case mobility - public var name: Swift.String { + public var timeInterval: Swift.Int? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case defaultMode - case economicMode - case performanceMode - public var parameters: [Swift.UInt8] { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public class ZTUserShoe : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var code: Swift.String? + public var attributes: [Swift.String : Any]? + public var firmware: ZTCoreKit.ZTUserShoe.Firmware? + public var organizationId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + public class Firmware : ZTCoreKit.ZTMappable { + public var type: Swift.String? + public var arch: Swift.String? + public var version: Swift.String? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -} -@_hasMissingDesignatedInitializers open class Adapter { - @objc deinit -} -@_hasMissingDesignatedInitializers open class Retrier { @objc deinit } -@_hasMissingDesignatedInitializers open class Interceptor { - @objc deinit -} -extension ZTCoreKit.ZTCore { - final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) - final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) - final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) -} extension Foundation.Data { - public var hexString: Swift.String { - get - } -} -public protocol DataConvertible { - static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - public static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension Swift.UInt8 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt16 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt32 : ZTCoreKit.DataConvertible { -} -extension Swift.Int : ZTCoreKit.DataConvertible { -} -extension Swift.Float : ZTCoreKit.DataConvertible { -} -extension Swift.Double : ZTCoreKit.DataConvertible { -} -extension Swift.String : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data -} -extension Foundation.Data : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data -} -public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { - init(map: ZTCoreKit.ZTMap) throws -} -extension ZTCoreKit.ZTImmutableMappable { - public func mapping(map: ZTCoreKit.ZTMap) - public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws -} -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType -} -extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { - final public func map(JSON: [Swift.String : Any]) throws -> N - final public func map(JSONString: Swift.String) throws -> N - final public func map(JSONObject: Any) throws -> N - final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] - final public func mapArray(JSONString: Swift.String) throws -> [N] - final public func mapArray(JSONObject: Any) throws -> [N] - final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] - final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] - final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] -} -@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { + public func macAddress() -> Swift.String? + public var bytes: [Swift.UInt8] { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@objc public enum DFUUuidType : Swift.Int { - case legacyService = 0 - case legacyControlPoint = 1 - case legacyPacket = 2 - case legacyVersion = 3 - case secureService = 4 - case secureControl = 5 - case securePacket = 6 - case buttonlessService = 7 - case buttonlessCharacteristic = 8 - case buttonlessWithoutBondSharing = 9 - case buttonlessWithBondSharing = 10 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexDescription: Swift.String { get } + public init?(hex: Swift.String) + public func getUInt(offset: Swift.Int) -> Swift.UInt16 + public func getUInt32(offset: Swift.Int) -> Swift.UInt32 + public func getFloat(offset: Swift.Int) -> Swift.Float + public func getByte(at index: Swift.Int) -> Swift.Int8 + public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 + public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 + public mutating func append(byte data: Swift.Int8) + public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) + public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -@objc public class DFUUuid : ObjectiveC.NSObject { - @objc final public let uuid: CoreBluetooth.CBUUID - @objc final public let type: ZTCoreKit.DFUUuidType - @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) - @objc deinit +extension Foundation.Data { + public func dataObject(at index: Foundation.Data.Index = 0) -> T + public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int + public func object(at offset: Swift.Int) -> T } -@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { - @objc public var legacyDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { +extension Swift.Numeric { + public var data: Foundation.Data { get } - @objc override dynamic public init() - @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) - @objc deinit } -public class ZTUser : ZTCoreKit.ZTMappable { - public var attributes: [Swift.String : Any] - public var id: Swift.String? - public var organizationId: Swift.String? - public var appId: Swift.String? - public var createdAt: Swift.String? - public var updatedAt: Swift.String? - public var userId: Swift.String? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public class ZTAchievement : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var type: Swift.String? - public var activityId: Swift.String? - public var code: Swift.String? - public var appuserId: Swift.String? - public var data: [Swift.String : Any]? - public var duration: Swift.Int64? - public var calories: Swift.Double? - public var createdAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { - final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) - final public func updateFirmware(path: Swift.String) - @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) - @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) - @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) - @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) - final public func checkDfuState() -} -@_hasMissingDesignatedInitializers open class ZTWebSocket { - @objc deinit -} -open class ZTActivity : Swift.Codable { - public var id: Swift.String { +public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { + case jump + case run + case walk + public var parameters: [Swift.UInt8] { get - set } - public var activityIdentifier: Swift.String - public var appId: Swift.String? - public var activityType: Swift.String - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var startTimestamp: Swift.Int64? - public var endTimestamp: Swift.Int64? - public var tz: Swift.String? - public var status: Swift.String? - public var state: ZTCoreKit.ZTDeviceActualState { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } - public var packetsIds: [Swift.UInt16] - public var cachedPackets: [ZTCoreKit.ZTSegmentData] - public var metaData: ZTCoreKit.ZTMessageActivityMetadata? - public var stopReason: ZTCoreKit.ZTActivityLastStopReason? - public var isRawDataMode: Swift.Bool - public var isAutomatic: Swift.Bool - public var forceStop: Swift.Bool - public var isInterrupted: Swift.Bool - public var firstChunkId: Swift.UInt16? - public var lastChunkId: Swift.UInt16? - public var chunkCount: Swift.UInt16? - public var anchorTimestamp: Swift.Int64? - public var customActivityStartTimestamp: Swift.Int64? - public var customActivityFirstChunkId: Swift.UInt16? - public var fwVersion: Swift.String? - public var shoesSerial: Swift.String? - public init() - open func save() - public func loadAll(firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public func lastSavedChunkId(startId: Swift.UInt16? = 0, lastId: Swift.UInt16? = 0) -> Swift.UInt16 - public func addToCache(_ segment: ZTCoreKit.ZTSegmentData) - public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) - public func saveCachedPackets() - @objc deinit - open func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTActivity { - public var duration: Swift.Double { +public enum ZTEnvironment { + case dev + case staging + case production + case zcdev + case zcstaging + case zcproduction + public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -public protocol ZTDfuDelegate : AnyObject { - func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) - func dfuDelegate(didFinish: Swift.Bool) - func dfuDelegate(didFail error: ZTCoreKit.ZTError?) - func dfuDelegate(progress: Swift.Float?) - func dfuDelegate(leftDidFinish newVersion: Swift.String?) - func dfuDelegate(rightDidFinish newVersion: Swift.String?) -} -@objc public class DFUServiceInitiator : ObjectiveC.NSObject { - @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? - @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? - @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? - @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate - @objc public var packetReceiptNotificationParameter: Swift.UInt16 - @objc public var forceDfu: Swift.Bool - @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool - @objc public var connectionTimeout: Swift.Double - @objc public var dataObjectPreparationDelay: Swift.Double - @objc public var alternativeAdvertisingNameEnabled: Swift.Bool - @objc public var alternativeAdvertisingName: Swift.String? - @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool - @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper - @objc public var disableResume: Swift.Bool - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) - @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator - @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") - @objc public func start() -> ZTCoreKit.DFUServiceController? - @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? - @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @objc deinit -} -public protocol ZTPlistStorage { - static var plist: ZTCoreKit.ZTPlist { get } -} -public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var right: Swift.UInt8 - public var left: Swift.UInt8 - public var min: Swift.UInt8 { - get - } - public var description: Swift.String { +public enum ZTModuleSide : Swift.String, Swift.Codable { + case left + case right + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public init() - public init(data: Foundation.Data) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } +public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable +public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable @objc public enum DFUError : Swift.Int { case remoteLegacyDFUSuccess = 1 case remoteLegacyDFUInvalidState = 2 @@ -2818,369 +2677,186 @@ extension ZTCoreKit.DFUState : Swift.CustomStringConvertible { @objc func dfuStateDidChange(to state: ZTCoreKit.DFUState) @objc func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) } -public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var baseMajor: Swift.UInt8 { - get - } - public var baseMinor: Swift.UInt8 { - get - } - public var baseBuild: Swift.UInt16 { - get - } - public var app: Swift.String { - get - } - public var appMajor: Swift.UInt8 { - get - } - public var appMinor: Swift.UInt8 { - get - } - public var version: Swift.String { - get - } - public var description: Swift.String { - get - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTPlist { - public func encrypt(_ rawValue: Any?) -> Foundation.Data? - public func decrypt(_ data: Foundation.Data?) -> Foundation.Data? - public func decryptedDictionary(decryptedData rawValue: Any?) -> [Swift.String : Any]? - public func decryptedCollection(decryptedData rawValue: Any?) -> [Any]? - public func decryptedString(decryptedData rawValue: Any?) -> Swift.String? - public func decryptedBool(decryptedData rawValue: Any?) -> Swift.Bool? - public func decryptedInt(decryptedData rawValue: Any?) -> Swift.Int? - public func decryptedFloat(decryptedData rawValue: Any?) -> Swift.Float? - public func decryptedDouble(decryptedData rawValue: Any?) -> Swift.Double? - public func decryptedDate(decryptedData rawValue: Any?) -> Foundation.Date? -} -open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { - public typealias Object = UIKit.UIColor - public typealias JSON = Swift.String - public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? - open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? - @objc deinit -} -public class ZTActivityComment : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var timeZone: Swift.String? - public var timestamp: Foundation.Date? - public var text: Swift.String? - public var activityId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - public var mediaFiles: [ZTCoreKit.ZTMediaFile]? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTSegmentData : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var id: Swift.UInt16 - public var activityId: Swift.String? - public var activityType: ZTCoreKit.ZTActivityMode? - public var timestamp: Swift.Int64? - public var duration: Swift.Int? - public var status: ZTCoreKit.ZTSegmentData.Status - public var timestampType: ZTCoreKit.ZTSegmentData.TimestampType - public var bmTimestampType: ZTCoreKit.ZTSegmentData.BmTimestampType - public var packetType: ZTCoreKit.ZTSegmentData.PacketType - public var originalTimestamp: Swift.Int64 - public var packetsNumber: Swift.UInt8 - public var rawDescription: Swift.String { - get - } - public var fwVersion: Swift.String? - public var retryCount: Swift.Int - public enum CodingKeys : Swift.CodingKey { - case id - case activityId - case rawData - case timestamp - case duration - case status - case packetType - case timestampType - case originalTimestamp - case packetsNumber - case fwVersion - case retryCount - public static func == (a: ZTCoreKit.ZTSegmentData.CodingKeys, b: ZTCoreKit.ZTSegmentData.CodingKeys) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public init?(stringValue: Swift.String) - public init?(intValue: Swift.Int) - public var hashValue: Swift.Int { - get - } - public var intValue: Swift.Int? { - get - } - public var stringValue: Swift.String { +public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { + public enum Status : Swift.UInt8 { + case success + case errorOutOfRange + case errorSendFailed + case errorUnexpected + case errorNotFound + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } - public init(data: Foundation.Data) - public init(data: Foundation.Data, activityId: Swift.String, fwversion: Swift.String? = nil) - required public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws - @objc deinit -} -extension ZTCoreKit.ZTSegmentData { - public static func lastSegmentId(activityId: Swift.String) -> Swift.Int - public static func segmentsCount(activityId: Swift.String) -> Swift.Int - public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, startId: Swift.UInt16) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllPackets(activityId: Swift.String, startId: Swift.UInt16? = nil, lastId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.Int] - public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16] - public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.UInt16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTSegmentData? - public static func loadPacket(activityId: Swift.String?, id: Swift.UInt16) -> ZTCoreKit.ZTSegmentData? - public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> ZTCoreKit.ZTSegmentData? - public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTSegmentData - public static func loadAll(activityId: Swift.String, lastChunkId: Swift.UInt16?) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func clear(activityId: Swift.String?) - public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.UInt16? - public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMissedPackets(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16]? - public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.UInt16, lastId: Swift.UInt16?) -> Swift.UInt16? - public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.UInt16, anchorTime: Swift.Int64?) -} -extension ZTCoreKit.ZTSegmentData { - public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool - public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.UInt16?, endIndex: Swift.UInt16?) -> Swift.Bool - public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.UInt16) - public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.UInt16) -> Swift.Bool - public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> Swift.Bool - public static func isSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16?, endId: Swift.UInt16?) -> Swift.Bool - public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.UInt16) -> Swift.Bool -} -extension ZTCoreKit.ZTSegmentData : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTSegmentData, rhs: ZTCoreKit.ZTSegmentData) -> Swift.Bool -} -public enum ZTActivitySummaryStatus : Swift.String { - case started - case complete - case processing - case errored - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public let bytes: [Swift.UInt8] + public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? + public var chunkId: Swift.UInt16? + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } } -open class ZTActivitySummary : ZTCoreKit.ZTMappable { - public var id: Swift.String - public var activityType: Swift.String - public var activityIdentifier: Swift.String - public var start: Swift.String? - public var end: Swift.String? - public var duration: Swift.Int? - public var tz: Swift.String? - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var status: ZTCoreKit.ZTActivitySummaryStatus? - required public init?(map: ZTCoreKit.ZTMap) - open func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - final public let dateFormatter: Foundation.DateFormatter - public init(dateFormatter: Foundation.DateFormatter) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? +open class ZTTransformOf : ZTCoreKit.ZTTransformType { + public typealias Object = ObjectType + public typealias JSON = JSONType + public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) + open func transformFromJSON(_ value: Any?) -> ObjectType? + open func transformToJSON(_ value: ObjectType?) -> JSONType? @objc deinit } -@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { - final public var advertisingServices: [CoreBluetooth.CBUUID]? - final public var managerState: ZTCoreKit.ZTBleManagerState { +open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { + public typealias Object = T + public typealias JSON = T.RawValue + public init() + open func transformFromJSON(_ value: Any?) -> T? + open func transformToJSON(_ value: T?) -> T.RawValue? + @objc deinit +} +extension Foundation.UserDefaults { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { get set } - final public class var instance: ZTCoreKit.ZTBleManager { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { get + set } - final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { get + set } - final public var macAddress: Swift.String? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { get + set } - final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? - final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { get + set } - final public var product: ZTCoreKit.ZTProductType? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { get set } - final public var connectedDevice: ZTCoreKit.ZTDevice? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { get + set } - final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { get + set } - final public var scanning: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { get + set } - final public var isDfuMode: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { get + set } - final public let onBluetoothStateChange: ZTCoreKit.ZTSignal - final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onDeviceDiscovered: ZTCoreKit.ZTSignal - final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - @objc deinit + public subscript(key: Swift.String) -> Any? { + get + set(value) + } + public func value(forKey key: Swift.String) -> T? + public func clear(_ key: Swift.String) + public func clear(_ key: ZTCoreKit.ZTDefaultsKey) + public func clearAll() } -extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +extension Foundation.DateFormatter { + convenience public init(withFormat format: Swift.String, locale: Swift.String) } -public enum ZTAlgoCommand : Swift.UInt8 { - case getStatus - case startNewChunk - case changeProductMode - case setPrecisionMode - case setMinimumNumberOfStrides - case enableStreamingOfValues - case setDisconnectionDelay - case setUserInfo - case setDailyTimestamp - case getPositionOfPods - case enableSpecificPacket - case holdRealtimeStreaming - case getSingleTimeMetrics - case calibrateGravity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { + public init() + @objc deinit +} +public enum ZTDFUState : Swift.Int { + case started + case startedLeft + case completedLeft + case startedRight + case completedRight + case completed + case error + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } } -public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case monitoring - case gaming - public var parameters: [Swift.UInt8] { +public class ZTFirmwareRevision { + public var fwSystemVersion: Swift.String? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var productType: ZTCoreKit.ZTProductCodeType? { get } -} -public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var isRight: Swift.Bool { + public var bmVersion: Swift.String? { get } - public var isLeft: Swift.Bool { + public var date: Foundation.Date? { get } - public var selectedMode: ZTCoreKit.ZTActivityMode? { + public var code: Swift.String { get } - public var timeInterval: Swift.Int? { + public var fwVersion: Swift.String { get } - public var description: Swift.String { + public var versions: ZTCoreKit.ZTFwBmVersion? { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + public init(code: Swift.String) + @objc deinit } -public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { - case jump - case run - case walk - public var parameters: [Swift.UInt8] { +extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool +} +public struct ZTFwBmVersion { + public var fwSystemMajorVersion: Swift.Int + public var fwSystemMinorVersion: Swift.Int + public var fwSystemBuildVersion: Swift.Int + public var bmMajorVersion: Swift.Int + public var bmMinorVersion: Swift.Int +} +extension ZTCoreKit.ZTFirmwareRevision { + public var fwSystemMajorVersion: Swift.Int { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var fwSystemMinorVersion: Swift.Int { get } -} -public enum ZTDFUState : Swift.Int { - case started - case startedLeft - case completedLeft - case startedRight - case completedRight - case completed - case error - public var description: Swift.String { + public var fwSystemBuildVersion: Swift.Int { get } - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var bmMajorVersion: Swift.Int { + get + } + public var bmMinorVersion: Swift.Int { get } } -extension ZTCoreKit.ZTCore { - final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) - final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +@_hasMissingDesignatedInitializers public class ZTCoreDataStack { + public static let shared: ZTCoreKit.ZTCoreDataStack + public var context: CoreData.NSManagedObjectContext { + get + set + } + public func oneTimeBackgroundContext() -> CoreData.NSManagedObjectContext + public func saveOneTimeBackgroundContext(_ oneTimeBackgroundContext: CoreData.NSManagedObjectContext) throws + public func saveContext() throws + @objc deinit +} +public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { + var rawData: Foundation.Data? { get set } } -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable public class ZTMediaFile : ZTCoreKit.ZTMappable { public var id: Swift.String? public var name: Swift.String? @@ -3195,537 +2871,583 @@ public class ZTMediaFile : ZTCoreKit.ZTMappable { public func mapping(map: ZTCoreKit.ZTMap) @objc deinit } -public protocol ZTMapContext { -} -final public class ZTMap { - final public let mappingType: ZTCoreKit.ZTMappingType - final public var JSON: [Swift.String : Any] { +@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } - final public var isKeyPresent: Swift.Bool { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { + public typealias Object = T + public typealias JSON = Any + public init() + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? + open func transformToJSON(_ value: T?) -> Any? + @objc deinit +} +public protocol ZTTransformType { + associatedtype Object + associatedtype JSON + func transformFromJSON(_ value: Any?) -> Self.Object? + func transformToJSON(_ value: Self.Object?) -> Self.JSON? +} +open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.NSDecimalNumber + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? + open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? + @objc deinit +} +@objc public enum DFUUuidType : Swift.Int { + case legacyService = 0 + case legacyControlPoint = 1 + case legacyPacket = 2 + case legacyVersion = 3 + case secureService = 4 + case secureControl = 5 + case securePacket = 6 + case buttonlessService = 7 + case buttonlessCharacteristic = 8 + case buttonlessWithoutBondSharing = 9 + case buttonlessWithBondSharing = 10 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - final public var currentValue: Any? { +} +@objc public class DFUUuid : ObjectiveC.NSObject { + @objc final public let uuid: CoreBluetooth.CBUUID + @objc final public let type: ZTCoreKit.DFUUuidType + @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { + @objc public var legacyDFUService: CoreBluetooth.CBUUID { get } - final public var currentKey: Swift.String? { + @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { get } - final public var nestedKeyDelimiter: Swift.String { + @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { get } - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - final public let toObject: Swift.Bool - public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUPacket: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { get } - final public func value() -> T? + @objc override dynamic public init() + @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) @objc deinit } -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, default: T) throws -> T - final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +@_hasMissingDesignatedInitializers public class ZTLogger { + public static let instance: ZTCoreKit.ZTLogger + @objc deinit } -public struct ZTEntry : Swift.Equatable { - public enum EntryType : Swift.Int { - case file - case directory - case symlink - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } - } - public func path(using encoding: Swift.String.Encoding) -> Swift.String - public var path: Swift.String { - get - } - public var fileAttributes: [Foundation.FileAttributeKey : Any] { - get - } - public var checksum: ZTCoreKit.CRC32 { - get - } - public var type: ZTCoreKit.ZTEntry.EntryType { - get - } - public var compressedSize: Swift.Int { - get - } - public var uncompressedSize: Swift.Int { - get - } - public static func == (lhs: ZTCoreKit.ZTEntry, rhs: ZTCoreKit.ZTEntry) -> Swift.Bool +extension ZTCoreKit.ZTLogger { + public func ztDebugPrint(_ message: Swift.String) + public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) } -@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { - public var name: Swift.String - public var description: Swift.String? - public var mimeType: Swift.String? - public var key: Swift.String? - public var url: Swift.String? - public var data: Foundation.Data? - convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) - required convenience public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit +public struct ZTLoggerLine : Swift.Codable { + public static let notification: Foundation.Notification.Name + public static let ble: Foundation.Notification.Name + public var date: Foundation.Date + public let message: Swift.String + public let level: Swift.String + public let category: Swift.String + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@objc public protocol DFUPeripheralSelectorDelegate { + @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool + @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? } -@propertyWrapper public struct ZTPlisted { - public let key: Swift.String - public let plist: ZTCoreKit.ZTPlist - public let defaultValue: Value - public init(key: Swift.String, plist: ZTCoreKit.ZTPlist, defaultValue: Value) - public var wrappedValue: Value { +public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case success + case busy + case invalidParam + case invalidState + case fwResForbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerResponse + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } } -public struct ZTMapError : Swift.Error { - public var key: Swift.String? - public var currentValue: Any? - public var reason: Swift.String? - public var file: Swift.StaticString? - public var function: Swift.StaticString? - public var line: Swift.UInt? - public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) -} -extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { - public var description: Swift.String { +public enum ZTActivityMode : Swift.UInt8, Swift.Codable { + case safety + case walking + case running + case cycling + case mobility + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -public enum ZTPeriod : Swift.String { - case day - case week - case month - case year +public enum ZTActivitySummaryStatus : Swift.String { + case started + case complete + case processing + case errored public init?(rawValue: Swift.String) public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public func save() - public func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool - public static func forceSegmentsUpload(activityId: Swift.String) - public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTSegmentData) -} -extension Foundation.FileManager { - public func zipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, shouldKeepParent: Swift.Bool = true, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, progress: Foundation.Progress? = nil) throws - public func unzipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, preferredEncoding: Swift.String.Encoding? = nil) throws +open class ZTActivitySummary : ZTCoreKit.ZTMappable { + public var id: Swift.String + public var activityType: Swift.String + public var activityIdentifier: Swift.String + public var start: Swift.String? + public var end: Swift.String? + public var duration: Swift.Int? + public var tz: Swift.String? + public var startDate: Foundation.Date? + public var endDate: Foundation.Date? + public var status: ZTCoreKit.ZTActivitySummaryStatus? + required public init?(map: ZTCoreKit.ZTMap) + open func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Foundation.URL { - public func isContained(in parentDirectoryURL: Foundation.URL) -> Swift.Bool +public protocol ZTCBPeripheralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBPeripheralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + var isAdvertising: Swift.Bool { get } + func startAdvertising(_ advertisementData: [Swift.String : Any]?) + func stopAdvertising() + func setDesiredConnectionLatency(_ latency: CoreBluetooth.CBPeripheralManagerConnectionLatency, for central: CoreBluetooth.CBCentral) + func add(_ service: CoreBluetooth.CBMutableService) + func remove(_ service: CoreBluetooth.CBMutableService) + func removeAllServices() + func respond(to request: CoreBluetooth.CBATTRequest, withResult result: CoreBluetooth.CBATTError.Code) + func updateValue(_ value: Foundation.Data, for characteristic: CoreBluetooth.CBMutableCharacteristic, onSubscribedCentrals centrals: [CoreBluetooth.CBCentral]?) -> Swift.Bool +} +extension CoreBluetooth.CBPeripheralManager : ZTCoreKit.ZTCBPeripheralManagerProtocol { } -public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { - get - } - public var byte1: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var byte2: Swift.UInt8? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { + public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason + public var chunkCount: Swift.Int16 + public var firstChunkId: Swift.Int16 + public var lastChunkId: Swift.Int16 { get } - public var byte3: Swift.UInt8? { + public var startTime: Swift.UInt32 + public var endTime: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } - public init(bytes: [Swift.UInt8]) public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageGeneralState { - public var activityStartedRight: Swift.Bool { +open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { + public typealias Object = UIKit.UIColor + public typealias JSON = Swift.String + public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? + open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? + @objc deinit +} +public class ZTReachability { + public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter + public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { get + set } - public var activityStartedLeft: Swift.Bool { - get + public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? + public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? + public var managerStarted: Swift.Bool + public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { + case all, wifi, cellular, wiredEthernet, loopback, other, none + public var description: Swift.String { + get + } + public func getInterfaceType() -> Network.NWInterface.InterfaceType + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public var hashValue: Swift.Int { + get + } + } + public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { + case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline + public var description: Swift.String { + get + } + public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool + } + public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) + public func startManager() + public func stopManager() + @objc deinit +} +public let ztActivityKey: Swift.String +@_inheritsConvenienceInitializers @objc(ZTActivity) open class ZTActivity : CoreData.NSManagedObject, ZTCoreKit.ZTActivityCachable { + @objc @NSManaged dynamic public var id: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityIdentifier: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var appId: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityType: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var tz: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var status: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packets: Foundation.NSMutableOrderedSet? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var metaDataRawValue: Foundation.Data? { + @objc get + @objc set } - public var pairIsConnected: Swift.Bool { + public var metaData: ZTCoreKit.ZTMessageActivityMetadata? { get } - public var memsHasError: Swift.Bool { - get + public func metaData(_ newValue: ZTCoreKit.ZTMessageActivityMetadata?) + @objc @NSManaged dynamic public var stopReasonRawValue: Foundation.Data? { + @objc get + @objc set } - public var firmwareDifferent: Swift.Bool { + public var stopReason: ZTCoreKit.ZTActivityLastStopReason? { get } - public var actualState: ZTCoreKit.ZTDeviceActualState { - get + public func stopReason(_ newValue: ZTCoreKit.ZTActivityLastStopReason?) + @objc @NSManaged dynamic public var isRawDataMode: Swift.Bool { + @objc get + @objc set } - public var previousState: ZTCoreKit.ZTDeviceActualState { - get + @objc @NSManaged dynamic public var isAutomatic: Swift.Bool { + @objc get + @objc set } - public var description: Swift.String { - get + @objc @NSManaged dynamic public var forceStop: Swift.Bool { + @objc get + @objc set } -} -@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { - @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool - @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? - @objc override dynamic public init() - @objc deinit -} -public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { - public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason - public var chunkCount: Swift.UInt16 - public var firstChunkId: Swift.UInt16 - public var lastChunkId: Swift.UInt16 { - get + @objc @NSManaged dynamic public var isInterrupted: Swift.Bool { + @objc get + @objc set } - public var startTime: Swift.UInt32 - public var endTime: Swift.UInt32 - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { - get + @objc @NSManaged dynamic public var firstChunkId: Swift.Int16 { + @objc get + @objc set } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { - public typealias Object = T - public typealias JSON = Any - public init() - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? - open func transformToJSON(_ value: T?) -> Any? - @objc deinit -} -open class ZTURLTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.URL - public typealias JSON = Swift.String - public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) - open func transformFromJSON(_ value: Any?) -> Foundation.URL? - open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? - @objc deinit -} -public enum ZTBleManagerState : Swift.CustomStringConvertible { - case off - case on - case idle - case scanning - case unauthorized - case resetting - case unknown - case unsupported - public var description: Swift.String { - get + @objc @NSManaged dynamic public var lastChunkId: Swift.Int16 { + @objc get + @objc set } - public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var chunkCount: Swift.Int16 { + @objc get + @objc set } -} -public class ZTUserShoe : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var code: Swift.String? - public var attributes: [Swift.String : Any]? - public var firmware: ZTCoreKit.ZTUserShoe.Firmware? - public var organizationId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - public class Firmware : ZTCoreKit.ZTMappable { - public var type: Swift.String? - public var arch: Swift.String? - public var version: Swift.String? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit + @objc @NSManaged dynamic public var anchorTimestamp: Swift.Int64 { + @objc get + @objc set } - @objc deinit -} -public enum ZTLoggerComponent : Swift.String { - case api - case app - case sdk - case firmware - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityStartTimestamp: Swift.Int64 { + @objc get + @objc set } -} -public enum ZTLoggerSeverity : Swift.String { - case debug - case error - case info - case warn - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityFirstChunkId: Swift.Int16 { + @objc get + @objc set } -} -public enum ZTMappingType { - case fromJSON - case toJSON - public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set } -} -final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public func map(JSONObject: Any?, toObject object: N) -> N - final public func map(JSONString: Swift.String, toObject object: N) -> N - final public func map(JSON: [Swift.String : Any], toObject object: N) -> N - final public func map(JSONString: Swift.String) -> N? - final public func map(JSONObject: Any?) -> N? - final public func map(JSON: [Swift.String : Any]) -> N? - final public func mapArray(JSONString: Swift.String) -> [N]? - final public func mapArray(JSONObject: Any?) -> [N]? - final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] - final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? - final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? - public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? - public static func parseJSONString(JSONString: Swift.String) -> Any? - @objc deinit -} -extension ZTCoreKit.ZTMapper { - final public func map(JSONfile: Swift.String) -> N? - final public func mapArray(JSONfile: Swift.String) -> [N]? -} -extension ZTCoreKit.ZTMapper { - final public func toJSON(_ object: N) -> [Swift.String : Any] - final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] - final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] - final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] - final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? - final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? - public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? - public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? -} -extension ZTCoreKit.ZTMapper where N : Swift.Hashable { - final public func mapSet(JSONString: Swift.String) -> Swift.Set? - final public func mapSet(JSONObject: Any?) -> Swift.Set? - final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set - final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] - final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? -} -public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { - public enum Status : Swift.UInt8 { - case success - case errorOutOfRange - case errorSendFailed - case errorUnexpected - case errorNotFound - case unknown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + @objc @NSManaged dynamic public var shoesSerial: Swift.String? { + @objc get + @objc set } - public let bytes: [Swift.UInt8] - public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? - public var chunkId: Swift.UInt16? - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { + public var duration: Swift.Double { get } + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + public func loadAll(firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + public func lastSavedChunkId(startId: Swift.Int16? = 0, lastId: Swift.Int16? = 0) -> Swift.Int16 + public func addToCache(_ segment: ZTCoreKit.ZTPacket) + public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) + public func saveCachedPackets() + #if compiler(>=5.3) && $AsyncAwait + open func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif + @objc deinit } -@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String +extension ZTCoreKit.ZTActivity { + @nonobjc public class func fetchRequest() -> CoreData.NSFetchRequest + public func getPacketIds() -> [Swift.Int16] + @discardableResult + public func setPackets(ids: [Swift.Int16]) -> [Swift.Int16] + @discardableResult + public func addPacket(id: Swift.Int16) -> [Swift.Int16] + public func getActulState() -> ZTCoreKit.ZTDeviceActualState + public func update(actualState: ZTCoreKit.ZTDeviceActualState) +} +@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String open var data: Foundation.Data? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { - case undefined - case userRequest - case memoryFull - case inactivity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } -} -extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) - @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) - public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) - public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) - public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) -} -extension Foundation.DateFormatter { - convenience public init(withFormat format: Swift.String, locale: Swift.String) +extension ZTCoreKit.ZTCore { + final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) + final public func updateFirmware(path: Swift.String) } -open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { - public init() - @objc deinit +extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { + @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) + final public func dfuFailed(error: ZTCoreKit.ZTError) + @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) + @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) + @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) + final public func checkDfuState() } -@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +@_inheritsConvenienceInitializers @objc(ZTPacket) open class ZTPacket : CoreData.NSManagedObject, ZTCoreKit.ZTNotifyDataMessage, ZTCoreKit.ZTPacketCachable { + @available(*, deprecated, message: "This property will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static let key: Swift.String + @objc @NSManaged dynamic public var id: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var createdAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var fulfilledAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var scheduledDeleted: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var sentAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var rawData: Foundation.Data? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activity: ZTCoreKit.ZTActivity? { + @objc get + @objc set + } + public var activityType: ZTCoreKit.ZTActivityMode? + @objc @NSManaged dynamic public var timestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var duration: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var statusRawValue: Swift.Int16 { + @objc get + @objc set + } + public var status: ZTCoreKit.ZTPacket.Status { get + set } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let object: T? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> T - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> T - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableArrayResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [T] - @available(*, deprecated, message: "This method will be deleted in a future version of the SDK.") - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> [T] - @objc deinit -} -open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { - public typealias Object = T - public typealias JSON = T.RawValue - public init() - open func transformFromJSON(_ value: Any?) -> T? - open func transformToJSON(_ value: T?) -> T.RawValue? - @objc deinit -} -public class ZTReachability { - public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter - public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { + public var timestampType: ZTCoreKit.ZTPacket.TimestampType { get set } - public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? - public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? - public var managerStarted: Swift.Bool - public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { - case all, wifi, cellular, wiredEthernet, loopback, other, none - public var description: Swift.String { - get - } - public func getInterfaceType() -> Network.NWInterface.InterfaceType + public var bmTimestampType: ZTCoreKit.ZTPacket.BmTimestampType { + get + set + } + public var packetType: ZTCoreKit.ZTPacket.PacketType { + get + set + } + @objc @NSManaged dynamic public var originalTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packetsNumber: Swift.Int16 { + @objc get + @objc set + } + public var rawDescription: Swift.String { + get + } + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var retryCount: Swift.Int16 { + @objc get + @objc set + } + public enum CodingKeys : Swift.CodingKey { + case id + case activityId + case rawData + case timestamp + case duration + case status + case packetType + case timestampType + case originalTimestamp + case packetsNumber + case fwVersion + case retryCount + public static func == (a: ZTCoreKit.ZTPacket.CodingKeys, b: ZTCoreKit.ZTPacket.CodingKeys) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) - public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) public var hashValue: Swift.Int { get } - } - public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { - case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline - public var description: Swift.String { + public var intValue: Swift.Int? { get } - public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool - } - public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) - public func startManager() - public func stopManager() - @objc deinit -} -open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.Double - public enum Unit : Foundation.TimeInterval { - case seconds - case milliseconds - public init?(rawValue: Foundation.TimeInterval) - public typealias RawValue = Foundation.TimeInterval - public var rawValue: Foundation.TimeInterval { + public var stringValue: Swift.String { get } } - public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + public init(data: Foundation.Data) + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + required public init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String? = nil, context: CoreData.NSManagedObjectContext, name: Swift.String) + required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + open func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool + public typealias Activity = ZTCoreKit.ZTActivity @objc deinit } -public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void -public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void -public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void -public typealias ZTCompletion = (() -> Swift.Void) -public protocol ZTBaseMappable { - mutating func mapping(map: ZTCoreKit.ZTMap) -} -public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { - init?(map: ZTCoreKit.ZTMap) -} -public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { - static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? -} -extension ZTCoreKit.ZTMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) -} -extension ZTCoreKit.ZTBaseMappable { - public func toJSON() -> [Swift.String : Any] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func lastSegmentId(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func segmentsCount(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, startId: Swift.Int16) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPackets(activityId: Swift.String, startId: Swift.Int16? = nil, lastId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.Int16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPacket(activityId: Swift.String?, id: Swift.Int16) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTPacket + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, lastChunkId: Swift.Int16?) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func clear(activityId: Swift.String?) + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedPackets(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16]? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.Int16, lastId: Swift.Int16?) -> Swift.Int16? +} +extension ZTCoreKit.ZTPacket { + public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool + public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.Int16?, endIndex: Swift.Int16?) -> Swift.Bool + public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.Int16) + public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.Int16) -> Swift.Bool + public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> Swift.Bool + public static func isSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16?, endId: Swift.Int16?) -> Swift.Bool + public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.Int16) -> Swift.Bool } @_hasMissingDesignatedInitializers final public class ZTApi { public static let shared: ZTCoreKit.ZTApi @@ -3747,12 +3469,12 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func getActivities(code: Swift.String?, offset: Swift.Int, limit: Swift.Int, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: (([T]?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getActivity(id: Swift.String, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func startActivity(id: Swift.String, code: Swift.String, startTime: Swift.Int64 = Date().timestamp, attributes: [Swift.String : Any]? = nil, completion: ((Swift.String?, (any Swift.Error)?) -> Swift.Void)?) - final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTSegmentData, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTSegmentData], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int16? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTPacket, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTPacket], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) final public func deleteActivity(id: Swift.String, completion: ZTCoreKit.ZTBaseResult? = nil) final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, data: [Swift.String]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable - final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable + final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> Swift.Void)) final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([[Swift.String : Any]]?, (any Swift.Error)?) -> Swift.Void)) @@ -3791,224 +3513,408 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func resendSavedRequests() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func extract(_ entry: ZTCoreKit.ZTEntry, to url: Foundation.URL, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil) throws -> ZTCoreKit.CRC32 - final public func extract(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 +public protocol ZTCBPeripheralProtocol { + var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } + var name: Swift.String? { get } + var rssi: Foundation.NSNumber? { get } + var state: CoreBluetooth.CBPeripheralState { get } + var services: [CoreBluetooth.CBService]? { get } + var identifier: Foundation.UUID { get } + func discoverServices(_: [CoreBluetooth.CBUUID]?) + func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) + func readValue(for: CoreBluetooth.CBCharacteristic) + func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) + func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) } -public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void -@_hasMissingDesignatedInitializers final public class ZTCore { - public static let version: Swift.String - final public var zcVersion: Swift.String - public static let shared: ZTCoreKit.ZTCore - final public let bleManager: ZTCoreKit.ZTBleManager - final public var settings: ZTCoreKit.ZTSettings { +extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { +} +public protocol ZTBaseMappable { + mutating func mapping(map: ZTCoreKit.ZTMap) +} +public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { + init?(map: ZTCoreKit.ZTMap) +} +public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { + static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? +} +extension ZTCoreKit.ZTMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) +} +extension ZTCoreKit.ZTBaseMappable { + public func toJSON() -> [Swift.String : Any] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +public struct ZTRealtimeMessage : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } + public enum Side : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + get + } + public var content: [Swift.UInt8] { + get + } + public init(bytes: [Swift.UInt8]) + public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + get + } + public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + get + } + public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + get + } + public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + get + } +} +@_hasMissingDesignatedInitializers public class ZTDefaults { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { + final public let stringValue: Swift.String + public init(_ value: Swift.String) + @objc deinit +} +@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + public var stringValue: Swift.String? { + get + } + @objc deinit +} +public class ZTActivityComment : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var timeZone: Swift.String? + public var timestamp: Foundation.Date? + public var text: Swift.String? + public var activityId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + public var mediaFiles: [ZTCoreKit.ZTMediaFile]? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +public enum ZTAlgoCommand : Swift.UInt8 { + case getStatus + case startNewChunk + case changeProductMode + case setPrecisionMode + case setMinimumNumberOfStrides + case enableStreamingOfValues + case setDisconnectionDelay + case setUserInfo + case setDailyTimestamp + case getPositionOfPods + case enableSpecificPacket + case holdRealtimeStreaming + case getSingleTimeMetrics + case calibrateGravity + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var appUserId: Swift.String? { +} +public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case status + case acknowledgment + case realTimeEvent + case realTimeMetrics + case warning + case error + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var lastCommand: ZTCoreKit.ZTCommand? - final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] - final public var lastActivityId: Swift.String? { - get +} +public enum ZTError : Swift.Equatable, Swift.Error { + case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) + case ble(type: ZTCoreKit.ZTError.Enums.BleError) + case network(type: ZTCoreKit.ZTError.Enums.NetworkError) + case store(type: ZTCoreKit.ZTError.Enums.StoreError) + case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) + case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) + case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) + case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) + @_hasMissingDesignatedInitializers public class Enums { + @objc deinit } - final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { + public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool + public var error: (any Swift.Error)? { get } - final public var connectedDevice: ZTCoreKit.ZTDevice? { +} +extension ZTCoreKit.ZTError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastDeviceSerialNumber: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum ScanningError { + case cameraPermission + case wrongCode + case unknown + case notLinkedUser + public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var lastDeviceQRCode: Swift.String? { +} +extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastQRCode: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum BleError { + case invalidState + case resetting + case poweredOff + case unsupported + case timeout + case unauthorized + case notConnected + case notConnectedLeft + case activityIsRunning + case busy + case dfu + case commandError + public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var isDfuInProgress: Swift.Bool { +} +extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? - final public var firmwareDfuState: ZTCoreKit.DFUState? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum FirmwareError { + case differentFirmware + case memsError + case leftNoConnected + case restartRequired + case recoverFromDfu + case minimumFwVersion + case updateRequired + case unsupported + case wrongProductType + case firstChunkIdIsGreater + case startTimeZero + public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { +} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> - final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> - final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuCopied: ZTCoreKit.ZTSignal<()> - final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) - final public func clearUser() - final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) - @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func stopScan() - final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) - #if compiler(>=5.3) && $AsyncAwait - final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice - #endif - @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") - final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) - final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) - final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func setDeepSleepMode() throws - @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Metrics : Swift.CustomStringConvertible { - public var activityType: ZTCoreKit.ZTActivityType? { - get - } - public var metricId: Swift.UInt8? { - get - } - public var metric: ZTCoreKit.ZTRealtimeMetric? { - get - } - public var value: [Swift.UInt8]? { +extension ZTCoreKit.ZTError.Enums { + public enum DfuError { + case noLeftModule + case noUpdate + case wrongFile + case noStart + case aborted + case abortedRight + case abortedLeft + case unsupported + case lowBattery + case inProgress + case updateRequired + case wrongProductType + public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public var description: Swift.String { + } +} +extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum StoreError { + case missing(Swift.String) + case invalid(Swift.String, Any?) + case wrong(Swift.String) + case unknown + } +} +extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum ActivityError { + case notStarted + case notStartedLeft + case notStopped + case unknown + case modeNotSetActivityIsRunning + case previousNotStopped + case previousRestoring + case noUserParametersSet + case rawDataFlowIsRunning + case invalidMobilityScanResults + case outsideActivityDetected + case anomalyDetected + case mobility + public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public init(data: Foundation.Data) } } -@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum NetworkError { + case userLinkError + case inaccessible + case urlError(Foundation.URLError) + case generalError(any Swift.Error) + case noResponse + case invalidResponseType(Foundation.URLResponse) + case noResponseData(Foundation.HTTPURLResponse) + case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) + case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) + } +} +extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTJSONParameterEncoder { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTURLEncodedFormParameterEncoder { - @objc deinit } -@_hasMissingDesignatedInitializers final public class ZTSettings { - public static let shared: ZTCoreKit.ZTSettings - final public var version: Swift.String? - final public var logLevel: ZTCoreKit.ZTLogLevel - final public var environment: ZTCoreKit.ZTEnvironment - final public var autoConnect: Swift.Bool - final public var enableEventLogging: Swift.Bool - final public var shouldObtaineMissedChunks: Swift.Bool - final public var enableRawDataCheck: Swift.Bool - final public var shouldAutoResendData: Swift.Bool - final public var activityDataSyncThreshold: Swift.Int - final public var enableBackgroundDFU: Swift.Bool - final public var enableBackgroundDataStreaming: Swift.Bool - final public var activityChunkStoreForFreeMemory: Swift.Int - final public var activityChunkRetryLimit: Swift.Int - final public var checkFirmwareUpdatePeriod: Swift.Int - final public var enableAnalyticsData: Swift.Bool - final public var autorestartBackgroundDfu: Swift.Bool - final public var getChunksOnApplicationDidBecomeActive: Swift.Bool - final public var enablePacketsDataLogging: Swift.Bool - final public var cachedPacketsBatchUploadSize: Swift.Int - final public var chunkDuration: Swift.Int? { +extension ZTCoreKit.ZTError.Enums { + public enum DecodableError { + case invalidKeyPath + case emptyKeyPath + case invalidJSON + public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } +} +extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public func clear() - @objc deinit } -@_hasMissingDesignatedInitializers open class ZTClosureEventMonitor { - open var sessionDidBecomeInvalidWithError: ((Foundation.URLSession, (any Swift.Error)?) -> Swift.Void)? - open var taskDidReceiveChallenge: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> Swift.Void)? - open var taskDidSendBodyData: ((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var taskNeedNewBodyStream: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var taskWillPerformHTTPRedirection: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> Swift.Void)? - open var taskDidFinishCollectingMetrics: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> Swift.Void)? - open var taskDidComplete: ((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> Swift.Void)? - open var taskIsWaitingForConnectivity: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var dataTaskDidReceiveData: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> Swift.Void)? - open var dataTaskWillCacheResponse: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> Swift.Void)? - open var downloadTaskDidFinishDownloadingToURL: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> Swift.Void)? - open var downloadTaskDidWriteData: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var downloadTaskDidResumeAtOffset: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> Swift.Void)? - @objc deinit -} -extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} -extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} -extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Equatable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareType : Swift.Hashable {} extension ZTCoreKit.DFUFirmwareType : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Equatable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} -extension ZTCoreKit.LogLevel : Swift.Equatable {} -extension ZTCoreKit.LogLevel : Swift.Hashable {} -extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.Status : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.RawRepresentable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityType : Swift.Equatable {} +extension ZTCoreKit.ZTActivityType : Swift.Hashable {} +extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} extension ZTCoreKit.ZTTXPower : Swift.Equatable {} extension ZTCoreKit.ZTTXPower : Swift.Hashable {} extension ZTCoreKit.ZTTXPower : Swift.RawRepresentable {} extension ZTCoreKit.ZTCommand : Swift.Equatable {} extension ZTCoreKit.ZTCommand : Swift.Hashable {} extension ZTCoreKit.ZTCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} -extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.Equatable {} +extension ZTCoreKit.ZTPeriod : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTProductType : Swift.Equatable {} extension ZTCoreKit.ZTProductType : Swift.Hashable {} extension ZTCoreKit.ZTProductType : Swift.RawRepresentable {} @@ -4033,42 +3939,44 @@ extension ZTCoreKit.ZTGenderSizeCodeType : Swift.RawRepresentable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Equatable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Hashable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.Equatable {} +extension ZTCoreKit.LogLevel : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMappingType : Swift.Equatable {} +extension ZTCoreKit.ZTMappingType : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Equatable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Hashable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogLevel : Swift.Equatable {} extension ZTCoreKit.ZTLogLevel : Swift.Hashable {} extension ZTCoreKit.ZTLogLevel : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogCategory : Swift.Equatable {} extension ZTCoreKit.ZTLogCategory : Swift.Hashable {} extension ZTCoreKit.ZTLogCategory : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Equatable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Hashable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.RawRepresentable {} @@ -4093,72 +4001,62 @@ extension ZTCoreKit.ZTNotifyData.GenericMessageId : Swift.RawRepresentable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Equatable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Hashable {} extension ZTCoreKit.ZTDeviceActualState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.Equatable {} -extension ZTCoreKit.ZTActivityType : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} -extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} -extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} -extension ZTCoreKit.DFUUuidType : Swift.Equatable {} -extension ZTCoreKit.DFUUuidType : Swift.Hashable {} -extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} +extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} +extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} +extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUError : Swift.Equatable {} extension ZTCoreKit.DFUError : Swift.Hashable {} extension ZTCoreKit.DFUError : Swift.RawRepresentable {} extension ZTCoreKit.DFUState : Swift.Equatable {} extension ZTCoreKit.DFUState : Swift.Hashable {} extension ZTCoreKit.DFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDFUState : Swift.Equatable {} +extension ZTCoreKit.ZTDFUState : Swift.Hashable {} +extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} +extension ZTCoreKit.DFUUuidType : Swift.Equatable {} +extension ZTCoreKit.DFUUuidType : Swift.Hashable {} +extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} +extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} +extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Equatable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Hashable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Equatable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Hashable {} extension ZTCoreKit.ZTAlgoCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} -extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDFUState : Swift.Equatable {} -extension ZTCoreKit.ZTDFUState : Swift.Hashable {} -extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Equatable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Hashable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTPeriod : Swift.Equatable {} -extension ZTCoreKit.ZTPeriod : Swift.Hashable {} -extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMappingType : Swift.Equatable {} -extension ZTCoreKit.ZTMappingType : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} -extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftdoc b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftdoc index 5d5a2af..fff2fea 100644 Binary files a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftdoc and b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftinterface b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftinterface index f984c16..0b7657a 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,18 +1,13 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit -import Combine -import CommonCrypto -import Compression +// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit import CoreBluetooth -import CoreFoundation +import CoreData import CoreTelephony import Dispatch import Foundation -import MobileCoreServices import Network import ObjectiveC -import Security import Swift import SystemConfiguration import UIKit @@ -21,175 +16,158 @@ import _StringProcessing import _SwiftConcurrencyShims import os.log import os -import zlib -public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case timestamp - case modeId - case precisionMode - case numberOfSteps - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +public protocol ZTEnum : Swift.Decodable, Swift.Encodable { + var description: Swift.String { get } } -extension Foundation.Data { - public func macAddress() -> Swift.String? - public var bytes: [Swift.UInt8] { - get - } - public var hexDescription: Swift.String { +extension ZTCoreKit.ZTEnum { + public var description: Swift.String { get } - public init?(hex: Swift.String) - public func getUInt(offset: Swift.Int) -> Swift.UInt16 - public func getUInt32(offset: Swift.Int) -> Swift.UInt32 - public func getFloat(offset: Swift.Int) -> Swift.Float - public func getByte(at index: Swift.Int) -> Swift.Int8 - public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 - public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 - public mutating func append(byte data: Swift.Int8) - public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) - public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -extension Foundation.Data { - public func dataObject(at index: Foundation.Data.Index = 0) -> T - public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int - public func object(at offset: Swift.Int) -> T +@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { + public var name: Swift.String + public var description: Swift.String? + public var mimeType: Swift.String? + public var key: Swift.String? + public var url: Swift.String? + public var data: Foundation.Data? + convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) + required convenience public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Swift.Numeric { - public var data: Foundation.Data { +public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void +public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void +public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void +public typealias ZTCompletion = (() -> Swift.Void) +public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { + public var rawData: Foundation.Data? + public var right: Swift.UInt8 + public var left: Swift.UInt8 + public var min: Swift.UInt8 { get } -} -public struct ZTAES { - public let key: Foundation.Data - public let iv: Foundation.Data - public var algorithm: CommonCrypto.CCAlgorithm { + public var description: Swift.String { get } - public var options: CommonCrypto.CCOptions { + public init() + public init(data: Foundation.Data) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static let uuid: Swift.String + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var encOption: CommonCrypto.CCOptions { + public var byte1: Swift.UInt8? { get } - public var decOption: CommonCrypto.CCOptions { + public var byte2: Swift.UInt8? { get } - public var successStatus: Swift.UInt32 { + public var byte3: Swift.UInt8? { get } - public func evaluate(_ current: CommonCrypto.CCCryptorStatus, with needed: Swift.UInt32) -> Swift.Bool - public typealias error = ZTCoreKit.ZTPlist.Error - public init?(key: Swift.String, iv: Swift.String) - public func encrypt(data: Foundation.Data) -> Foundation.Data? - public func decrypt(data: Foundation.Data?) -> Foundation.Data? - public func crypt(data: Foundation.Data?, option: CommonCrypto.CCOperation) -> Foundation.Data? -} -@_hasMissingDesignatedInitializers open class ZTRetryPolicy { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTConnectionLostRetryPolicy : ZTCoreKit.ZTRetryPolicy { - @objc deinit + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTMessageGeneralState { + public var activityStartedRight: Swift.Bool { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -extension Foundation.UserDefaults { - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { + public var activityStartedLeft: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { + public var pairIsConnected: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { + public var memsHasError: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { + public var firmwareDifferent: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { + public var actualState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { + public var previousState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { + public var description: Swift.String { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { +} +@_hasMissingDesignatedInitializers public class ZTCommandResponse { + public var bytes: [Swift.UInt8] + public var rightModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { + public var leftModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { + public var command: ZTCoreKit.ZTCommand? { get - set } - public subscript(key: Swift.String) -> Any? { + public var status: ZTCoreKit.ZTCommandStatus? { get - set(value) } - public func value(forKey key: Swift.String) -> T? - public func clear(_ key: Swift.String) - public func clear(_ key: ZTCoreKit.ZTDefaultsKey) - public func clearAll() + @objc deinit } -public struct ZTPairedDevice : Swift.Codable { - public var macAddress: Swift.String { +public enum ZTCommandStatus : Swift.UInt8 { + case success + case busy + case invalidParam + case invalidState + case forbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerresponse + public var description: Swift.String { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -public enum ZTDfuPackageType : Swift.String { - case APP - case BL - case SD - case SD_BL - case SD_BL_APP - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers final public class ZTSettings { + public static let shared: ZTCoreKit.ZTSettings + final public var version: Swift.String? + final public var logLevel: ZTCoreKit.ZTLogLevel + final public var environment: ZTCoreKit.ZTEnvironment + final public var autoConnect: Swift.Bool + final public var enableEventLogging: Swift.Bool + final public var shouldObtaineMissedChunks: Swift.Bool + final public var enableRawDataCheck: Swift.Bool + final public var shouldAutoResendData: Swift.Bool + final public var activityDataSyncThreshold: Swift.Int + final public var enableBackgroundDFU: Swift.Bool + final public var enableBackgroundDataStreaming: Swift.Bool + final public var activityChunkStoreForFreeMemory: Swift.Int + final public var activityChunkRetryLimit: Swift.Int + final public var checkFirmwareUpdatePeriod: Swift.Int + final public var enableAnalyticsData: Swift.Bool + final public var autorestartBackgroundDfu: Swift.Bool + final public var getChunksOnApplicationDidBecomeActive: Swift.Bool + final public var enablePacketsDataLogging: Swift.Bool + final public var cachedPacketsBatchUploadSize: Swift.Int + final public var chunkDuration: Swift.Int? { get + set } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + final public func clear() @objc deinit } -@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { +@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { public static let uuid: Swift.String open var data: Foundation.Data? { get @@ -198,336 +176,317 @@ public enum ZTDfuPackageType : Swift.String { override open func valueUpdated() @objc deinit } -public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var bootloaderVersion: Swift.UInt8 { - get - } - public var appSupportVersion: Swift.UInt8 { - get - } - public var softDeviceId: Swift.UInt8 { - get +extension ZTCoreKit.ZTRealtimeMessage { + public struct Status : Swift.CustomStringConvertible { + public var code: ZTCoreKit.ZTAlgoStatus? { + get + } + public var timestamp: Swift.UInt32? { + get + } + public var algoMode: ZTCoreKit.ZTAlgoMode? { + get + } + public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { + get + } + public var consecutiveSteps: Swift.UInt8? { + get + } + public var description: Swift.String { + get + } + public init(data: Foundation.Data) } - public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { +} +public enum ZTBleManagerState : Swift.CustomStringConvertible { + case off + case on + case idle + case scanning + case unauthorized + case resetting + case unknown + case unsupported + public var description: Swift.String { get } - public var description: Swift.String { + public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public enum DfuState : Swift.UInt8 { - case none - case inProgress - case received - case readyForCopy - case activation - case done - case error - case validationError - case activationError - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } -extension Swift.String { - public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String - public var fromBase64: Swift.String? { +public enum ZTRealtimeMetric : Swift.String { + case duration + case steps + case cycleDuration + case stepCadence + case stepSpeed + case distance + case footDistance + case energySum + case walkingQualityScore + case stairsClimbed + case intenseActivity + case slope + case accelerationFoot + case strideLength + case relativePronationAngleFoot + case pronationAngleFFI + case pronationAngleFFO + case plantarFlexionAngularSpeedMaxPropulsion + case symmetry + public func value() -> Swift.UInt8 + public var activityType: ZTCoreKit.ZTActivityType { get } - public var toBase64: Swift.String { + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String - public func substring(range: Foundation.NSRange) -> Swift.String - public func matches(regex: Swift.String) -> [Swift.String] - public static func random(length: Swift.Int = 9) -> Swift.String - public func split(usingRegex pattern: Swift.String) -> [Swift.String] - public func serialNumber() -> Swift.String - public func fileName() -> Swift.String - public func incrementedMacAddress() -> Swift.String } -extension Swift.Int { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +extension ZTCoreKit.ZTRealtimeMetric { + public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) + public init?(name: Swift.String) } -extension Swift.UInt8 { - public var bits: [Swift.UInt8] { - get - } - public var hexValue: Swift.String { - get +open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.Double + public enum Unit : Foundation.TimeInterval { + case seconds + case milliseconds + public init?(rawValue: Foundation.TimeInterval) + public typealias RawValue = Foundation.TimeInterval + public var rawValue: Foundation.TimeInterval { + get + } } + public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + @objc deinit } -extension Swift.UInt16 { - public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] -} -extension Swift.UInt32 { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] -} -extension Swift.UInt64 { - public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] +open class ZTDataTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Data + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.Data? + open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? + @objc deinit } -extension Swift.Double { - public var milliseconds: Swift.Int64 { +@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension Swift.Array where Element == Swift.UInt8 { - public var hex: Swift.String { +public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case defaultMode + case economicMode + case performanceMode + public var parameters: [Swift.UInt8] { get } -} -extension Swift.Dictionary { - public func merge(dict: [Key : Value]) -> [Key : Value] -} -extension Foundation.Date { - public var timestamp: Swift.Int64 { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - public var apiFormat: Swift.String { - get +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { + @objc public func pause() + @objc public func resume() + @objc public func abort() -> Swift.Bool + @objc public func restart() + @objc public var paused: Swift.Bool { + @objc get } - public var logFormat: Swift.String { - get + @objc public var aborted: Swift.Bool { + @objc get } + @objc deinit } -extension Swift.Array where Element : CoreBluetooth.CBPeripheral { - public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool -} -extension Swift.Array { - public func chunked(into size: Swift.Int = 1000) -> [[Element]] -} -extension Swift.Array where Element == Swift.String { - public func stringify() -> Swift.String -} -extension CoreBluetooth.CBCharacteristic { - public func notifyValue(_ isEnabled: Swift.Bool) - public func readValue() - @discardableResult - public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { + public var left: Swift.UInt32 + public var right: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTEnvironment { - case dev - case staging - case production - case zcdev - case zcstaging - case zcproduction - public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { +extension ZTCoreKit.ZTMessageInactivityTimeout { + public var description: Swift.String { get } } -public enum ZTModuleSide : Swift.String, Swift.Codable { - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } +public protocol ZTCBCentralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + func stopScan() + func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] + func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] + func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) + func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) + func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) } -public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable -public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable -public protocol ZTEnum : Swift.Decodable, Swift.Encodable { - var description: Swift.String { get } +extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { + public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? + public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] + public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) } -extension ZTCoreKit.ZTEnum { +open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { + public init(formatString: Swift.String) + @objc deinit +} +public struct ZTMapError : Swift.Error { + public var key: Swift.String? + public var currentValue: Any? + public var reason: Swift.String? + public var file: Swift.StaticString? + public var function: Swift.StaticString? + public var line: Swift.UInt? + public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) +} +extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { public var description: Swift.String { get } } -extension ZTCoreKit.ZTArchive { - final public func totalUnitCountForRemoving(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForReading(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForAddingItem(at url: Foundation.URL) -> Swift.Int64 -} -public let defaultReadChunkSize: Swift.UInt32 -public let defaultWriteChunkSize: Swift.UInt32 -public let defaultFilePermissions: Swift.UInt16 -public let defaultDirectoryPermissions: Swift.UInt16 -final public class ZTArchive : Swift.Sequence { - public enum ArchiveError : Swift.Error { - case unreadableArchive - case unwritableArchive - case invalidEntryPath - case invalidCompressionMethod - case invalidStartOfCentralDirectoryOffset - case missingEndOfCentralDirectoryRecord - case invalidNumberOfEntriesOnDisk - case invalidNumberOfEntriesInCentralDirectory - case cancelledOperation - case invalidBufferSize - public static func == (a: ZTCoreKit.ZTArchive.ArchiveError, b: ZTCoreKit.ZTArchive.ArchiveError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get +public protocol ZTPacketCachable : CoreData.NSManagedObject { + associatedtype Activity : ZTCoreKit.ZTActivityCachable + var id: Swift.Int16 { get set } + var createdAt: Foundation.Date { get set } + var fulfilledAt: Foundation.Date { get set } + var sentAt: Foundation.Date { get set } + var timestamp: Swift.Int64 { get set } + var duration: Swift.Int16 { get set } + var statusRawValue: Swift.Int16 { get set } + var status: ZTCoreKit.ZTPacket.Status { get set } + var scheduledDeleted: Foundation.Date? { get set } + var rawData: Foundation.Data? { get set } + var activity: Self.Activity? { get set } + var fwVersion: Swift.String? { get set } + init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, context: CoreData.NSManagedObjectContext, name: Swift.String) +} +extension ZTCoreKit.ZTPacketCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public enum ZTServices { + public enum Primary { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + case test + public var uid: Swift.String { + get + } + public var uuid: CoreBluetooth.CBUUID { + get + } + public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - public enum AccessMode : Swift.UInt { - case create - case read - case update - public init?(rawValue: Swift.UInt) - public typealias RawValue = Swift.UInt - public var rawValue: Swift.UInt { - get + public enum PrimaryOld { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - final public let url: Foundation.URL - final public let accessMode: ZTCoreKit.ZTArchive.AccessMode - public init?(url: Foundation.URL, accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - public init?(data: Foundation.Data = Data(), accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - @objc deinit - final public func makeIterator() -> Swift.AnyIterator - final public subscript(path: Swift.String) -> ZTCoreKit.ZTEntry? { - get - } - public typealias Element = ZTCoreKit.ZTEntry - public typealias Iterator = Swift.AnyIterator -} -final public class ZTSignal { - public typealias ZTSignalCallback = (T) -> Swift.Void - final public var fireCount: Swift.Int { - get - } - final public var retainLastData: Swift.Bool { - get - set - } - final public var lastDataFired: T? { - get + public enum DeviceInformation { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case manufacturerName + case modelNumber + case serialNumber + case firmwareRevision + case hardwareRevision + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - final public var observers: [Swift.AnyObject] { - get + public enum DeviceDFU { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case dfuControlPoint + case dfuPacket + case dfuButtonless + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - public init(retainLastData: Swift.Bool = false) - @discardableResult - final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - final public func fire(_ data: T) - final public func cancelSubscription(for observer: Swift.AnyObject) - final public func cancelAllSubscriptions() - final public func clearLastData() - @objc deinit -} -extension ZTCoreKit.ZTSignal where T == () { - final public func fire() -} -@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { - public typealias ZTSignalCallback = (T) -> Swift.Void - public typealias ZTSignalFilter = (T) -> Swift.Bool - weak final public var observer: Swift.AnyObject? - final public var once: Swift.Bool - @discardableResult - final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription - final public func cancel() - @objc deinit } -infix operator => : AssignmentPrecedence -public func => (signal: ZTCoreKit.ZTSignal, data: T) -public struct ZTMessageTime : Swift.CustomStringConvertible { - public var timestamp: Swift.Int64 - public var side: ZTCoreKit.ZTModuleSide - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { +public enum ZTRealtimeSide : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@objc public protocol DFUPeripheralSelectorDelegate { - @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool - @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? -} -extension ZTCoreKit.ZTArchive { - final public var data: Foundation.Data? { - get - } +@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { + public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? + @objc override dynamic public init() + @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage.Event { - public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case motion - case transition - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension ZTCoreKit.ZTRealtimeMessage { + public struct Acknowledgment : Swift.CustomStringConvertible { + public var command: ZTCoreKit.ZTAlgoCommand? { get } - } - public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case stepForward - case stepBackward - case stepSideLeft - case stepSideRight - case stepUp - case stepDown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { get } - } - public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case low - case medium - case high - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -public class ZTDateTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public enum DFUStreamHexError : Swift.Error { - case invalidHexFile - public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -open class ZTDataTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Data - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.Data? - open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? - @objc deinit -} open class ZTCharacteristic { weak public var service: ZTCoreKit.ZTService? { get @@ -557,951 +516,1103 @@ open class ZTCharacteristic { open func notificationUpdated() @objc deinit } -@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@objc public enum DFUFirmwareType : Swift.UInt8 { + case softdevice = 1 + case bootloader = 2 + case application = 4 + case softdeviceBootloader = 3 + case softdeviceBootloaderApplication = 7 + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) +} +public struct DFUFirmwareError : Swift.Error { + public enum FileType { + case zip + case binOrHex + case dat + public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public let type: ZTCoreKit.DFUFirmwareError.FileType +} +extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +@objc public class DFUFirmware : ObjectiveC.NSObject { + @objc final public let fileName: Swift.String? + @objc final public let fileUrl: Foundation.URL? + @objc public var valid: Swift.Bool { + @objc get + } + @objc public var size: ZTCoreKit.DFUFirmwareSize { + @objc get + } + @objc public var parts: Swift.Int { + @objc get + } + @objc convenience public init(urlToZipFile: Foundation.URL) throws + @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws + @objc convenience public init(zipFile: Foundation.Data) throws + @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) + @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws @objc deinit } -public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { +public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void +@_hasMissingDesignatedInitializers final public class ZTCore { + public static let version: Swift.String + final public var zcVersion: Swift.String + public static let shared: ZTCoreKit.ZTCore + final public let bleManager: ZTCoreKit.ZTBleManager + final public var settings: ZTCoreKit.ZTSettings { get } - public var byte1: Swift.UInt8? { + final public var appUserId: Swift.String? { get } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTMessageChunkConfig { - public var side: ZTCoreKit.ZTModuleSide { + final public var lastCommand: ZTCoreKit.ZTCommand? + final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] + final public var lastActivityId: Swift.String? { get } - public var flag: Swift.UInt8 { + final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { get } - public var description: Swift.String { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } -} -@_hasMissingDesignatedInitializers open class ZTSession { - @objc deinit -} -open class ZTService { - weak public var device: ZTCoreKit.ZTDevice! { + final public var lastDeviceSerialNumber: Swift.String? { get } - final public let service: CoreBluetooth.CBService - public static var serviceType: ZTCoreKit.ZTService.Type { + final public var lastDeviceQRCode: Swift.String? { get } - public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { + final public var lastQRCode: Swift.String? { get } - public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + final public var isDfuInProgress: Swift.Bool { + get + } + weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? + final public var firmwareDfuState: ZTCoreKit.DFUState? { + get + } + final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { + get + set + } + final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> + final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> + final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuCopied: ZTCoreKit.ZTSignal<()> + final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + final public func clearUser() + final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) + @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func stopScan() + final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) + #if compiler(>=5.3) && $AsyncAwait + final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice + #endif + @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") + final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) + final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) + final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func setDeepSleepMode() throws + @objc deinit } -extension ZTCoreKit.ZTService : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +public class ZTDatabaseService where Packet : ZTCoreKit.ZTPacketCachable, Activity : ZTCoreKit.ZTActivityCachable { + public var currentActivityId: Swift.String? + public init(context: CoreData.NSManagedObjectContext = ZTCoreDataStack.shared.context) + @objc deinit + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withId activityId: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withSerial serial: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func createActivity(withId id: Swift.String, updateBlock: ((Activity) -> Swift.Void)? = nil) async throws -> Activity? + #endif + public func updateActivity(id: Swift.String, updateBlock: @escaping (Activity) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + public func deleteActivity(withId id: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + #if compiler(>=5.3) && $AsyncAwait + public func createPacket(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, updateBlock: ((Packet) -> Swift.Void)? = nil) async -> Packet + #endif + public func fetchPackets(for activityId: Swift.String, completion: @escaping (Swift.Result<[Packet], any Swift.Error>) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func fetchPackets(forActivityId activityId: Swift.String, from startId: Swift.Int16? = nil, to lastId: Swift.Int16? = nil, in managedObjectContext: CoreData.NSManagedObjectContext) async throws -> [Packet] + #endif + public func trashOldPackets() + public func updatePackets(for activityId: Swift.String, from startId: Swift.Int16, to endId: Swift.Int16, withStatus newStatus: ZTCoreKit.ZTPacket.Status, completion: @escaping ((any Swift.Error)?) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func add(_ packet: Packet, to activityId: Swift.String, in managedContext: CoreData.NSManagedObjectContext) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + public func update(_ packets: [Packet], withNewStatus newStatus: ZTCoreKit.ZTPacket.Status, in managedContext: CoreData.NSManagedObjectContext) async + #endif + public func update(packet: Packet, updateBlock: @escaping (Packet) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) } -public protocol ZTServiceProtocol : AnyObject { - static var uuid: Swift.String { get } - static var serviceType: ZTCoreKit.ZTService.Type { get } - static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +public class ZTUser : ZTCoreKit.ZTMappable { + public var attributes: [Swift.String : Any] + public var id: Swift.String? + public var organizationId: Swift.String? + public var appId: Swift.String? + public var createdAt: Swift.String? + public var updatedAt: Swift.String? + public var userId: Swift.String? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { +public class ZTAchievement : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var type: Swift.String? + public var activityId: Swift.String? + public var code: Swift.String? + public var appuserId: Swift.String? + public var data: [Swift.String : Any]? + public var duration: Swift.Int64? + public var calories: Swift.Double? + public var createdAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +open class ZTService { + weak public var device: ZTCoreKit.ZTDevice! { + get + } + final public let service: CoreBluetooth.CBService public static var serviceType: ZTCoreKit.ZTService.Type { get } -} -@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) - @objc deinit -} -public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { - case status(id: ZTCoreKit.ZTAlgoStatus) - case startNewChunk - case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) - case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) - case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) - case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) - case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) - public var parameters: [Swift.UInt8] { + public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static let uuid: Swift.String - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) @objc deinit } -public enum ZTRealtimeMetric : Swift.String { - case duration - case steps - case cycleDuration - case stepCadence - case stepSpeed - case distance - case footDistance - case energySum - case walkingQualityScore - case stairsClimbed - case intenseActivity - case slope - case accelerationFoot - case strideLength - case relativePronationAngleFoot - case pronationAngleFFI - case pronationAngleFFO - case plantarFlexionAngularSpeedMaxPropulsion - case symmetry - public func value() -> Swift.UInt8 - public var activityType: ZTCoreKit.ZTActivityType { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +extension ZTCoreKit.ZTService : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +} +extension Foundation.Data { + public var hexString: Swift.String { get } } -extension ZTCoreKit.ZTRealtimeMetric { - public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) - public init?(name: Swift.String) +public protocol DataConvertible { + static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + static func += (lhs: inout Foundation.Data, rhs: Self) } -public protocol ZTCBCentralManagerProtocol : AnyObject { - var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } - var state: CoreBluetooth.CBManagerState { get } - func stopScan() - func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] - func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] - func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) - func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) - func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) +extension ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + public static func += (lhs: inout Foundation.Data, rhs: Self) } -extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { - public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? - public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] - public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) +extension Swift.UInt8 : ZTCoreKit.DataConvertible { } -@objc @_hasMissingDesignatedInitializers open class ZTSessionDelegate : ObjectiveC.NSObject { - @objc deinit +extension Swift.UInt16 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, didBecomeInvalidWithError error: (any Swift.Error)?) +extension Swift.UInt32 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionTaskDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didReceive challenge: Foundation.URLAuthenticationChallenge, completionHandler: @escaping (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didSendBodyData bytesSent: Swift.Int64, totalBytesSent: Swift.Int64, totalBytesExpectedToSend: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, needNewBodyStream completionHandler: @escaping (Foundation.InputStream?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didFinishCollecting metrics: Foundation.URLSessionTaskMetrics) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didCompleteWithError error: (any Swift.Error)?) - @available(macOS 10.13, iOS 11.0, tvOS 11.0, watchOS 4.0, *) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, taskIsWaitingForConnectivity task: Foundation.URLSessionTask) +extension Swift.Int : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDataDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, didReceive data: Foundation.Data) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, willCacheResponse proposedResponse: Foundation.CachedURLResponse, completionHandler: @escaping (Foundation.CachedURLResponse?) -> Swift.Void) +extension Swift.Float : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDownloadDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didResumeAtOffset fileOffset: Swift.Int64, expectedTotalBytes: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didWriteData bytesWritten: Swift.Int64, totalBytesWritten: Swift.Int64, totalBytesExpectedToWrite: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didFinishDownloadingTo location: Foundation.URL) +extension Swift.Double : ZTCoreKit.DataConvertible { } -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +extension Swift.String : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data +} +extension Foundation.Data : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data +} +@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { + @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool + @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? + @objc override dynamic public init() + @objc deinit +} +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.Int16, anchorTime: Swift.Int64?) + public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTPacket) + public static func updateSegments(ids: [Swift.Int16], status: ZTCoreKit.ZTPacket.Status, activityId: Swift.String?) +} +@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public protocol ZTCBPeripheralProtocol { - var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } - var name: Swift.String? { get } - var rssi: Foundation.NSNumber? { get } - var state: CoreBluetooth.CBPeripheralState { get } - var services: [CoreBluetooth.CBService]? { get } - var identifier: Foundation.UUID { get } - func discoverServices(_: [CoreBluetooth.CBUUID]?) - func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) - func readValue(for: CoreBluetooth.CBCharacteristic) - func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) - func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) -} -extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { -} -extension ZTCoreKit.ZTPlist { - public func asCollection() -> [Foundation.NSDictionary.Element] - public func set(_ rawValue: Any?, for key: Swift.String) - public func get(_ key: Swift.String) -> Any? - public func clean() - public func remove(_ keys: Swift.String...) - public func remove(keys collection: [Swift.String]) - public func bool(_ key: Swift.String) -> Swift.Bool? - public func int(_ key: Swift.String) -> Swift.Int? - public func double(_ key: Swift.String) -> Swift.Double? - public func float(_ key: Swift.String) -> Swift.Float? - public func string(_ key: Swift.String) -> Swift.String? - public func dictionary(_ key: Swift.String) -> [Swift.String : Any]? - public func collection(_ key: Swift.String) -> [Any]? - public func date(_ key: Swift.String) -> Foundation.Date? - public func data(_ key: Swift.String) -> Foundation.Data? - public func null(_ key: Swift.String) -} -public struct ZTRealtimeMessage : Swift.CustomStringConvertible { - public var description: Swift.String { - get +extension ZTCoreKit.ZTPacket { + public enum Status : Swift.Int16, Swift.Codable, Swift.Equatable { + case new + case readyToSend + case sending + case sent + case error + public init?(rawValue: Swift.Int16) + public typealias RawValue = Swift.Int16 + public var rawValue: Swift.Int16 { + get + } } - public enum Side : Swift.UInt8 { - case none - case left - case right - case both + public enum TimestampType : Swift.UInt8, Swift.Codable { + case unknown + case start + case stop + case pause + case resume + case reboot + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } - public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + public enum BmTimestampType : Swift.UInt8, Swift.Codable { + case unknown + case shoeWearOn + case shoeWearOff + case walkingStart + case walkingStop + case runningStart + case runningStop + case cyclingStart + case cyclingStop + case transportStart + case transportStop + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public enum PacketType : Swift.UInt8, Swift.Codable { + public static let maxDataValue: Swift.UInt8 + case unknown + case quantification + case walkAnalysis + case runAnalysis + case stairs + case cycling + case jump + case safety + case staticActivity + case debug + case debugTelemetry + case debugProba + case bmTimestampPacket + case fwTimestampPacket + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { + final public var advertisingServices: [CoreBluetooth.CBUUID]? + final public var managerState: ZTCoreKit.ZTBleManagerState { get + set } - public var content: [Swift.UInt8] { + final public class var instance: ZTCoreKit.ZTBleManager { get } - public init(bytes: [Swift.UInt8]) - public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { get } - public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + final public var macAddress: Swift.String? { get } - public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? + final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { get } - public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + final public var product: ZTCoreKit.ZTProductType? { get + set } -} -@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() + final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + get + } + final public var scanning: Swift.Bool { + get + } + final public var isDfuMode: Swift.Bool { + get + } + final public let onBluetoothStateChange: ZTCoreKit.ZTSignal + final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onDeviceDiscovered: ZTCoreKit.ZTSignal + final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> @objc deinit } -public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { - public var left: Swift.UInt32 - public var right: Swift.UInt32 - public init(bytes: [Swift.UInt8]) +extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +} +public struct ZTPairedDevice : Swift.Codable { + public var macAddress: Swift.String { + get + } public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageInactivityTimeout { - public var description: Swift.String { +public enum DFUStreamHexError : Swift.Error { + case invalidHexFile + public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -@objc public enum DFUFirmwareType : Swift.UInt8 { - case softdevice = 1 - case bootloader = 2 - case application = 4 - case softdeviceBootloader = 3 - case softdeviceBootloaderApplication = 7 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void +public enum ZTScannerResult { + case success(device: ZTCoreKit.ZTDevice) + case cancelled + case failed((any Swift.Error)?) +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit } -public struct DFUFirmwareError : Swift.Error { - public enum FileType { - case zip - case binOrHex - case dat - public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +public enum DFUStreamZipError : Swift.Error { + case noManifest + case invalidManifest + case fileNotFound + case typeNotFound + public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get } - public let type: ZTCoreKit.DFUFirmwareError.FileType } -extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { +extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { public var errorDescription: Swift.String? { get } } -@objc public class DFUFirmware : ObjectiveC.NSObject { - @objc final public let fileName: Swift.String? - @objc final public let fileUrl: Foundation.URL? - @objc public var valid: Swift.Bool { - @objc get - } - @objc public var size: ZTCoreKit.DFUFirmwareSize { - @objc get - } - @objc public var parts: Swift.Int { - @objc get +@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get } - @objc convenience public init(urlToZipFile: Foundation.URL) throws - @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws - @objc convenience public init(zipFile: Foundation.Data) throws - @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) - @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Status : Swift.CustomStringConvertible { - public var code: ZTCoreKit.ZTAlgoStatus? { - get - } - public var timestamp: Swift.UInt32? { - get - } - public var algoMode: ZTCoreKit.ZTAlgoMode? { - get - } - public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { - get - } - public var consecutiveSteps: Swift.UInt8? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) +public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { + case status(id: ZTCoreKit.ZTAlgoStatus) + case startNewChunk + case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) + case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) + case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) + case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) + case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) + public var parameters: [Swift.UInt8] { + get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { + @objc open var softdevice: Swift.UInt32 { + get + } + @objc open var bootloader: Swift.UInt32 { + get + } + @objc open var application: Swift.UInt32 { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() @objc deinit } -infix operator <<- : DefaultPrecedence -infix operator ->> : DefaultPrecedence -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) -public func ->> (left: T, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) -public func ->> (left: T?, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { - public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? - @objc override dynamic public init() - @objc deinit -} -public enum ZTCompressionMethod : Swift.UInt16 { - case none - case deflate - public init?(rawValue: Swift.UInt16) - public typealias RawValue = Swift.UInt16 - public var rawValue: Swift.UInt16 { +extension Swift.String { + public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String + public var fromBase64: Swift.String? { get } -} -public typealias CRC32 = Swift.UInt32 -public typealias ZTConsumer = (_ data: Foundation.Data) throws -> Swift.Void -public typealias ZTProvider = (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data -extension Foundation.Data { - public func crc32(checksum: ZTCoreKit.CRC32) -> ZTCoreKit.CRC32 - public static func compress(size: Swift.Int, bufferSize: Swift.Int, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 - public static func decompress(size: Swift.Int, bufferSize: Swift.Int, skipCRC32: Swift.Bool, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 -} -extension ZTCoreKit.ZTPlist { - public enum Error { - case notFound(at: Foundation.URL?) - case deleted(at: Foundation.URL?) - case parse(at: Foundation.URL?) - case filemanagerRemove(with: any Swift.Error) - case aesKeyFail(key: Swift.String) - case aesInitialVectorFail(iv: Swift.String) - case aesCryptFail(status: Swift.Int32) - case noData - case stringNotInUtf8 - public static let identifier: Swift.String - public func raise() - } -} -extension ZTCoreKit.ZTPlist.Error : Swift.Error, Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var toBase64: Swift.String { get } + public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String + public func substring(range: Foundation.NSRange) -> Swift.String + public func matches(regex: Swift.String) -> [Swift.String] + public static func random(length: Swift.Int = 9) -> Swift.String + public func split(usingRegex pattern: Swift.String) -> [Swift.String] + public func serialNumber() -> Swift.String + public func fileName() -> Swift.String + public func incrementedMacAddress() -> Swift.String } -public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case walking - case running - case pedaling - case jump - case stairsUp - case stairsDown - case standing - case sitting - case kneeling - case tiptoe - case vibration - case slip - case incident - case freewheel - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Int { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +} +extension Swift.UInt8 { + public var bits: [Swift.UInt8] { get } -} -public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { - var rawData: Foundation.Data? { get set } -} -@objc public enum LogLevel : Swift.Int { - case debug = 0 - case verbose = 1 - case info = 5 - case application = 10 - case warning = 15 - case error = 20 - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexValue: Swift.String { get } } -@objc public protocol LoggerDelegate { - @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +extension Swift.UInt16 { + public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { - get - } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - @objc deinit +extension Swift.UInt32 { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { - @objc public func pause() - @objc public func resume() - @objc public func abort() -> Swift.Bool - @objc public func restart() - @objc public var paused: Swift.Bool { - @objc get - } - @objc public var aborted: Swift.Bool { - @objc get - } - @objc deinit +extension Swift.UInt64 { + public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] } -public enum ZTTXPower : Swift.UInt8 { - case dBm0 - case dBm2 - case dBm3 - case dBm4 - case dBm5 - case dBm6 - case dBm7 - case dBm8 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Double { + public var milliseconds: Swift.Int64 { get } } -public class ZTPlist { - public static let folderName: Swift.String - final public let url: Foundation.URL - public var encrypted: Swift.Bool { - get - } - public var encryption: ZTCoreKit.ZTAES? { +extension Swift.Array where Element == Swift.UInt8 { + public var hex: Swift.String { get } - public var dictionary: Foundation.NSMutableDictionary? { +} +extension Swift.Dictionary { + public func merge(dict: [Key : Value]) -> [Key : Value] +} +extension Foundation.Date { + public var timestamp: Swift.Int64 { get } - public var cache: Foundation.NSMutableDictionary? { + public var apiFormat: Swift.String { get - set } - public var volume: Swift.Int64 { + public var logFormat: Swift.String { get } - public var size: Swift.String { +} +extension Swift.Array where Element : CoreBluetooth.CBPeripheral { + public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool +} +extension Swift.Array { + public func chunked(into size: Swift.Int = 1000) -> [[Element]] +} +extension Swift.Array where Element == Swift.String { + public func stringify() -> Swift.String +} +extension CoreBluetooth.CBCharacteristic { + public func notifyValue(_ isEnabled: Swift.Bool) + public func readValue() + @discardableResult + public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +} +public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var fileName: Swift.String { + public var byte1: Swift.UInt8? { get } - public var name: Swift.String { + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkConfig { + public var side: ZTCoreKit.ZTModuleSide { get } - @objc public func save() - public init(insideBundleUrl url: Foundation.URL) - public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName) - convenience public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName, encryption: ZTCoreKit.ZTAES) - public static func delete(_ plist: inout ZTCoreKit.ZTPlist?) - @objc deinit -} -public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { - public var id: Swift.UInt8 { + public var flag: Swift.UInt8 { get } - case generalState - case startNewActivity - case stopNewActivity - case resendData - case deepSleep - case reboot - case detailedBattery - case hardwareInformation - case firmwareInformation - case bootloaderVersion - case setInactivityTimeout - case setDFUInstall - case setDFUMode - case setChunkConfig - case setChunkMinutesInterval - case setChunkSecondsInterval - case selectAlgorithm - case freeMemory - case getTimestamp - case passthroughAlgo - case resetActivity - case getActivityMetadata - case disableHeating - case setHeating - case setTimer - case getTemperature - case getTimer - case startPostureCalibration - case setUserParameters - case resetCalibration - case getCalibrationState - case rawDataSend - case rawDataEnable - case rawDataLookup - case rawDataDebug - case calibrateStatic - case clearCalibrateStatic - case cancelCalibrateStatic - case getCalibrateStaticMessage - case getCalibrateStaticData - case testCalibrateStatic - case memsConfig - case updateTxPower - case updatePhy - case disconnect - case startDFURight - case startDFULeft - case enablePeerConnection - case factoryReset public var description: Swift.String { get } +} +@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + @objc deinit +} +public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { + case undefined + case userRequest + case memoryFull + case inactivity public init?(rawValue: Swift.UInt8) - public typealias AllCases = [ZTCoreKit.ZTCommand] - public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public static var allCases: [ZTCoreKit.ZTCommand] { - get - } public var rawValue: Swift.UInt8 { get } } -open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { - public init(formatString: Swift.String) - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTMultipartFormData { - open var contentType: Swift.String { +@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get - set } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTCommandResponse { - public var bytes: [Swift.UInt8] - public var rightModule: Swift.Bool { +public protocol ZTServiceProtocol : AnyObject { + static var uuid: Swift.String { get } + static var serviceType: ZTCoreKit.ZTService.Type { get } + static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +} +extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { + public static var serviceType: ZTCoreKit.ZTService.Type { get } - public var leftModule: Swift.Bool { +} +public protocol ZTMapContext { +} +final public class ZTMap { + final public let mappingType: ZTCoreKit.ZTMappingType + final public var JSON: [Swift.String : Any] { get } - public var command: ZTCoreKit.ZTCommand? { + final public var isKeyPresent: Swift.Bool { get } - public var status: ZTCoreKit.ZTCommandStatus? { + final public var currentValue: Any? { + get + } + final public var currentKey: Swift.String? { + get + } + final public var nestedKeyDelimiter: Swift.String { + get + } + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + final public let toObject: Swift.Bool + public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { get } + final public func value() -> T? @objc deinit } -public enum ZTCommandStatus : Swift.UInt8 { - case success - case busy - case invalidParam - case invalidState - case forbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerresponse - public var description: Swift.String { +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, default: T) throws -> T + final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +} +extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) + @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) + public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) + public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) + public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) +} +public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { + case staticType + case dynamic + case walking + case running + case cycling + case jump + case stairsUp + case stairsDown + case staticOther + case kneel + case tiptoe + case vibration + case trampling + case crawling + case dynamicOther + case slip + case trip + case active + case inactive + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } +} +public enum ZTTXPower : Swift.UInt8 { + case dBm0 + case dBm2 + case dBm3 + case dBm4 + case dBm5 + case dBm6 + case dBm7 + case dBm8 public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -@_hasMissingDesignatedInitializers public class ZTDefaults { - @objc deinit -} -@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { - final public let stringValue: Swift.String - public init(_ value: Swift.String) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func addEntry(with path: Swift.String, relativeTo baseURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, fileURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, type: ZTCoreKit.ZTEntry.EntryType, uncompressedSize: Swift.UInt32, modificationDate: Foundation.Date = Date(), permissions: Swift.UInt16? = nil, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data) throws - final public func remove(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, progress: Foundation.Progress? = nil) throws -} -@objc public class ZTDevice : ObjectiveC.NSObject { - public var id: Swift.String - public var peripheral: CoreBluetooth.CBPeripheral? { +@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { get } - public var serialNumber: Swift.String { + open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { get } - public var name: Swift.String? { + open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { get } - public var qrCode: Swift.String? { + open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { get } - public var rssi: Swift.Int { + open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { get } - public var macAddressRight: Swift.String? - public var macAddressLeft: Swift.String? - public var advertisementData: [Swift.String : Any]? - public var manufacturer: Swift.String? { + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +extension ZTCoreKit.ZTCore { + final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) + final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) + final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) +} +@_hasMissingDesignatedInitializers public class ZTDeviceInfo { + public var project: ZTCoreKit.ZTProjectCodeType? { get } - public var hardwareRevision: Swift.String? { + public var productCode: ZTCoreKit.ZTProductCodeType? { get } - public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { get } - public var modelNumber: Swift.String? { + public var productType: ZTCoreKit.ZTProductTypeCode? { get } - public var uuid: Swift.String { + public var hardwareVersion: Swift.Int8? { get } - public var isConnected: Swift.Bool { + public var boardVersion: Swift.Int8? { get } - public var isActivityRunning: Swift.Bool { + public var testeur: Swift.String? { get } - public var isDeviceReady: Swift.Bool { + public var sizeRaw: Swift.String? { get } - public var info: ZTCoreKit.ZTDeviceInfo? { + public var year: Swift.Int? { get - set } - public var batterylevel: ZTCoreKit.ZTBatteryLevel? { + public var week: Swift.Int? { get } - public var lastActivityDate: Foundation.Date { + public var SN: Swift.String? { get } - public var generalState: ZTCoreKit.ZTMessageGeneralState? { + public var serialNumber: Swift.String + public var deviceIdentifier: Swift.String + public var macAddressRight: Swift.String? { get - set } - public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { + public var macAddressLeft: Swift.String? { get - set } - public var lowSoftwareInfo: Swift.String { + public var code: Swift.String? { get } - public var activityInfo: ZTCoreKit.ZTMessageActivity? { + @objc deinit +} +extension ZTCoreKit.ZTDeviceInfo { + public var size: Swift.Int? { get - set } - public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { + public var gender: Swift.String? { get - set } - public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { +} +public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { + public var id: Swift.UInt8 { get - set } - public var actualState: ZTCoreKit.ZTDeviceActualState - public var previousState: ZTCoreKit.ZTDeviceActualState - public var hasInitialUpdate: Swift.Bool { + case generalState + case startNewActivity + case stopNewActivity + case resendData + case deepSleep + case reboot + case detailedBattery + case hardwareInformation + case firmwareInformation + case bootloaderVersion + case setInactivityTimeout + case setDFUInstall + case setDFUMode + case setChunkConfig + case setChunkMinutesInterval + case setChunkSecondsInterval + case selectAlgorithm + case freeMemory + case getTimestamp + case passthroughAlgo + case resetActivity + case getActivityMetadata + case disableHeating + case setHeating + case setTimer + case getTemperature + case getTimer + case startPostureCalibration + case setUserParameters + case resetCalibration + case getCalibrationState + case rawDataSend + case rawDataEnable + case rawDataLookup + case rawDataDebug + case calibrateStatic + case clearCalibrateStatic + case cancelCalibrateStatic + case getCalibrateStaticMessage + case getCalibrateStaticData + case testCalibrateStatic + case memsConfig + case updateTxPower + case updatePhy + case disconnect + case startDFURight + case startDFULeft + case enablePeerConnection + case factoryReset + public var description: Swift.String { get } - final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> - final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> - final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> - final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> - final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> - final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> - final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> - final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> - final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> - final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> - final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> - final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> - final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> - final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> - final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> - final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> - final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> - final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> - final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> - final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> - final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> - required public init(peripheral: CoreBluetooth.CBPeripheral) - public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) - public func connect() - public func disconnect() - @objc deinit - @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) - public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService - public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) - public func readGeneralState() -} -extension ZTCoreKit.ZTDevice { - public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool - public var isLowBattery: Swift.Bool? { - get - } -} -@_hasMissingDesignatedInitializers open class ZTServerTrustManager { - @objc deinit -} -public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case success - case busy - case invalidParam - case invalidState - case fwResForbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerResponse public init?(rawValue: Swift.UInt8) + public typealias AllCases = [ZTCoreKit.ZTCommand] + public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public static var allCases: [ZTCoreKit.ZTCommand] { get } -} -public enum DFUStreamZipError : Swift.Error { - case noManifest - case invalidManifest - case fileNotFound - case typeNotFound - public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { + public var rawValue: Swift.UInt8 { get } } -extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } +public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { + init(map: ZTCoreKit.ZTMap) throws } -@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { - get - } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() +extension ZTCoreKit.ZTImmutableMappable { + public func mapping(map: ZTCoreKit.ZTMap) + public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws +} +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType +} +extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { + final public func map(JSON: [Swift.String : Any]) throws -> N + final public func map(JSONString: Swift.String) throws -> N + final public func map(JSONObject: Any) throws -> N + final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] + final public func mapArray(JSONString: Swift.String) throws -> [N] + final public func mapArray(JSONObject: Any) throws -> [N] + final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] + final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] + final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] +} +@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTDeviceInfo { - public var project: ZTCoreKit.ZTProjectCodeType? { - get - } - public var productCode: ZTCoreKit.ZTProductCodeType? { - get - } - public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { - get - } - public var productType: ZTCoreKit.ZTProductTypeCode? { - get - } - public var hardwareVersion: Swift.Int8? { - get - } - public var boardVersion: Swift.Int8? { - get - } - public var testeur: Swift.String? { - get - } - public var sizeRaw: Swift.String? { - get - } - public var year: Swift.Int? { - get - } - public var week: Swift.Int? { +public enum ZTPeriod : Swift.String { + case day + case week + case month + case year + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public var SN: Swift.String? { +} +open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + final public let dateFormatter: Foundation.DateFormatter + public init(dateFormatter: Foundation.DateFormatter) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +final public class ZTSignal { + public typealias ZTSignalCallback = (T) -> Swift.Void + final public var fireCount: Swift.Int { get } - public var serialNumber: Swift.String - public var deviceIdentifier: Swift.String - public var macAddressRight: Swift.String? { + final public var retainLastData: Swift.Bool { get + set } - public var macAddressLeft: Swift.String? { + final public var lastDataFired: T? { get } - public var code: Swift.String? { + final public var observers: [Swift.AnyObject] { get } + public init(retainLastData: Swift.Bool = false) + @discardableResult + final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + final public func fire(_ data: T) + final public func cancelSubscription(for observer: Swift.AnyObject) + final public func cancelAllSubscriptions() + final public func clearLastData() @objc deinit } -extension ZTCoreKit.ZTDeviceInfo { - public var size: Swift.Int? { - get - } - public var gender: Swift.String? { - get - } +extension ZTCoreKit.ZTSignal where T == () { + final public func fire() } -public enum ZTProductType : Swift.String { - case sports - case warm - case safety - case podoSmart - case dfu - case ztDfu - case baliston - public var activityType: Swift.String { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { + public typealias ZTSignalCallback = (T) -> Swift.Void + public typealias ZTSignalFilter = (T) -> Swift.Bool + weak final public var observer: Swift.AnyObject? + final public var once: Swift.Bool + @discardableResult + final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription + final public func cancel() + @objc deinit +} +infix operator => : AssignmentPrecedence +public func => (signal: ZTCoreKit.ZTSignal, data: T) +public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case monitoring + case gaming + public var parameters: [Swift.UInt8] { get } -} -public enum ZTProjectCodeType : Swift.String { - case zt1 - case zt2 - case zt3 - case zt4 - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +@objc public class DFUServiceInitiator : ObjectiveC.NSObject { + @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? + @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? + @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? + @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate + @objc public var packetReceiptNotificationParameter: Swift.UInt16 + @objc public var forceDfu: Swift.Bool + @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool + @objc public var connectionTimeout: Swift.Double + @objc public var dataObjectPreparationDelay: Swift.Double + @objc public var alternativeAdvertisingNameEnabled: Swift.Bool + @objc public var alternativeAdvertisingName: Swift.String? + @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool + @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper + @objc public var disableResume: Swift.Bool + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) + @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator + @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") + @objc public func start() -> ZTCoreKit.DFUServiceController? + @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? + @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @objc deinit +} +public class ZTDateTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get + } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public enum ZTProductType : Swift.String { + case sports + case warm + case safety + case podoSmart + case dfu + case ztDfu + case baliston + public var activityType: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTProjectCodeType : Swift.String { + case zt1 + case zt2 + case zt3 + case zt4 + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } } @@ -1596,606 +1707,306 @@ public enum ZTUnitSizeCodeType : Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public enum Status : Swift.Int8, Swift.Codable { - case new - case sent - case sending - case error - public init?(rawValue: Swift.Int8) - public typealias RawValue = Swift.Int8 - public var rawValue: Swift.Int8 { - get - } - } - public enum TimestampType : Swift.UInt8, Swift.Codable { - case unknown - case start - case stop - case pause - case resume - case reboot - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +open class ZTURLTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.URL + public typealias JSON = Swift.String + public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) + open func transformFromJSON(_ value: Any?) -> Foundation.URL? + open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? + @objc deinit +} +@objc public class ZTDevice : ObjectiveC.NSObject { + public var id: Swift.String + public var peripheral: CoreBluetooth.CBPeripheral? { + get } - public enum BmTimestampType : Swift.UInt8, Swift.Codable { - case unknown - case shoeWearOn - case shoeWearOff - case walkingStart - case walkingStop - case runningStart - case runningStop - case cyclingStart - case cyclingStop - case transportStart - case transportStop - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + get } - public enum PacketType : Swift.UInt8, Swift.Codable { - case unknown - case quantification - case walkAnalysis - case runAnalysis - case stairs - case cycling - case jump - case safety - case staticActivity - case debug - case debugTelemetry - case debugProba - case bmTimestampPacket - case fwTimestampPacket - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var serialNumber: Swift.String { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Acknowledgment : Swift.CustomStringConvertible { - public var command: ZTCoreKit.ZTAlgoCommand? { - get - } - public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var name: Swift.String? { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Event : Swift.CustomStringConvertible { - public var timestamp: Swift.UInt32? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { - get - } - public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { - get - } - public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { - get - } - public var arguments: [Swift.UInt8]? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var qrCode: Swift.String? { + get } -} -public protocol ZTTransformType { - associatedtype Object - associatedtype JSON - func transformFromJSON(_ value: Any?) -> Self.Object? - func transformToJSON(_ value: Self.Object?) -> Self.JSON? -} -public enum ZTError : Swift.Equatable, Swift.Error { - case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) - case ble(type: ZTCoreKit.ZTError.Enums.BleError) - case network(type: ZTCoreKit.ZTError.Enums.NetworkError) - case store(type: ZTCoreKit.ZTError.Enums.StoreError) - case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) - case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) - case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) - case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) - @_hasMissingDesignatedInitializers public class Enums { - @objc deinit + public var rssi: Swift.Int { + get } - public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool - public var error: (any Swift.Error)? { + public var macAddressRight: Swift.String? + public var macAddressLeft: Swift.String? + public var advertisementData: [Swift.String : Any]? + public var manufacturer: Swift.String? { get } -} -extension ZTCoreKit.ZTError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var hardwareRevision: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ScanningError { - case cameraPermission - case wrongCode - case unknown - case notLinkedUser - public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + get } -} -extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var modelNumber: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum BleError { - case invalidState - case resetting - case poweredOff - case unsupported - case timeout - case unauthorized - case notConnected - case notConnectedLeft - case activityIsRunning - case busy - case dfu - case commandError - public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var uuid: Swift.String { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum FirmwareError { - case differentFirmware - case memsError - case leftNoConnected - case restartRequired - case recoverFromDfu - case minimumFwVersion - case updateRequired - case unsupported - case wrongProductType - case firstChunkIdIsGreater - case startTimeZero - public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isConnected: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DfuError { - case noLeftModule - case noUpdate - case wrongFile - case noStart - case aborted - case abortedRight - case abortedLeft - case unsupported - case lowBattery - case inProgress - case updateRequired - case wrongProductType - public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isActivityRunning: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum StoreError { - case missing(Swift.String) - case invalid(Swift.String, Any?) - case wrong(Swift.String) - case unknown - } -} -extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isDeviceReady: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ActivityError { - case notStarted - case notStartedLeft - case notStopped - case unknown - case modeNotSetActivityIsRunning - case previousNotStopped - case previousRestoring - case noUserParametersSet - case rawDataFlowIsRunning - case invalidMobilityScanResults - case outsideActivityDetected - case anomalyDetected - case mobility - public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var info: ZTCoreKit.ZTDeviceInfo? { get + set } -} -extension ZTCoreKit.ZTError.Enums { - public enum NetworkError { - case userLinkError - case inaccessible - case urlError(Foundation.URLError) - case generalError(any Swift.Error) - case noResponse - case invalidResponseType(Foundation.URLResponse) - case noResponseData(Foundation.HTTPURLResponse) - case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) - case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) - } -} -extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var batterylevel: ZTCoreKit.ZTBatteryLevel? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DecodableError { - case invalidKeyPath - case emptyKeyPath - case invalidJSON - public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var lastActivityDate: Foundation.Date { get } -} -public class ZTFirmwareRevision { - public var fwSystemVersion: Swift.String? { + public var generalState: ZTCoreKit.ZTMessageGeneralState? { get + set } - public var productType: ZTCoreKit.ZTProductCodeType? { + public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { get + set } - public var bmVersion: Swift.String? { + public var lowSoftwareInfo: Swift.String { get } - public var date: Foundation.Date? { + public var activityInfo: ZTCoreKit.ZTMessageActivity? { get + set } - public var code: Swift.String { + public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { get + set } - public var fwVersion: Swift.String { + public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { get + set } - public var versions: ZTCoreKit.ZTFwBmVersion? { + public var actualState: ZTCoreKit.ZTDeviceActualState + public var previousState: ZTCoreKit.ZTDeviceActualState + public var hasInitialUpdate: Swift.Bool { get } - public init(code: Swift.String) + final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> + final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> + final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> + final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> + final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> + final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> + final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> + final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> + final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> + final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> + final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> + final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> + final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> + final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> + final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> + final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> + final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> + final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> + final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> + final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> + final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> + required public init(peripheral: CoreBluetooth.CBPeripheral) + public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) + public func connect() + public func disconnect() @objc deinit + @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) + public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService + public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) + public func readGeneralState() } -extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool -} -public struct ZTFwBmVersion { - public var fwSystemMajorVersion: Swift.Int - public var fwSystemMinorVersion: Swift.Int - public var fwSystemBuildVersion: Swift.Int - public var bmMajorVersion: Swift.Int - public var bmMinorVersion: Swift.Int -} -extension ZTCoreKit.ZTFirmwareRevision { - public var fwSystemMajorVersion: Swift.Int { - get - } - public var fwSystemMinorVersion: Swift.Int { - get - } - public var fwSystemBuildVersion: Swift.Int { - get - } - public var bmMajorVersion: Swift.Int { - get - } - public var bmMinorVersion: Swift.Int { +extension ZTCoreKit.ZTDevice { + public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool + public var isLowBattery: Swift.Bool? { get } } -public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { - public enum Mode : Swift.UInt8 { - case manual - case automatic - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public var byte0: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } - public var byte1: Swift.UInt8? { - get - } - public var byte2: Swift.UInt8? { - get - } - public var byte3: Swift.UInt8? { - get - } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension ZTCoreKit.ZTMessageChunkData { +infix operator <<- : DefaultPrecedence +infix operator ->> : DefaultPrecedence +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) +public func ->> (left: T, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) +public func ->> (left: T?, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) public var side: ZTCoreKit.ZTModuleSide { get } - public var mode: ZTCoreKit.ZTMessageChunkData.Mode { - get - } - public var length: Swift.UInt8 { + public var baseMajor: Swift.UInt8 { get } - public var payload: Foundation.Data? { + public var baseMinor: Swift.UInt8 { get } - public var description: Swift.String { + public var baseBuild: Swift.UInt16 { get } -} -@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - public var stringValue: Swift.String? { + public var app: Swift.String { get } - @objc deinit -} -open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.NSDecimalNumber - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? - open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? - @objc deinit -} -public enum ZTLogLevel : Swift.String { - case all - case debug - case info - case error - case fatal - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var appMajor: Swift.UInt8 { get } -} -extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { - public var description: Swift.String { + public var appMinor: Swift.UInt8 { get } -} -public enum ZTLogCategory : Swift.String { - case networkAgent - case modules - case sdk - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var version: Swift.String { get } -} -extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case status - case acknowledgment - case realTimeEvent - case realTimeMetrics - case warning - case error - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } -} -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -@_hasMissingDesignatedInitializers public class ZTLogger { - public static let instance: ZTCoreKit.ZTLogger + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTLogger { - public func ztDebugPrint(_ message: Swift.String) - public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func print(_ value: @autoclosure () -> Any) +public protocol ZTActivityCachable : CoreData.NSManagedObject { + var id: Swift.String { get set } + var packets: Foundation.NSMutableOrderedSet? { get set } + var startDate: Foundation.Date? { get set } + #if compiler(>=5.3) && $AsyncAwait + func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif } -public struct ZTLoggerLine : Swift.Codable { - public static let notification: Foundation.Notification.Name - public static let ble: Foundation.Notification.Name - public var date: Foundation.Date - public let message: Swift.String - public let level: Swift.String - public let category: Swift.String - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws +extension ZTCoreKit.ZTActivityCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool } -@_hasMissingDesignatedInitializers open class ZTNetworkReachabilityManager { - open var isReachable: Swift.Bool { - get - } - open var isReachableOnCellular: Swift.Bool { - get - } - open var isReachableOnEthernetOrWiFi: Swift.Bool { - get - } - open var flags: SystemConfiguration.SCNetworkReachabilityFlags? { +@objc public enum LogLevel : Swift.Int { + case debug = 0 + case verbose = 1 + case info = 5 + case application = 10 + case warning = 15 + case error = 20 + public func name() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - @objc deinit } -public enum ZTNotifyData { - public enum GroupID : Swift.UInt8 { - case common - case warm - case running - case cycling - case safety - case generic - public var description: Swift.String { +@objc public protocol LoggerDelegate { + @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Metrics : Swift.CustomStringConvertible { + public var activityType: ZTCoreKit.ZTActivityType? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var metricId: Swift.UInt8? { get } - } - public enum CommonMessageId : Swift.UInt8 { - case MSG_GENERAL_STATES - case MSG_BATTERY_LEVEL - case MSG_MEMS - case MSG_FLASH - case MSG_TIME - case MSG_HARDWARE - case MSG_SOFTWARE - case MSG_ACTIVITY_INFO - case MSG_ACTIVITY_METADATA - case MSG_RAWDATA_HEADER - case MSG_RAWDATA_FRAME - case MSG_BTLOADER_INFO - case MSG_INACTIVITY_TIMEOUT - case MSG_CHUNK_SEND_STATUS - case MSG_CHUNK_DATA - case MSG_CHUNK_CONFIG - case MSG_DEBUG - public var description: Swift.String { + public var metric: ZTCoreKit.ZTRealtimeMetric? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var value: [Swift.UInt8]? { get } - } -} -extension ZTCoreKit.ZTNotifyData { - public enum WarmMessageId : Swift.UInt8 { - case MSG_HEATING_TEMP_1 - case MSG_HEATING_TEMP_2 - case MSG_HEATING_STEP_R_CNT - case MSG_HEATING_STEP_L_CNT - case MSG_HEATING_SETPOINT_R - case MSG_HEATING_SETPOINT_L - case MSG_GET_HEAT_TIMER - case MSG_HEATING_DEBUG_R - case MSG_HEATING_DEBUG_L - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -extension ZTCoreKit.ZTNotifyData { - public enum RunningMessageId : Swift.UInt8 { - case UNKNOWN +extension ZTCoreKit.ZTRealtimeMessage.Event { + public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case motion + case transition public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum CyclingMessageId : Swift.UInt8 { - case MSG_CADENCE + public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case stepForward + case stepBackward + case stepSideLeft + case stepSideRight + case stepUp + case stepDown public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum SafetyMessageId : Swift.UInt8 { - case MSG_CALIBRATION_SAFETY - case MSG_ALGO_RT_EVENT + public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case low + case medium + case high public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { @@ -2203,38 +2014,213 @@ extension ZTCoreKit.ZTNotifyData { } } } -extension ZTCoreKit.ZTNotifyData { - public enum GenericMessageId : Swift.UInt8 { - case MSG_ALGO_RT_EVENT - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public enum ZTMappingType { + case fromJSON + case toJSON + public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public func map(JSONObject: Any?, toObject object: N) -> N + final public func map(JSONString: Swift.String, toObject object: N) -> N + final public func map(JSON: [Swift.String : Any], toObject object: N) -> N + final public func map(JSONString: Swift.String) -> N? + final public func map(JSONObject: Any?) -> N? + final public func map(JSON: [Swift.String : Any]) -> N? + final public func mapArray(JSONString: Swift.String) -> [N]? + final public func mapArray(JSONObject: Any?) -> [N]? + final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] + final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? + final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? + public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? + public static func parseJSONString(JSONString: Swift.String) -> Any? + @objc deinit +} +extension ZTCoreKit.ZTMapper { + final public func map(JSONfile: Swift.String) -> N? + final public func mapArray(JSONfile: Swift.String) -> [N]? +} +extension ZTCoreKit.ZTMapper { + final public func toJSON(_ object: N) -> [Swift.String : Any] + final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] + final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] + final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] + final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? + final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? + public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? + public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? +} +extension ZTCoreKit.ZTMapper where N : Swift.Hashable { + final public func mapSet(JSONString: Swift.String) -> Swift.Set? + final public func mapSet(JSONObject: Any?) -> Swift.Set? + final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set + final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] + final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? +} +public enum ZTLoggerComponent : Swift.String { + case api + case app + case sdk + case firmware + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTLoggerSeverity : Swift.String { + case debug + case error + case info + case warn + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTDfuPackageType : Swift.String { + case APP + case BL + case SD + case SD_BL + case SD_BL_APP + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { + get + } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + @objc deinit +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Event : Swift.CustomStringConvertible { + public var timestamp: Swift.UInt32? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { + get + } + public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { + get + } + public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { + get + } + public var arguments: [Swift.UInt8]? { + get + } + public var description: Swift.String { + get } + public init(data: Foundation.Data) } } -public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { - case activityNone - case activityStarting - case eraseMemory - case activityRunning - case activityPaused - case activityStopping - case activityPendData - case activitySendData - case unknown +public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { + public enum Mode : Swift.UInt8 { + case manual + case automatic + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var byte0: Swift.UInt8? { + get + } + public var byte1: Swift.UInt8? { + get + } + public var byte2: Swift.UInt8? { + get + } + public var byte3: Swift.UInt8? { + get + } + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkData { + public var side: ZTCoreKit.ZTModuleSide { + get + } + public var mode: ZTCoreKit.ZTMessageChunkData.Mode { + get + } + public var length: Swift.UInt8 { + get + } + public var payload: Foundation.Data? { + get + } public var description: Swift.String { get } +} +public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case timestamp + case modeId + case precisionMode + case numberOfSteps public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } +public enum ZTLogLevel : Swift.String { + case all + case debug + case info + case error + case fatal + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +public enum ZTLogCategory : Swift.String { + case networkAgent + case modules + case sdk + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType where Key : Swift.Hashable, Key : Swift.RawRepresentable, Value : ZTCoreKit.ZTMappable, Key.RawValue == Swift.String { public init() public func transformFromJSON(_ value: Any?) -> [Key : Value]? @@ -2242,494 +2228,367 @@ public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType wher public typealias JSON = Any public typealias Object = [Key : Value] } -public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void -public enum ZTScannerResult { - case success(device: ZTCoreKit.ZTDevice) - case cancelled - case failed((any Swift.Error)?) -} -@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var side: ZTCoreKit.ZTModuleSide { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { + public var bootloaderVersion: Swift.UInt8 { get } - open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { + public var appSupportVersion: Swift.UInt8 { get } - open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { + public var softDeviceId: Swift.UInt8 { get } - open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { + public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { get } - open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { + public var description: Swift.String { get } - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + public enum DfuState : Swift.UInt8 { + case none + case inProgress + case received + case readyForCopy + case activation + case done + case error + case validationError + case activationError + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTServices { - public enum Primary { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - case test - public var uid: Swift.String { - get - } - public var uuid: CoreBluetooth.CBUUID { - get - } - public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +extension ZTCoreKit.ZTCore { + final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) + final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +} +public struct ZTMessageTime : Swift.CustomStringConvertible { + public var timestamp: Swift.Int64 + public var side: ZTCoreKit.ZTModuleSide + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { + get + } +} +public enum ZTNotifyData { + public enum GroupID : Swift.UInt8 { + case common + case warm + case running + case cycling + case safety + case generic + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum PrimaryOld { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public enum CommonMessageId : Swift.UInt8 { + case MSG_GENERAL_STATES + case MSG_BATTERY_LEVEL + case MSG_MEMS + case MSG_FLASH + case MSG_TIME + case MSG_HARDWARE + case MSG_SOFTWARE + case MSG_ACTIVITY_INFO + case MSG_ACTIVITY_METADATA + case MSG_RAWDATA_HEADER + case MSG_RAWDATA_FRAME + case MSG_BTLOADER_INFO + case MSG_INACTIVITY_TIMEOUT + case MSG_CHUNK_SEND_STATUS + case MSG_CHUNK_DATA + case MSG_CHUNK_CONFIG + case MSG_DEBUG + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceInformation { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case manufacturerName - case modelNumber - case serialNumber - case firmwareRevision - case hardwareRevision - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum WarmMessageId : Swift.UInt8 { + case MSG_HEATING_TEMP_1 + case MSG_HEATING_TEMP_2 + case MSG_HEATING_STEP_R_CNT + case MSG_HEATING_STEP_L_CNT + case MSG_HEATING_SETPOINT_R + case MSG_HEATING_SETPOINT_L + case MSG_GET_HEAT_TIMER + case MSG_HEATING_DEBUG_R + case MSG_HEATING_DEBUG_L + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceDFU { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case dfuControlPoint - case dfuPacket - case dfuButtonless - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum RunningMessageId : Swift.UInt8 { + case UNKNOWN + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } } -public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { - case staticType - case dynamic +extension ZTCoreKit.ZTNotifyData { + public enum CyclingMessageId : Swift.UInt8 { + case MSG_CADENCE + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum SafetyMessageId : Swift.UInt8 { + case MSG_CALIBRATION_SAFETY + case MSG_ALGO_RT_EVENT + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum GenericMessageId : Swift.UInt8 { + case MSG_ALGO_RT_EVENT + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { + case activityNone + case activityStarting + case eraseMemory + case activityRunning + case activityPaused + case activityStopping + case activityPendData + case activitySendData + case unknown + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined case walking case running - case cycling + case pedaling case jump case stairsUp case stairsDown - case staticOther - case kneel + case standing + case sitting + case kneeling case tiptoe case vibration - case trampling - case crawling - case dynamicOther case slip - case trip - case active - case inactive + case incident + case freewheel public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -open class ZTTransformOf : ZTCoreKit.ZTTransformType { - public typealias Object = ObjectType - public typealias JSON = JSONType - public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) - open func transformFromJSON(_ value: Any?) -> ObjectType? - open func transformToJSON(_ value: ObjectType?) -> JSONType? - @objc deinit +public protocol ZTDfuDelegate : AnyObject { + func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) + func dfuDelegate(didFinish: Swift.Bool) + func dfuDelegate(didFail error: ZTCoreKit.ZTError?) + func dfuDelegate(progress: Swift.Float?) + func dfuDelegate(leftDidFinish newVersion: Swift.String?) + func dfuDelegate(rightDidFinish newVersion: Swift.String?) } -@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { - @objc open var softdevice: Swift.UInt32 { +public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var isRight: Swift.Bool { get } - @objc open var bootloader: Swift.UInt32 { + public var isLeft: Swift.Bool { get } - @objc open var application: Swift.UInt32 { + public var selectedMode: ZTCoreKit.ZTActivityMode? { get } - @objc deinit -} -public enum ZTActivityMode : Swift.UInt8, Swift.Codable { - case safety - case walking - case running - case cycling - case mobility - public var name: Swift.String { + public var timeInterval: Swift.Int? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case defaultMode - case economicMode - case performanceMode - public var parameters: [Swift.UInt8] { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public class ZTUserShoe : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var code: Swift.String? + public var attributes: [Swift.String : Any]? + public var firmware: ZTCoreKit.ZTUserShoe.Firmware? + public var organizationId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + public class Firmware : ZTCoreKit.ZTMappable { + public var type: Swift.String? + public var arch: Swift.String? + public var version: Swift.String? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -} -@_hasMissingDesignatedInitializers open class Adapter { - @objc deinit -} -@_hasMissingDesignatedInitializers open class Retrier { @objc deinit } -@_hasMissingDesignatedInitializers open class Interceptor { - @objc deinit -} -extension ZTCoreKit.ZTCore { - final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) - final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) - final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) -} extension Foundation.Data { - public var hexString: Swift.String { - get - } -} -public protocol DataConvertible { - static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - public static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension Swift.UInt8 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt16 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt32 : ZTCoreKit.DataConvertible { -} -extension Swift.Int : ZTCoreKit.DataConvertible { -} -extension Swift.Float : ZTCoreKit.DataConvertible { -} -extension Swift.Double : ZTCoreKit.DataConvertible { -} -extension Swift.String : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data -} -extension Foundation.Data : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data -} -public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { - init(map: ZTCoreKit.ZTMap) throws -} -extension ZTCoreKit.ZTImmutableMappable { - public func mapping(map: ZTCoreKit.ZTMap) - public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws -} -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType -} -extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { - final public func map(JSON: [Swift.String : Any]) throws -> N - final public func map(JSONString: Swift.String) throws -> N - final public func map(JSONObject: Any) throws -> N - final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] - final public func mapArray(JSONString: Swift.String) throws -> [N] - final public func mapArray(JSONObject: Any) throws -> [N] - final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] - final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] - final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] -} -@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { + public func macAddress() -> Swift.String? + public var bytes: [Swift.UInt8] { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@objc public enum DFUUuidType : Swift.Int { - case legacyService = 0 - case legacyControlPoint = 1 - case legacyPacket = 2 - case legacyVersion = 3 - case secureService = 4 - case secureControl = 5 - case securePacket = 6 - case buttonlessService = 7 - case buttonlessCharacteristic = 8 - case buttonlessWithoutBondSharing = 9 - case buttonlessWithBondSharing = 10 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexDescription: Swift.String { get } + public init?(hex: Swift.String) + public func getUInt(offset: Swift.Int) -> Swift.UInt16 + public func getUInt32(offset: Swift.Int) -> Swift.UInt32 + public func getFloat(offset: Swift.Int) -> Swift.Float + public func getByte(at index: Swift.Int) -> Swift.Int8 + public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 + public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 + public mutating func append(byte data: Swift.Int8) + public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) + public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -@objc public class DFUUuid : ObjectiveC.NSObject { - @objc final public let uuid: CoreBluetooth.CBUUID - @objc final public let type: ZTCoreKit.DFUUuidType - @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) - @objc deinit +extension Foundation.Data { + public func dataObject(at index: Foundation.Data.Index = 0) -> T + public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int + public func object(at offset: Swift.Int) -> T } -@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { - @objc public var legacyDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { +extension Swift.Numeric { + public var data: Foundation.Data { get } - @objc override dynamic public init() - @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) - @objc deinit } -public class ZTUser : ZTCoreKit.ZTMappable { - public var attributes: [Swift.String : Any] - public var id: Swift.String? - public var organizationId: Swift.String? - public var appId: Swift.String? - public var createdAt: Swift.String? - public var updatedAt: Swift.String? - public var userId: Swift.String? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public class ZTAchievement : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var type: Swift.String? - public var activityId: Swift.String? - public var code: Swift.String? - public var appuserId: Swift.String? - public var data: [Swift.String : Any]? - public var duration: Swift.Int64? - public var calories: Swift.Double? - public var createdAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { - final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) - final public func updateFirmware(path: Swift.String) - @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) - @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) - @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) - @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) - final public func checkDfuState() -} -@_hasMissingDesignatedInitializers open class ZTWebSocket { - @objc deinit -} -open class ZTActivity : Swift.Codable { - public var id: Swift.String { +public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { + case jump + case run + case walk + public var parameters: [Swift.UInt8] { get - set } - public var activityIdentifier: Swift.String - public var appId: Swift.String? - public var activityType: Swift.String - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var startTimestamp: Swift.Int64? - public var endTimestamp: Swift.Int64? - public var tz: Swift.String? - public var status: Swift.String? - public var state: ZTCoreKit.ZTDeviceActualState { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } - public var packetsIds: [Swift.UInt16] - public var cachedPackets: [ZTCoreKit.ZTSegmentData] - public var metaData: ZTCoreKit.ZTMessageActivityMetadata? - public var stopReason: ZTCoreKit.ZTActivityLastStopReason? - public var isRawDataMode: Swift.Bool - public var isAutomatic: Swift.Bool - public var forceStop: Swift.Bool - public var isInterrupted: Swift.Bool - public var firstChunkId: Swift.UInt16? - public var lastChunkId: Swift.UInt16? - public var chunkCount: Swift.UInt16? - public var anchorTimestamp: Swift.Int64? - public var customActivityStartTimestamp: Swift.Int64? - public var customActivityFirstChunkId: Swift.UInt16? - public var fwVersion: Swift.String? - public var shoesSerial: Swift.String? - public init() - open func save() - public func loadAll(firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public func lastSavedChunkId(startId: Swift.UInt16? = 0, lastId: Swift.UInt16? = 0) -> Swift.UInt16 - public func addToCache(_ segment: ZTCoreKit.ZTSegmentData) - public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) - public func saveCachedPackets() - @objc deinit - open func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTActivity { - public var duration: Swift.Double { +public enum ZTEnvironment { + case dev + case staging + case production + case zcdev + case zcstaging + case zcproduction + public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -public protocol ZTDfuDelegate : AnyObject { - func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) - func dfuDelegate(didFinish: Swift.Bool) - func dfuDelegate(didFail error: ZTCoreKit.ZTError?) - func dfuDelegate(progress: Swift.Float?) - func dfuDelegate(leftDidFinish newVersion: Swift.String?) - func dfuDelegate(rightDidFinish newVersion: Swift.String?) -} -@objc public class DFUServiceInitiator : ObjectiveC.NSObject { - @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? - @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? - @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? - @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate - @objc public var packetReceiptNotificationParameter: Swift.UInt16 - @objc public var forceDfu: Swift.Bool - @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool - @objc public var connectionTimeout: Swift.Double - @objc public var dataObjectPreparationDelay: Swift.Double - @objc public var alternativeAdvertisingNameEnabled: Swift.Bool - @objc public var alternativeAdvertisingName: Swift.String? - @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool - @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper - @objc public var disableResume: Swift.Bool - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) - @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator - @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") - @objc public func start() -> ZTCoreKit.DFUServiceController? - @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? - @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @objc deinit -} -public protocol ZTPlistStorage { - static var plist: ZTCoreKit.ZTPlist { get } -} -public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var right: Swift.UInt8 - public var left: Swift.UInt8 - public var min: Swift.UInt8 { - get - } - public var description: Swift.String { +public enum ZTModuleSide : Swift.String, Swift.Codable { + case left + case right + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public init() - public init(data: Foundation.Data) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } +public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable +public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable @objc public enum DFUError : Swift.Int { case remoteLegacyDFUSuccess = 1 case remoteLegacyDFUInvalidState = 2 @@ -2818,369 +2677,186 @@ extension ZTCoreKit.DFUState : Swift.CustomStringConvertible { @objc func dfuStateDidChange(to state: ZTCoreKit.DFUState) @objc func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) } -public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var baseMajor: Swift.UInt8 { - get - } - public var baseMinor: Swift.UInt8 { - get - } - public var baseBuild: Swift.UInt16 { - get - } - public var app: Swift.String { - get - } - public var appMajor: Swift.UInt8 { - get - } - public var appMinor: Swift.UInt8 { - get - } - public var version: Swift.String { - get - } - public var description: Swift.String { - get - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTPlist { - public func encrypt(_ rawValue: Any?) -> Foundation.Data? - public func decrypt(_ data: Foundation.Data?) -> Foundation.Data? - public func decryptedDictionary(decryptedData rawValue: Any?) -> [Swift.String : Any]? - public func decryptedCollection(decryptedData rawValue: Any?) -> [Any]? - public func decryptedString(decryptedData rawValue: Any?) -> Swift.String? - public func decryptedBool(decryptedData rawValue: Any?) -> Swift.Bool? - public func decryptedInt(decryptedData rawValue: Any?) -> Swift.Int? - public func decryptedFloat(decryptedData rawValue: Any?) -> Swift.Float? - public func decryptedDouble(decryptedData rawValue: Any?) -> Swift.Double? - public func decryptedDate(decryptedData rawValue: Any?) -> Foundation.Date? -} -open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { - public typealias Object = UIKit.UIColor - public typealias JSON = Swift.String - public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? - open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? - @objc deinit -} -public class ZTActivityComment : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var timeZone: Swift.String? - public var timestamp: Foundation.Date? - public var text: Swift.String? - public var activityId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - public var mediaFiles: [ZTCoreKit.ZTMediaFile]? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTSegmentData : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var id: Swift.UInt16 - public var activityId: Swift.String? - public var activityType: ZTCoreKit.ZTActivityMode? - public var timestamp: Swift.Int64? - public var duration: Swift.Int? - public var status: ZTCoreKit.ZTSegmentData.Status - public var timestampType: ZTCoreKit.ZTSegmentData.TimestampType - public var bmTimestampType: ZTCoreKit.ZTSegmentData.BmTimestampType - public var packetType: ZTCoreKit.ZTSegmentData.PacketType - public var originalTimestamp: Swift.Int64 - public var packetsNumber: Swift.UInt8 - public var rawDescription: Swift.String { - get - } - public var fwVersion: Swift.String? - public var retryCount: Swift.Int - public enum CodingKeys : Swift.CodingKey { - case id - case activityId - case rawData - case timestamp - case duration - case status - case packetType - case timestampType - case originalTimestamp - case packetsNumber - case fwVersion - case retryCount - public static func == (a: ZTCoreKit.ZTSegmentData.CodingKeys, b: ZTCoreKit.ZTSegmentData.CodingKeys) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public init?(stringValue: Swift.String) - public init?(intValue: Swift.Int) - public var hashValue: Swift.Int { - get - } - public var intValue: Swift.Int? { - get - } - public var stringValue: Swift.String { +public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { + public enum Status : Swift.UInt8 { + case success + case errorOutOfRange + case errorSendFailed + case errorUnexpected + case errorNotFound + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } - public init(data: Foundation.Data) - public init(data: Foundation.Data, activityId: Swift.String, fwversion: Swift.String? = nil) - required public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws - @objc deinit -} -extension ZTCoreKit.ZTSegmentData { - public static func lastSegmentId(activityId: Swift.String) -> Swift.Int - public static func segmentsCount(activityId: Swift.String) -> Swift.Int - public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, startId: Swift.UInt16) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllPackets(activityId: Swift.String, startId: Swift.UInt16? = nil, lastId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.Int] - public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16] - public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.UInt16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTSegmentData? - public static func loadPacket(activityId: Swift.String?, id: Swift.UInt16) -> ZTCoreKit.ZTSegmentData? - public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> ZTCoreKit.ZTSegmentData? - public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTSegmentData - public static func loadAll(activityId: Swift.String, lastChunkId: Swift.UInt16?) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func clear(activityId: Swift.String?) - public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.UInt16? - public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMissedPackets(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16]? - public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.UInt16, lastId: Swift.UInt16?) -> Swift.UInt16? - public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.UInt16, anchorTime: Swift.Int64?) -} -extension ZTCoreKit.ZTSegmentData { - public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool - public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.UInt16?, endIndex: Swift.UInt16?) -> Swift.Bool - public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.UInt16) - public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.UInt16) -> Swift.Bool - public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> Swift.Bool - public static func isSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16?, endId: Swift.UInt16?) -> Swift.Bool - public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.UInt16) -> Swift.Bool -} -extension ZTCoreKit.ZTSegmentData : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTSegmentData, rhs: ZTCoreKit.ZTSegmentData) -> Swift.Bool -} -public enum ZTActivitySummaryStatus : Swift.String { - case started - case complete - case processing - case errored - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public let bytes: [Swift.UInt8] + public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? + public var chunkId: Swift.UInt16? + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } } -open class ZTActivitySummary : ZTCoreKit.ZTMappable { - public var id: Swift.String - public var activityType: Swift.String - public var activityIdentifier: Swift.String - public var start: Swift.String? - public var end: Swift.String? - public var duration: Swift.Int? - public var tz: Swift.String? - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var status: ZTCoreKit.ZTActivitySummaryStatus? - required public init?(map: ZTCoreKit.ZTMap) - open func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - final public let dateFormatter: Foundation.DateFormatter - public init(dateFormatter: Foundation.DateFormatter) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? +open class ZTTransformOf : ZTCoreKit.ZTTransformType { + public typealias Object = ObjectType + public typealias JSON = JSONType + public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) + open func transformFromJSON(_ value: Any?) -> ObjectType? + open func transformToJSON(_ value: ObjectType?) -> JSONType? @objc deinit } -@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { - final public var advertisingServices: [CoreBluetooth.CBUUID]? - final public var managerState: ZTCoreKit.ZTBleManagerState { +open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { + public typealias Object = T + public typealias JSON = T.RawValue + public init() + open func transformFromJSON(_ value: Any?) -> T? + open func transformToJSON(_ value: T?) -> T.RawValue? + @objc deinit +} +extension Foundation.UserDefaults { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { get set } - final public class var instance: ZTCoreKit.ZTBleManager { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { get + set } - final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { get + set } - final public var macAddress: Swift.String? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { get + set } - final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? - final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { get + set } - final public var product: ZTCoreKit.ZTProductType? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { get set } - final public var connectedDevice: ZTCoreKit.ZTDevice? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { get + set } - final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { get + set } - final public var scanning: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { get + set } - final public var isDfuMode: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { get + set } - final public let onBluetoothStateChange: ZTCoreKit.ZTSignal - final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onDeviceDiscovered: ZTCoreKit.ZTSignal - final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - @objc deinit + public subscript(key: Swift.String) -> Any? { + get + set(value) + } + public func value(forKey key: Swift.String) -> T? + public func clear(_ key: Swift.String) + public func clear(_ key: ZTCoreKit.ZTDefaultsKey) + public func clearAll() } -extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +extension Foundation.DateFormatter { + convenience public init(withFormat format: Swift.String, locale: Swift.String) } -public enum ZTAlgoCommand : Swift.UInt8 { - case getStatus - case startNewChunk - case changeProductMode - case setPrecisionMode - case setMinimumNumberOfStrides - case enableStreamingOfValues - case setDisconnectionDelay - case setUserInfo - case setDailyTimestamp - case getPositionOfPods - case enableSpecificPacket - case holdRealtimeStreaming - case getSingleTimeMetrics - case calibrateGravity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { + public init() + @objc deinit +} +public enum ZTDFUState : Swift.Int { + case started + case startedLeft + case completedLeft + case startedRight + case completedRight + case completed + case error + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } } -public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case monitoring - case gaming - public var parameters: [Swift.UInt8] { +public class ZTFirmwareRevision { + public var fwSystemVersion: Swift.String? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var productType: ZTCoreKit.ZTProductCodeType? { get } -} -public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var isRight: Swift.Bool { + public var bmVersion: Swift.String? { get } - public var isLeft: Swift.Bool { + public var date: Foundation.Date? { get } - public var selectedMode: ZTCoreKit.ZTActivityMode? { + public var code: Swift.String { get } - public var timeInterval: Swift.Int? { + public var fwVersion: Swift.String { get } - public var description: Swift.String { + public var versions: ZTCoreKit.ZTFwBmVersion? { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + public init(code: Swift.String) + @objc deinit } -public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { - case jump - case run - case walk - public var parameters: [Swift.UInt8] { +extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool +} +public struct ZTFwBmVersion { + public var fwSystemMajorVersion: Swift.Int + public var fwSystemMinorVersion: Swift.Int + public var fwSystemBuildVersion: Swift.Int + public var bmMajorVersion: Swift.Int + public var bmMinorVersion: Swift.Int +} +extension ZTCoreKit.ZTFirmwareRevision { + public var fwSystemMajorVersion: Swift.Int { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var fwSystemMinorVersion: Swift.Int { get } -} -public enum ZTDFUState : Swift.Int { - case started - case startedLeft - case completedLeft - case startedRight - case completedRight - case completed - case error - public var description: Swift.String { + public var fwSystemBuildVersion: Swift.Int { get } - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var bmMajorVersion: Swift.Int { + get + } + public var bmMinorVersion: Swift.Int { get } } -extension ZTCoreKit.ZTCore { - final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) - final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +@_hasMissingDesignatedInitializers public class ZTCoreDataStack { + public static let shared: ZTCoreKit.ZTCoreDataStack + public var context: CoreData.NSManagedObjectContext { + get + set + } + public func oneTimeBackgroundContext() -> CoreData.NSManagedObjectContext + public func saveOneTimeBackgroundContext(_ oneTimeBackgroundContext: CoreData.NSManagedObjectContext) throws + public func saveContext() throws + @objc deinit +} +public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { + var rawData: Foundation.Data? { get set } } -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable public class ZTMediaFile : ZTCoreKit.ZTMappable { public var id: Swift.String? public var name: Swift.String? @@ -3195,537 +2871,583 @@ public class ZTMediaFile : ZTCoreKit.ZTMappable { public func mapping(map: ZTCoreKit.ZTMap) @objc deinit } -public protocol ZTMapContext { -} -final public class ZTMap { - final public let mappingType: ZTCoreKit.ZTMappingType - final public var JSON: [Swift.String : Any] { +@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } - final public var isKeyPresent: Swift.Bool { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { + public typealias Object = T + public typealias JSON = Any + public init() + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? + open func transformToJSON(_ value: T?) -> Any? + @objc deinit +} +public protocol ZTTransformType { + associatedtype Object + associatedtype JSON + func transformFromJSON(_ value: Any?) -> Self.Object? + func transformToJSON(_ value: Self.Object?) -> Self.JSON? +} +open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.NSDecimalNumber + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? + open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? + @objc deinit +} +@objc public enum DFUUuidType : Swift.Int { + case legacyService = 0 + case legacyControlPoint = 1 + case legacyPacket = 2 + case legacyVersion = 3 + case secureService = 4 + case secureControl = 5 + case securePacket = 6 + case buttonlessService = 7 + case buttonlessCharacteristic = 8 + case buttonlessWithoutBondSharing = 9 + case buttonlessWithBondSharing = 10 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - final public var currentValue: Any? { +} +@objc public class DFUUuid : ObjectiveC.NSObject { + @objc final public let uuid: CoreBluetooth.CBUUID + @objc final public let type: ZTCoreKit.DFUUuidType + @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { + @objc public var legacyDFUService: CoreBluetooth.CBUUID { get } - final public var currentKey: Swift.String? { + @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { get } - final public var nestedKeyDelimiter: Swift.String { + @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { get } - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - final public let toObject: Swift.Bool - public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUPacket: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { get } - final public func value() -> T? + @objc override dynamic public init() + @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) @objc deinit } -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, default: T) throws -> T - final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +@_hasMissingDesignatedInitializers public class ZTLogger { + public static let instance: ZTCoreKit.ZTLogger + @objc deinit } -public struct ZTEntry : Swift.Equatable { - public enum EntryType : Swift.Int { - case file - case directory - case symlink - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } - } - public func path(using encoding: Swift.String.Encoding) -> Swift.String - public var path: Swift.String { - get - } - public var fileAttributes: [Foundation.FileAttributeKey : Any] { - get - } - public var checksum: ZTCoreKit.CRC32 { - get - } - public var type: ZTCoreKit.ZTEntry.EntryType { - get - } - public var compressedSize: Swift.Int { - get - } - public var uncompressedSize: Swift.Int { - get - } - public static func == (lhs: ZTCoreKit.ZTEntry, rhs: ZTCoreKit.ZTEntry) -> Swift.Bool +extension ZTCoreKit.ZTLogger { + public func ztDebugPrint(_ message: Swift.String) + public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) } -@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { - public var name: Swift.String - public var description: Swift.String? - public var mimeType: Swift.String? - public var key: Swift.String? - public var url: Swift.String? - public var data: Foundation.Data? - convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) - required convenience public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit +public struct ZTLoggerLine : Swift.Codable { + public static let notification: Foundation.Notification.Name + public static let ble: Foundation.Notification.Name + public var date: Foundation.Date + public let message: Swift.String + public let level: Swift.String + public let category: Swift.String + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@objc public protocol DFUPeripheralSelectorDelegate { + @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool + @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? } -@propertyWrapper public struct ZTPlisted { - public let key: Swift.String - public let plist: ZTCoreKit.ZTPlist - public let defaultValue: Value - public init(key: Swift.String, plist: ZTCoreKit.ZTPlist, defaultValue: Value) - public var wrappedValue: Value { +public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case success + case busy + case invalidParam + case invalidState + case fwResForbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerResponse + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } } -public struct ZTMapError : Swift.Error { - public var key: Swift.String? - public var currentValue: Any? - public var reason: Swift.String? - public var file: Swift.StaticString? - public var function: Swift.StaticString? - public var line: Swift.UInt? - public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) -} -extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { - public var description: Swift.String { +public enum ZTActivityMode : Swift.UInt8, Swift.Codable { + case safety + case walking + case running + case cycling + case mobility + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -public enum ZTPeriod : Swift.String { - case day - case week - case month - case year +public enum ZTActivitySummaryStatus : Swift.String { + case started + case complete + case processing + case errored public init?(rawValue: Swift.String) public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public func save() - public func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool - public static func forceSegmentsUpload(activityId: Swift.String) - public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTSegmentData) -} -extension Foundation.FileManager { - public func zipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, shouldKeepParent: Swift.Bool = true, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, progress: Foundation.Progress? = nil) throws - public func unzipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, preferredEncoding: Swift.String.Encoding? = nil) throws +open class ZTActivitySummary : ZTCoreKit.ZTMappable { + public var id: Swift.String + public var activityType: Swift.String + public var activityIdentifier: Swift.String + public var start: Swift.String? + public var end: Swift.String? + public var duration: Swift.Int? + public var tz: Swift.String? + public var startDate: Foundation.Date? + public var endDate: Foundation.Date? + public var status: ZTCoreKit.ZTActivitySummaryStatus? + required public init?(map: ZTCoreKit.ZTMap) + open func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Foundation.URL { - public func isContained(in parentDirectoryURL: Foundation.URL) -> Swift.Bool +public protocol ZTCBPeripheralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBPeripheralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + var isAdvertising: Swift.Bool { get } + func startAdvertising(_ advertisementData: [Swift.String : Any]?) + func stopAdvertising() + func setDesiredConnectionLatency(_ latency: CoreBluetooth.CBPeripheralManagerConnectionLatency, for central: CoreBluetooth.CBCentral) + func add(_ service: CoreBluetooth.CBMutableService) + func remove(_ service: CoreBluetooth.CBMutableService) + func removeAllServices() + func respond(to request: CoreBluetooth.CBATTRequest, withResult result: CoreBluetooth.CBATTError.Code) + func updateValue(_ value: Foundation.Data, for characteristic: CoreBluetooth.CBMutableCharacteristic, onSubscribedCentrals centrals: [CoreBluetooth.CBCentral]?) -> Swift.Bool +} +extension CoreBluetooth.CBPeripheralManager : ZTCoreKit.ZTCBPeripheralManagerProtocol { } -public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { - get - } - public var byte1: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var byte2: Swift.UInt8? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { + public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason + public var chunkCount: Swift.Int16 + public var firstChunkId: Swift.Int16 + public var lastChunkId: Swift.Int16 { get } - public var byte3: Swift.UInt8? { + public var startTime: Swift.UInt32 + public var endTime: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } - public init(bytes: [Swift.UInt8]) public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageGeneralState { - public var activityStartedRight: Swift.Bool { +open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { + public typealias Object = UIKit.UIColor + public typealias JSON = Swift.String + public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? + open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? + @objc deinit +} +public class ZTReachability { + public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter + public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { get + set } - public var activityStartedLeft: Swift.Bool { - get + public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? + public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? + public var managerStarted: Swift.Bool + public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { + case all, wifi, cellular, wiredEthernet, loopback, other, none + public var description: Swift.String { + get + } + public func getInterfaceType() -> Network.NWInterface.InterfaceType + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public var hashValue: Swift.Int { + get + } + } + public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { + case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline + public var description: Swift.String { + get + } + public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool + } + public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) + public func startManager() + public func stopManager() + @objc deinit +} +public let ztActivityKey: Swift.String +@_inheritsConvenienceInitializers @objc(ZTActivity) open class ZTActivity : CoreData.NSManagedObject, ZTCoreKit.ZTActivityCachable { + @objc @NSManaged dynamic public var id: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityIdentifier: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var appId: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityType: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var tz: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var status: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packets: Foundation.NSMutableOrderedSet? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var metaDataRawValue: Foundation.Data? { + @objc get + @objc set } - public var pairIsConnected: Swift.Bool { + public var metaData: ZTCoreKit.ZTMessageActivityMetadata? { get } - public var memsHasError: Swift.Bool { - get + public func metaData(_ newValue: ZTCoreKit.ZTMessageActivityMetadata?) + @objc @NSManaged dynamic public var stopReasonRawValue: Foundation.Data? { + @objc get + @objc set } - public var firmwareDifferent: Swift.Bool { + public var stopReason: ZTCoreKit.ZTActivityLastStopReason? { get } - public var actualState: ZTCoreKit.ZTDeviceActualState { - get + public func stopReason(_ newValue: ZTCoreKit.ZTActivityLastStopReason?) + @objc @NSManaged dynamic public var isRawDataMode: Swift.Bool { + @objc get + @objc set } - public var previousState: ZTCoreKit.ZTDeviceActualState { - get + @objc @NSManaged dynamic public var isAutomatic: Swift.Bool { + @objc get + @objc set } - public var description: Swift.String { - get + @objc @NSManaged dynamic public var forceStop: Swift.Bool { + @objc get + @objc set } -} -@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { - @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool - @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? - @objc override dynamic public init() - @objc deinit -} -public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { - public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason - public var chunkCount: Swift.UInt16 - public var firstChunkId: Swift.UInt16 - public var lastChunkId: Swift.UInt16 { - get + @objc @NSManaged dynamic public var isInterrupted: Swift.Bool { + @objc get + @objc set } - public var startTime: Swift.UInt32 - public var endTime: Swift.UInt32 - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { - get + @objc @NSManaged dynamic public var firstChunkId: Swift.Int16 { + @objc get + @objc set } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { - public typealias Object = T - public typealias JSON = Any - public init() - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? - open func transformToJSON(_ value: T?) -> Any? - @objc deinit -} -open class ZTURLTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.URL - public typealias JSON = Swift.String - public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) - open func transformFromJSON(_ value: Any?) -> Foundation.URL? - open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? - @objc deinit -} -public enum ZTBleManagerState : Swift.CustomStringConvertible { - case off - case on - case idle - case scanning - case unauthorized - case resetting - case unknown - case unsupported - public var description: Swift.String { - get + @objc @NSManaged dynamic public var lastChunkId: Swift.Int16 { + @objc get + @objc set } - public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var chunkCount: Swift.Int16 { + @objc get + @objc set } -} -public class ZTUserShoe : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var code: Swift.String? - public var attributes: [Swift.String : Any]? - public var firmware: ZTCoreKit.ZTUserShoe.Firmware? - public var organizationId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - public class Firmware : ZTCoreKit.ZTMappable { - public var type: Swift.String? - public var arch: Swift.String? - public var version: Swift.String? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit + @objc @NSManaged dynamic public var anchorTimestamp: Swift.Int64 { + @objc get + @objc set } - @objc deinit -} -public enum ZTLoggerComponent : Swift.String { - case api - case app - case sdk - case firmware - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityStartTimestamp: Swift.Int64 { + @objc get + @objc set } -} -public enum ZTLoggerSeverity : Swift.String { - case debug - case error - case info - case warn - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityFirstChunkId: Swift.Int16 { + @objc get + @objc set } -} -public enum ZTMappingType { - case fromJSON - case toJSON - public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set } -} -final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public func map(JSONObject: Any?, toObject object: N) -> N - final public func map(JSONString: Swift.String, toObject object: N) -> N - final public func map(JSON: [Swift.String : Any], toObject object: N) -> N - final public func map(JSONString: Swift.String) -> N? - final public func map(JSONObject: Any?) -> N? - final public func map(JSON: [Swift.String : Any]) -> N? - final public func mapArray(JSONString: Swift.String) -> [N]? - final public func mapArray(JSONObject: Any?) -> [N]? - final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] - final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? - final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? - public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? - public static func parseJSONString(JSONString: Swift.String) -> Any? - @objc deinit -} -extension ZTCoreKit.ZTMapper { - final public func map(JSONfile: Swift.String) -> N? - final public func mapArray(JSONfile: Swift.String) -> [N]? -} -extension ZTCoreKit.ZTMapper { - final public func toJSON(_ object: N) -> [Swift.String : Any] - final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] - final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] - final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] - final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? - final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? - public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? - public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? -} -extension ZTCoreKit.ZTMapper where N : Swift.Hashable { - final public func mapSet(JSONString: Swift.String) -> Swift.Set? - final public func mapSet(JSONObject: Any?) -> Swift.Set? - final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set - final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] - final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? -} -public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { - public enum Status : Swift.UInt8 { - case success - case errorOutOfRange - case errorSendFailed - case errorUnexpected - case errorNotFound - case unknown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + @objc @NSManaged dynamic public var shoesSerial: Swift.String? { + @objc get + @objc set } - public let bytes: [Swift.UInt8] - public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? - public var chunkId: Swift.UInt16? - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { + public var duration: Swift.Double { get } + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + public func loadAll(firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + public func lastSavedChunkId(startId: Swift.Int16? = 0, lastId: Swift.Int16? = 0) -> Swift.Int16 + public func addToCache(_ segment: ZTCoreKit.ZTPacket) + public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) + public func saveCachedPackets() + #if compiler(>=5.3) && $AsyncAwait + open func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif + @objc deinit } -@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String +extension ZTCoreKit.ZTActivity { + @nonobjc public class func fetchRequest() -> CoreData.NSFetchRequest + public func getPacketIds() -> [Swift.Int16] + @discardableResult + public func setPackets(ids: [Swift.Int16]) -> [Swift.Int16] + @discardableResult + public func addPacket(id: Swift.Int16) -> [Swift.Int16] + public func getActulState() -> ZTCoreKit.ZTDeviceActualState + public func update(actualState: ZTCoreKit.ZTDeviceActualState) +} +@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String open var data: Foundation.Data? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { - case undefined - case userRequest - case memoryFull - case inactivity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } -} -extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) - @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) - public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) - public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) - public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) -} -extension Foundation.DateFormatter { - convenience public init(withFormat format: Swift.String, locale: Swift.String) +extension ZTCoreKit.ZTCore { + final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) + final public func updateFirmware(path: Swift.String) } -open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { - public init() - @objc deinit +extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { + @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) + final public func dfuFailed(error: ZTCoreKit.ZTError) + @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) + @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) + @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) + final public func checkDfuState() } -@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +@_inheritsConvenienceInitializers @objc(ZTPacket) open class ZTPacket : CoreData.NSManagedObject, ZTCoreKit.ZTNotifyDataMessage, ZTCoreKit.ZTPacketCachable { + @available(*, deprecated, message: "This property will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static let key: Swift.String + @objc @NSManaged dynamic public var id: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var createdAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var fulfilledAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var scheduledDeleted: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var sentAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var rawData: Foundation.Data? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activity: ZTCoreKit.ZTActivity? { + @objc get + @objc set + } + public var activityType: ZTCoreKit.ZTActivityMode? + @objc @NSManaged dynamic public var timestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var duration: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var statusRawValue: Swift.Int16 { + @objc get + @objc set + } + public var status: ZTCoreKit.ZTPacket.Status { get + set } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let object: T? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> T - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> T - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableArrayResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [T] - @available(*, deprecated, message: "This method will be deleted in a future version of the SDK.") - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> [T] - @objc deinit -} -open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { - public typealias Object = T - public typealias JSON = T.RawValue - public init() - open func transformFromJSON(_ value: Any?) -> T? - open func transformToJSON(_ value: T?) -> T.RawValue? - @objc deinit -} -public class ZTReachability { - public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter - public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { + public var timestampType: ZTCoreKit.ZTPacket.TimestampType { get set } - public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? - public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? - public var managerStarted: Swift.Bool - public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { - case all, wifi, cellular, wiredEthernet, loopback, other, none - public var description: Swift.String { - get - } - public func getInterfaceType() -> Network.NWInterface.InterfaceType + public var bmTimestampType: ZTCoreKit.ZTPacket.BmTimestampType { + get + set + } + public var packetType: ZTCoreKit.ZTPacket.PacketType { + get + set + } + @objc @NSManaged dynamic public var originalTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packetsNumber: Swift.Int16 { + @objc get + @objc set + } + public var rawDescription: Swift.String { + get + } + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var retryCount: Swift.Int16 { + @objc get + @objc set + } + public enum CodingKeys : Swift.CodingKey { + case id + case activityId + case rawData + case timestamp + case duration + case status + case packetType + case timestampType + case originalTimestamp + case packetsNumber + case fwVersion + case retryCount + public static func == (a: ZTCoreKit.ZTPacket.CodingKeys, b: ZTCoreKit.ZTPacket.CodingKeys) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) - public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) public var hashValue: Swift.Int { get } - } - public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { - case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline - public var description: Swift.String { + public var intValue: Swift.Int? { get } - public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool - } - public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) - public func startManager() - public func stopManager() - @objc deinit -} -open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.Double - public enum Unit : Foundation.TimeInterval { - case seconds - case milliseconds - public init?(rawValue: Foundation.TimeInterval) - public typealias RawValue = Foundation.TimeInterval - public var rawValue: Foundation.TimeInterval { + public var stringValue: Swift.String { get } } - public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + public init(data: Foundation.Data) + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + required public init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String? = nil, context: CoreData.NSManagedObjectContext, name: Swift.String) + required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + open func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool + public typealias Activity = ZTCoreKit.ZTActivity @objc deinit } -public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void -public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void -public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void -public typealias ZTCompletion = (() -> Swift.Void) -public protocol ZTBaseMappable { - mutating func mapping(map: ZTCoreKit.ZTMap) -} -public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { - init?(map: ZTCoreKit.ZTMap) -} -public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { - static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? -} -extension ZTCoreKit.ZTMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) -} -extension ZTCoreKit.ZTBaseMappable { - public func toJSON() -> [Swift.String : Any] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func lastSegmentId(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func segmentsCount(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, startId: Swift.Int16) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPackets(activityId: Swift.String, startId: Swift.Int16? = nil, lastId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.Int16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPacket(activityId: Swift.String?, id: Swift.Int16) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTPacket + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, lastChunkId: Swift.Int16?) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func clear(activityId: Swift.String?) + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedPackets(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16]? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.Int16, lastId: Swift.Int16?) -> Swift.Int16? +} +extension ZTCoreKit.ZTPacket { + public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool + public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.Int16?, endIndex: Swift.Int16?) -> Swift.Bool + public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.Int16) + public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.Int16) -> Swift.Bool + public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> Swift.Bool + public static func isSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16?, endId: Swift.Int16?) -> Swift.Bool + public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.Int16) -> Swift.Bool } @_hasMissingDesignatedInitializers final public class ZTApi { public static let shared: ZTCoreKit.ZTApi @@ -3747,12 +3469,12 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func getActivities(code: Swift.String?, offset: Swift.Int, limit: Swift.Int, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: (([T]?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getActivity(id: Swift.String, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func startActivity(id: Swift.String, code: Swift.String, startTime: Swift.Int64 = Date().timestamp, attributes: [Swift.String : Any]? = nil, completion: ((Swift.String?, (any Swift.Error)?) -> Swift.Void)?) - final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTSegmentData, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTSegmentData], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int16? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTPacket, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTPacket], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) final public func deleteActivity(id: Swift.String, completion: ZTCoreKit.ZTBaseResult? = nil) final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, data: [Swift.String]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable - final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable + final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> Swift.Void)) final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([[Swift.String : Any]]?, (any Swift.Error)?) -> Swift.Void)) @@ -3791,224 +3513,408 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func resendSavedRequests() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func extract(_ entry: ZTCoreKit.ZTEntry, to url: Foundation.URL, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil) throws -> ZTCoreKit.CRC32 - final public func extract(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 +public protocol ZTCBPeripheralProtocol { + var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } + var name: Swift.String? { get } + var rssi: Foundation.NSNumber? { get } + var state: CoreBluetooth.CBPeripheralState { get } + var services: [CoreBluetooth.CBService]? { get } + var identifier: Foundation.UUID { get } + func discoverServices(_: [CoreBluetooth.CBUUID]?) + func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) + func readValue(for: CoreBluetooth.CBCharacteristic) + func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) + func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) } -public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void -@_hasMissingDesignatedInitializers final public class ZTCore { - public static let version: Swift.String - final public var zcVersion: Swift.String - public static let shared: ZTCoreKit.ZTCore - final public let bleManager: ZTCoreKit.ZTBleManager - final public var settings: ZTCoreKit.ZTSettings { +extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { +} +public protocol ZTBaseMappable { + mutating func mapping(map: ZTCoreKit.ZTMap) +} +public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { + init?(map: ZTCoreKit.ZTMap) +} +public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { + static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? +} +extension ZTCoreKit.ZTMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) +} +extension ZTCoreKit.ZTBaseMappable { + public func toJSON() -> [Swift.String : Any] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +public struct ZTRealtimeMessage : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } + public enum Side : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + get + } + public var content: [Swift.UInt8] { + get + } + public init(bytes: [Swift.UInt8]) + public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + get + } + public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + get + } + public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + get + } + public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + get + } +} +@_hasMissingDesignatedInitializers public class ZTDefaults { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { + final public let stringValue: Swift.String + public init(_ value: Swift.String) + @objc deinit +} +@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + public var stringValue: Swift.String? { + get + } + @objc deinit +} +public class ZTActivityComment : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var timeZone: Swift.String? + public var timestamp: Foundation.Date? + public var text: Swift.String? + public var activityId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + public var mediaFiles: [ZTCoreKit.ZTMediaFile]? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +public enum ZTAlgoCommand : Swift.UInt8 { + case getStatus + case startNewChunk + case changeProductMode + case setPrecisionMode + case setMinimumNumberOfStrides + case enableStreamingOfValues + case setDisconnectionDelay + case setUserInfo + case setDailyTimestamp + case getPositionOfPods + case enableSpecificPacket + case holdRealtimeStreaming + case getSingleTimeMetrics + case calibrateGravity + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var appUserId: Swift.String? { +} +public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case status + case acknowledgment + case realTimeEvent + case realTimeMetrics + case warning + case error + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var lastCommand: ZTCoreKit.ZTCommand? - final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] - final public var lastActivityId: Swift.String? { - get +} +public enum ZTError : Swift.Equatable, Swift.Error { + case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) + case ble(type: ZTCoreKit.ZTError.Enums.BleError) + case network(type: ZTCoreKit.ZTError.Enums.NetworkError) + case store(type: ZTCoreKit.ZTError.Enums.StoreError) + case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) + case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) + case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) + case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) + @_hasMissingDesignatedInitializers public class Enums { + @objc deinit } - final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { + public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool + public var error: (any Swift.Error)? { get } - final public var connectedDevice: ZTCoreKit.ZTDevice? { +} +extension ZTCoreKit.ZTError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastDeviceSerialNumber: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum ScanningError { + case cameraPermission + case wrongCode + case unknown + case notLinkedUser + public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var lastDeviceQRCode: Swift.String? { +} +extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastQRCode: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum BleError { + case invalidState + case resetting + case poweredOff + case unsupported + case timeout + case unauthorized + case notConnected + case notConnectedLeft + case activityIsRunning + case busy + case dfu + case commandError + public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var isDfuInProgress: Swift.Bool { +} +extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? - final public var firmwareDfuState: ZTCoreKit.DFUState? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum FirmwareError { + case differentFirmware + case memsError + case leftNoConnected + case restartRequired + case recoverFromDfu + case minimumFwVersion + case updateRequired + case unsupported + case wrongProductType + case firstChunkIdIsGreater + case startTimeZero + public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { +} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> - final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> - final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuCopied: ZTCoreKit.ZTSignal<()> - final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) - final public func clearUser() - final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) - @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func stopScan() - final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) - #if compiler(>=5.3) && $AsyncAwait - final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice - #endif - @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") - final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) - final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) - final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func setDeepSleepMode() throws - @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Metrics : Swift.CustomStringConvertible { - public var activityType: ZTCoreKit.ZTActivityType? { - get - } - public var metricId: Swift.UInt8? { - get - } - public var metric: ZTCoreKit.ZTRealtimeMetric? { - get - } - public var value: [Swift.UInt8]? { +extension ZTCoreKit.ZTError.Enums { + public enum DfuError { + case noLeftModule + case noUpdate + case wrongFile + case noStart + case aborted + case abortedRight + case abortedLeft + case unsupported + case lowBattery + case inProgress + case updateRequired + case wrongProductType + public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public var description: Swift.String { + } +} +extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum StoreError { + case missing(Swift.String) + case invalid(Swift.String, Any?) + case wrong(Swift.String) + case unknown + } +} +extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum ActivityError { + case notStarted + case notStartedLeft + case notStopped + case unknown + case modeNotSetActivityIsRunning + case previousNotStopped + case previousRestoring + case noUserParametersSet + case rawDataFlowIsRunning + case invalidMobilityScanResults + case outsideActivityDetected + case anomalyDetected + case mobility + public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public init(data: Foundation.Data) } } -@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum NetworkError { + case userLinkError + case inaccessible + case urlError(Foundation.URLError) + case generalError(any Swift.Error) + case noResponse + case invalidResponseType(Foundation.URLResponse) + case noResponseData(Foundation.HTTPURLResponse) + case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) + case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) + } +} +extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTJSONParameterEncoder { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTURLEncodedFormParameterEncoder { - @objc deinit } -@_hasMissingDesignatedInitializers final public class ZTSettings { - public static let shared: ZTCoreKit.ZTSettings - final public var version: Swift.String? - final public var logLevel: ZTCoreKit.ZTLogLevel - final public var environment: ZTCoreKit.ZTEnvironment - final public var autoConnect: Swift.Bool - final public var enableEventLogging: Swift.Bool - final public var shouldObtaineMissedChunks: Swift.Bool - final public var enableRawDataCheck: Swift.Bool - final public var shouldAutoResendData: Swift.Bool - final public var activityDataSyncThreshold: Swift.Int - final public var enableBackgroundDFU: Swift.Bool - final public var enableBackgroundDataStreaming: Swift.Bool - final public var activityChunkStoreForFreeMemory: Swift.Int - final public var activityChunkRetryLimit: Swift.Int - final public var checkFirmwareUpdatePeriod: Swift.Int - final public var enableAnalyticsData: Swift.Bool - final public var autorestartBackgroundDfu: Swift.Bool - final public var getChunksOnApplicationDidBecomeActive: Swift.Bool - final public var enablePacketsDataLogging: Swift.Bool - final public var cachedPacketsBatchUploadSize: Swift.Int - final public var chunkDuration: Swift.Int? { +extension ZTCoreKit.ZTError.Enums { + public enum DecodableError { + case invalidKeyPath + case emptyKeyPath + case invalidJSON + public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } +} +extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public func clear() - @objc deinit } -@_hasMissingDesignatedInitializers open class ZTClosureEventMonitor { - open var sessionDidBecomeInvalidWithError: ((Foundation.URLSession, (any Swift.Error)?) -> Swift.Void)? - open var taskDidReceiveChallenge: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> Swift.Void)? - open var taskDidSendBodyData: ((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var taskNeedNewBodyStream: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var taskWillPerformHTTPRedirection: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> Swift.Void)? - open var taskDidFinishCollectingMetrics: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> Swift.Void)? - open var taskDidComplete: ((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> Swift.Void)? - open var taskIsWaitingForConnectivity: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var dataTaskDidReceiveData: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> Swift.Void)? - open var dataTaskWillCacheResponse: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> Swift.Void)? - open var downloadTaskDidFinishDownloadingToURL: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> Swift.Void)? - open var downloadTaskDidWriteData: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var downloadTaskDidResumeAtOffset: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> Swift.Void)? - @objc deinit -} -extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} -extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} -extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Equatable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareType : Swift.Hashable {} extension ZTCoreKit.DFUFirmwareType : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Equatable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} -extension ZTCoreKit.LogLevel : Swift.Equatable {} -extension ZTCoreKit.LogLevel : Swift.Hashable {} -extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.Status : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.RawRepresentable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityType : Swift.Equatable {} +extension ZTCoreKit.ZTActivityType : Swift.Hashable {} +extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} extension ZTCoreKit.ZTTXPower : Swift.Equatable {} extension ZTCoreKit.ZTTXPower : Swift.Hashable {} extension ZTCoreKit.ZTTXPower : Swift.RawRepresentable {} extension ZTCoreKit.ZTCommand : Swift.Equatable {} extension ZTCoreKit.ZTCommand : Swift.Hashable {} extension ZTCoreKit.ZTCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} -extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.Equatable {} +extension ZTCoreKit.ZTPeriod : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTProductType : Swift.Equatable {} extension ZTCoreKit.ZTProductType : Swift.Hashable {} extension ZTCoreKit.ZTProductType : Swift.RawRepresentable {} @@ -4033,42 +3939,44 @@ extension ZTCoreKit.ZTGenderSizeCodeType : Swift.RawRepresentable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Equatable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Hashable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.Equatable {} +extension ZTCoreKit.LogLevel : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMappingType : Swift.Equatable {} +extension ZTCoreKit.ZTMappingType : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Equatable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Hashable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogLevel : Swift.Equatable {} extension ZTCoreKit.ZTLogLevel : Swift.Hashable {} extension ZTCoreKit.ZTLogLevel : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogCategory : Swift.Equatable {} extension ZTCoreKit.ZTLogCategory : Swift.Hashable {} extension ZTCoreKit.ZTLogCategory : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Equatable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Hashable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.RawRepresentable {} @@ -4093,72 +4001,62 @@ extension ZTCoreKit.ZTNotifyData.GenericMessageId : Swift.RawRepresentable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Equatable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Hashable {} extension ZTCoreKit.ZTDeviceActualState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.Equatable {} -extension ZTCoreKit.ZTActivityType : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} -extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} -extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} -extension ZTCoreKit.DFUUuidType : Swift.Equatable {} -extension ZTCoreKit.DFUUuidType : Swift.Hashable {} -extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} +extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} +extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} +extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUError : Swift.Equatable {} extension ZTCoreKit.DFUError : Swift.Hashable {} extension ZTCoreKit.DFUError : Swift.RawRepresentable {} extension ZTCoreKit.DFUState : Swift.Equatable {} extension ZTCoreKit.DFUState : Swift.Hashable {} extension ZTCoreKit.DFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDFUState : Swift.Equatable {} +extension ZTCoreKit.ZTDFUState : Swift.Hashable {} +extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} +extension ZTCoreKit.DFUUuidType : Swift.Equatable {} +extension ZTCoreKit.DFUUuidType : Swift.Hashable {} +extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} +extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} +extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Equatable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Hashable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Equatable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Hashable {} extension ZTCoreKit.ZTAlgoCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} -extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDFUState : Swift.Equatable {} -extension ZTCoreKit.ZTDFUState : Swift.Hashable {} -extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Equatable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Hashable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTPeriod : Swift.Equatable {} -extension ZTCoreKit.ZTPeriod : Swift.Hashable {} -extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMappingType : Swift.Equatable {} -extension ZTCoreKit.ZTMappingType : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} -extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/ZTCoreKit b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/ZTCoreKit index 5e5bc19..b3ec9f7 100755 Binary files a/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/ZTCoreKit and b/Sources/ZTCoreKit.xcframework/ios-arm64/ZTCoreKit.framework/ZTCoreKit differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Database.momd/Database.mom b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Database.momd/Database.mom new file mode 100644 index 0000000..ce64693 Binary files /dev/null and b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Database.momd/Database.mom differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Database.momd/VersionInfo.plist b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Database.momd/VersionInfo.plist new file mode 100644 index 0000000..8d54ed8 Binary files /dev/null and b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Database.momd/VersionInfo.plist differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h index 485449f..b6f04de 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Headers/ZTCoreKit-Swift.h @@ -278,6 +278,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import CoreBluetooth; +@import CoreData; @import Dispatch; @import Foundation; @import ObjectiveC; @@ -1246,10 +1247,6 @@ typedef SWIFT_ENUM(NSInteger, DFUUuidType, open) { - - - - /// This converter converts Intel HEX file to BIN. /// The Intel HEX specification can be found here: /// link. @@ -1271,7 +1268,6 @@ SWIFT_CLASS("_TtC9ZTCoreKit21IntelHex2BinConverter") - /// This initiator can be used to start a DFU process using Legacy DFU service. /// The default DFUServiceInitiator will select the proper executor based /// on the discovered services. If you know your device supports the Legacy DFU you may @@ -1318,9 +1314,6 @@ SWIFT_PROTOCOL("_TtP9ZTCoreKit14LoggerDelegate_") - - - /// This initiator can be used to start a DFU process using Secure DFU service. /// The default DFUServiceInitiator will select the proper executor based /// on the discovered services. If you know your device supports the Secure DFU you may @@ -1334,6 +1327,74 @@ SWIFT_CLASS("_TtC9ZTCoreKit25SecureDFUServiceInitiator") +@class NSDate; +@class NSMutableOrderedSet; +@class NSEntityDescription; +@class NSManagedObjectContext; + +/// Activity. It represents activity running on modules. +SWIFT_CLASS_NAMED("ZTActivity") +@interface ZTActivity : NSManagedObject +/// Activity Id +@property (nonatomic, copy) NSString * _Nonnull id; +/// Activity identifier +@property (nonatomic, copy) NSString * _Nonnull activityIdentifier; +/// Application Id +@property (nonatomic, copy) NSString * _Nullable appId; +/// Activity type +@property (nonatomic, copy) NSString * _Nonnull activityType; +/// Start date +@property (nonatomic, copy) NSDate * _Nullable startDate; +/// End date +@property (nonatomic, copy) NSDate * _Nullable endDate; +/// Start timestamp in ms from firmware +@property (nonatomic) int64_t startTimestamp; +/// End timestamp in ms from firmware +@property (nonatomic) int64_t endTimestamp; +/// Timezone abbreviation +@property (nonatomic, copy) NSString * _Nullable tz; +/// Activity status +@property (nonatomic, copy) NSString * _Nullable status; +/// Temporary cached packets +@property (nonatomic, strong) NSMutableOrderedSet * _Nullable packets; +/// Information about the current activity +@property (nonatomic, copy) NSData * _Nullable metaDataRawValue; +/// Stop reason obtained from firmware +@property (nonatomic, copy) NSData * _Nullable stopReasonRawValue; +/// Is raw data enabled +/// Used for Universal firmware +@property (nonatomic) BOOL isRawDataMode; +/// Is automatic activity +/// Used for Safety +@property (nonatomic) BOOL isAutomatic; +/// Force stop for automatic activity +/// Used for Safety +@property (nonatomic) BOOL forceStop; +/// Activity was interrupted e.g. in case of mobility scan +@property (nonatomic) BOOL isInterrupted; +/// Id of first chunk +/// Used for Safety +@property (nonatomic) int16_t firstChunkId; +/// Id of last chunk +/// Used for Safety +@property (nonatomic) int16_t lastChunkId; +/// Number of chunks for activity stored in firmware +@property (nonatomic) int16_t chunkCount; +/// Anchor timestamp defined with firmware MSG_TIME +@property (nonatomic) int64_t anchorTimestamp; +/// Start timestamp for custom activity +@property (nonatomic) int64_t customActivityStartTimestamp; +/// Start chunk id for custom activity +@property (nonatomic) int16_t customActivityFirstChunkId; +/// Firmware version for activity +@property (nonatomic, copy) NSString * _Nullable fwVersion; +/// Shoes serial number +@property (nonatomic, copy) NSString * _Nullable shoesSerial; +/// Initializer +- (nonnull instancetype)initWithEntity:(NSEntityDescription * _Nonnull)entity insertIntoManagedObjectContext:(NSManagedObjectContext * _Nullable)context OBJC_DESIGNATED_INITIALIZER; +@end + + @@ -1424,52 +1485,40 @@ SWIFT_CLASS("_TtC9ZTCoreKit8ZTDevice") @end -/// Class which implements the various URLSessionDelegate methods to connect various Alamofire features. -SWIFT_CLASS("_TtC9ZTCoreKit17ZTSessionDelegate") -@interface ZTSessionDelegate : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Activity segment data +SWIFT_CLASS_NAMED("ZTPacket") +@interface ZTPacket : NSManagedObject +/// Packet identifier. +@property (nonatomic) int16_t id; +@property (nonatomic, copy) NSDate * _Nonnull createdAt; +@property (nonatomic, copy) NSDate * _Nonnull fulfilledAt; +@property (nonatomic, copy) NSDate * _Nullable scheduledDeleted; +@property (nonatomic, copy) NSDate * _Nonnull sentAt; +/// Raw data representing packet. +@property (nonatomic, copy) NSData * _Nullable rawData; +/// Activity to which packet belongs to. +@property (nonatomic, strong) ZTActivity * _Nullable activity; +/// Timestamp for packet. +@property (nonatomic) int64_t timestamp; +/// Packet’s duration/ +@property (nonatomic) int16_t duration; +/// As CoreData can’t handle UInt8, we use Int16 to store all positive possible values of an UInt8. +@property (nonatomic) int16_t statusRawValue; +/// Original timestamp from packet data in millisecondss. +@property (nonatomic) int64_t originalTimestamp; +/// Number of packets. +@property (nonatomic) int16_t packetsNumber; +/// Firmware version. +@property (nonatomic, copy) NSString * _Nullable fwVersion; +/// Number of tries to download packet +@property (nonatomic) int16_t retryCount; +- (nonnull instancetype)initWithEntity:(NSEntityDescription * _Nonnull)entity insertIntoManagedObjectContext:(NSManagedObjectContext * _Nullable)context OBJC_DESIGNATED_INITIALIZER; @end -@class NSURLSession; -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session didBecomeInvalidWithError:(NSError * _Nullable)error; -@end -@class NSURLSessionDataTask; -@class NSCachedURLResponse; -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session dataTask:(NSURLSessionDataTask * _Nonnull)dataTask didReceiveData:(NSData * _Nonnull)data; -- (void)URLSession:(NSURLSession * _Nonnull)session dataTask:(NSURLSessionDataTask * _Nonnull)dataTask willCacheResponse:(NSCachedURLResponse * _Nonnull)proposedResponse completionHandler:(void (^ _Nonnull)(NSCachedURLResponse * _Nullable))completionHandler; -@end -@class NSURLSessionDownloadTask; - -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didResumeAtOffset:(int64_t)fileOffset expectedTotalBytes:(int64_t)expectedTotalBytes; -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite; -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didFinishDownloadingToURL:(NSURL * _Nonnull)location; -@end - -@class NSURLSessionTask; -@class NSURLAuthenticationChallenge; -@class NSURLCredential; -@class NSInputStream; -@class NSHTTPURLResponse; -@class NSURLRequest; -@class NSURLSessionTaskMetrics; - -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didReceiveChallenge:(NSURLAuthenticationChallenge * _Nonnull)challenge completionHandler:(void (^ _Nonnull)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task needNewBodyStream:(void (^ _Nonnull)(NSInputStream * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task willPerformHTTPRedirection:(NSHTTPURLResponse * _Nonnull)response newRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nonnull)(NSURLRequest * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didFinishCollectingMetrics:(NSURLSessionTaskMetrics * _Nonnull)metrics; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didCompleteWithError:(NSError * _Nullable)error; -- (void)URLSession:(NSURLSession * _Nonnull)session taskIsWaitingForConnectivity:(NSURLSessionTask * _Nonnull)task SWIFT_AVAILABILITY(watchos,introduced=4.0) SWIFT_AVAILABILITY(tvos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=11.0) SWIFT_AVAILABILITY(macos,introduced=10.13); -@end #endif #if __has_attribute(external_source_symbol) @@ -1759,6 +1808,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import CoreBluetooth; +@import CoreData; @import Dispatch; @import Foundation; @import ObjectiveC; @@ -2727,10 +2777,6 @@ typedef SWIFT_ENUM(NSInteger, DFUUuidType, open) { - - - - /// This converter converts Intel HEX file to BIN. /// The Intel HEX specification can be found here: /// link. @@ -2752,7 +2798,6 @@ SWIFT_CLASS("_TtC9ZTCoreKit21IntelHex2BinConverter") - /// This initiator can be used to start a DFU process using Legacy DFU service. /// The default DFUServiceInitiator will select the proper executor based /// on the discovered services. If you know your device supports the Legacy DFU you may @@ -2799,9 +2844,6 @@ SWIFT_PROTOCOL("_TtP9ZTCoreKit14LoggerDelegate_") - - - /// This initiator can be used to start a DFU process using Secure DFU service. /// The default DFUServiceInitiator will select the proper executor based /// on the discovered services. If you know your device supports the Secure DFU you may @@ -2815,6 +2857,74 @@ SWIFT_CLASS("_TtC9ZTCoreKit25SecureDFUServiceInitiator") +@class NSDate; +@class NSMutableOrderedSet; +@class NSEntityDescription; +@class NSManagedObjectContext; + +/// Activity. It represents activity running on modules. +SWIFT_CLASS_NAMED("ZTActivity") +@interface ZTActivity : NSManagedObject +/// Activity Id +@property (nonatomic, copy) NSString * _Nonnull id; +/// Activity identifier +@property (nonatomic, copy) NSString * _Nonnull activityIdentifier; +/// Application Id +@property (nonatomic, copy) NSString * _Nullable appId; +/// Activity type +@property (nonatomic, copy) NSString * _Nonnull activityType; +/// Start date +@property (nonatomic, copy) NSDate * _Nullable startDate; +/// End date +@property (nonatomic, copy) NSDate * _Nullable endDate; +/// Start timestamp in ms from firmware +@property (nonatomic) int64_t startTimestamp; +/// End timestamp in ms from firmware +@property (nonatomic) int64_t endTimestamp; +/// Timezone abbreviation +@property (nonatomic, copy) NSString * _Nullable tz; +/// Activity status +@property (nonatomic, copy) NSString * _Nullable status; +/// Temporary cached packets +@property (nonatomic, strong) NSMutableOrderedSet * _Nullable packets; +/// Information about the current activity +@property (nonatomic, copy) NSData * _Nullable metaDataRawValue; +/// Stop reason obtained from firmware +@property (nonatomic, copy) NSData * _Nullable stopReasonRawValue; +/// Is raw data enabled +/// Used for Universal firmware +@property (nonatomic) BOOL isRawDataMode; +/// Is automatic activity +/// Used for Safety +@property (nonatomic) BOOL isAutomatic; +/// Force stop for automatic activity +/// Used for Safety +@property (nonatomic) BOOL forceStop; +/// Activity was interrupted e.g. in case of mobility scan +@property (nonatomic) BOOL isInterrupted; +/// Id of first chunk +/// Used for Safety +@property (nonatomic) int16_t firstChunkId; +/// Id of last chunk +/// Used for Safety +@property (nonatomic) int16_t lastChunkId; +/// Number of chunks for activity stored in firmware +@property (nonatomic) int16_t chunkCount; +/// Anchor timestamp defined with firmware MSG_TIME +@property (nonatomic) int64_t anchorTimestamp; +/// Start timestamp for custom activity +@property (nonatomic) int64_t customActivityStartTimestamp; +/// Start chunk id for custom activity +@property (nonatomic) int16_t customActivityFirstChunkId; +/// Firmware version for activity +@property (nonatomic, copy) NSString * _Nullable fwVersion; +/// Shoes serial number +@property (nonatomic, copy) NSString * _Nullable shoesSerial; +/// Initializer +- (nonnull instancetype)initWithEntity:(NSEntityDescription * _Nonnull)entity insertIntoManagedObjectContext:(NSManagedObjectContext * _Nullable)context OBJC_DESIGNATED_INITIALIZER; +@end + + @@ -2905,52 +3015,40 @@ SWIFT_CLASS("_TtC9ZTCoreKit8ZTDevice") @end -/// Class which implements the various URLSessionDelegate methods to connect various Alamofire features. -SWIFT_CLASS("_TtC9ZTCoreKit17ZTSessionDelegate") -@interface ZTSessionDelegate : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Activity segment data +SWIFT_CLASS_NAMED("ZTPacket") +@interface ZTPacket : NSManagedObject +/// Packet identifier. +@property (nonatomic) int16_t id; +@property (nonatomic, copy) NSDate * _Nonnull createdAt; +@property (nonatomic, copy) NSDate * _Nonnull fulfilledAt; +@property (nonatomic, copy) NSDate * _Nullable scheduledDeleted; +@property (nonatomic, copy) NSDate * _Nonnull sentAt; +/// Raw data representing packet. +@property (nonatomic, copy) NSData * _Nullable rawData; +/// Activity to which packet belongs to. +@property (nonatomic, strong) ZTActivity * _Nullable activity; +/// Timestamp for packet. +@property (nonatomic) int64_t timestamp; +/// Packet’s duration/ +@property (nonatomic) int16_t duration; +/// As CoreData can’t handle UInt8, we use Int16 to store all positive possible values of an UInt8. +@property (nonatomic) int16_t statusRawValue; +/// Original timestamp from packet data in millisecondss. +@property (nonatomic) int64_t originalTimestamp; +/// Number of packets. +@property (nonatomic) int16_t packetsNumber; +/// Firmware version. +@property (nonatomic, copy) NSString * _Nullable fwVersion; +/// Number of tries to download packet +@property (nonatomic) int16_t retryCount; +- (nonnull instancetype)initWithEntity:(NSEntityDescription * _Nonnull)entity insertIntoManagedObjectContext:(NSManagedObjectContext * _Nullable)context OBJC_DESIGNATED_INITIALIZER; @end -@class NSURLSession; -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session didBecomeInvalidWithError:(NSError * _Nullable)error; -@end -@class NSURLSessionDataTask; -@class NSCachedURLResponse; -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session dataTask:(NSURLSessionDataTask * _Nonnull)dataTask didReceiveData:(NSData * _Nonnull)data; -- (void)URLSession:(NSURLSession * _Nonnull)session dataTask:(NSURLSessionDataTask * _Nonnull)dataTask willCacheResponse:(NSCachedURLResponse * _Nonnull)proposedResponse completionHandler:(void (^ _Nonnull)(NSCachedURLResponse * _Nullable))completionHandler; -@end -@class NSURLSessionDownloadTask; - -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didResumeAtOffset:(int64_t)fileOffset expectedTotalBytes:(int64_t)expectedTotalBytes; -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite; -- (void)URLSession:(NSURLSession * _Nonnull)session downloadTask:(NSURLSessionDownloadTask * _Nonnull)downloadTask didFinishDownloadingToURL:(NSURL * _Nonnull)location; -@end - -@class NSURLSessionTask; -@class NSURLAuthenticationChallenge; -@class NSURLCredential; -@class NSInputStream; -@class NSHTTPURLResponse; -@class NSURLRequest; -@class NSURLSessionTaskMetrics; - -@interface ZTSessionDelegate (SWIFT_EXTENSION(ZTCoreKit)) -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didReceiveChallenge:(NSURLAuthenticationChallenge * _Nonnull)challenge completionHandler:(void (^ _Nonnull)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task needNewBodyStream:(void (^ _Nonnull)(NSInputStream * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task willPerformHTTPRedirection:(NSHTTPURLResponse * _Nonnull)response newRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nonnull)(NSURLRequest * _Nullable))completionHandler; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didFinishCollectingMetrics:(NSURLSessionTaskMetrics * _Nonnull)metrics; -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task didCompleteWithError:(NSError * _Nullable)error; -- (void)URLSession:(NSURLSession * _Nonnull)session taskIsWaitingForConnectivity:(NSURLSessionTask * _Nonnull)task SWIFT_AVAILABILITY(watchos,introduced=4.0) SWIFT_AVAILABILITY(tvos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=11.0) SWIFT_AVAILABILITY(macos,introduced=10.13); -@end #endif #if __has_attribute(external_source_symbol) diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Info.plist b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Info.plist index 11d8d12..4fe7826 100644 Binary files a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Info.plist and b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Info.plist differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json index f231381..d22dc7c 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -4,6 +4,26 @@ "name": "TopLevel", "printedName": "TopLevel", "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -16,207 +36,68 @@ }, { "kind": "TypeDecl", - "name": "ZTAlgoStatus", - "printedName": "ZTAlgoStatus", + "name": "ZTEnum", + "printedName": "ZTEnum", "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "modeId", - "printedName": "modeId", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "precisionMode", - "printedName": "precisionMode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "numberOfSteps", - "printedName": "numberOfSteps", + "name": "description", + "printedName": "description", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvp", + "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvg", + "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", + "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -225,73 +106,39 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", + "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", @@ -299,63 +146,9 @@ "printedName": "Decodable", "usr": "s:Se", "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "ObjectiveC", - "printedName": "ObjectiveC", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "Import", "name": "Foundation", @@ -366,61 +159,33 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreTelephony", - "printedName": "CoreTelephony", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTAES", - "printedName": "ZTAES", + "name": "ZTMediaFileTemplate", + "printedName": "ZTMediaFileTemplate", "children": [ { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV3key10Foundation4DataVvp", - "mangledName": "$s9ZTCoreKit5ZTAESV3key10Foundation4DataVvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -430,42 +195,91 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV3key10Foundation4DataVvg", - "mangledName": "$s9ZTCoreKit5ZTAESV3key10Foundation4DataVvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "iv", - "printedName": "iv", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV2iv10Foundation4DataVvp", - "mangledName": "$s9ZTCoreKit5ZTAESV2iv10Foundation4DataVvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -475,81 +289,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV2iv10Foundation4DataVvg", - "mangledName": "$s9ZTCoreKit5ZTAESV2iv10Foundation4DataVvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "algorithm", - "printedName": "algorithm", - "children": [ + }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9algorithms6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9algorithms6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9algorithms6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9algorithms6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "options", - "printedName": "options", + "name": "mimeType", + "printedName": "mimeType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV7optionss6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV7optionss6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -558,80 +399,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV7optionss6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV7optionss6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "encOption", - "printedName": "encOption", - "children": [ + }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9encOptions6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9encOptions6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9encOptions6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9encOptions6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "decOption", - "printedName": "decOption", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9decOptions6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9decOptions6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -640,39 +509,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9decOptions6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9decOptions6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "successStatus", - "printedName": "successStatus", + "name": "url", + "printedName": "url", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -681,99 +619,82 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "evaluate", - "printedName": "evaluate(_:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" }, { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV8evaluate_4withSbs5Int32V_s6UInt32VtF", - "mangledName": "$s9ZTCoreKit5ZTAESV8evaluate_4withSbs5Int32V_s6UInt32VtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:iv:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit5ZTAESV3key2ivACSgSS_SStcfc", - "mangledName": "$s9ZTCoreKit5ZTAESV3key2ivACSgSS_SStcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { - "kind": "Function", - "name": "encrypt", - "printedName": "encrypt(data:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", @@ -788,73 +709,109 @@ } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV7encrypt4data10Foundation4DataVSgAH_tF", - "mangledName": "$s9ZTCoreKit5ZTAESV7encrypt4data10Foundation4DataVSgAH_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decrypt", - "printedName": "decrypt(data:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV7decrypt4data10Foundation4DataVSgAI_tF", - "mangledName": "$s9ZTCoreKit5ZTAESV7decrypt4data10Foundation4DataVSgAI_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "crypt", - "printedName": "crypt(data:option:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:fileName:mimeType:description:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + }, { "kind": "TypeNominal", "name": "Optional", @@ -867,32 +824,123 @@ "usr": "s:10Foundation4DataV" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMediaFileTemplate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "Convenience", + "Required" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV5crypt4data6option10Foundation4DataVSgAJ_s6UInt32VtF", - "mangledName": "$s9ZTCoreKit5ZTAESV5crypt4data6option10Foundation4DataVSgAJ_s6UInt32VtF", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -901,13 +949,30 @@ "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit5ZTAESV", - "mangledName": "$s9ZTCoreKit5ZTAESV", + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" + }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } ] }, { @@ -921,37 +986,13 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTRetryPolicy", - "printedName": "ZTRetryPolicy", - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTRetryPolicyC", - "mangledName": "$s9ZTCoreKit13ZTRetryPolicyC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTConnectionLostRetryPolicy", - "printedName": "ZTConnectionLostRetryPolicy", - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTConnectionLostRetryPolicyC", - "mangledName": "$s9ZTCoreKit27ZTConnectionLostRetryPolicyC", + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit13ZTRetryPolicyC", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTRetryPolicy" + "ImplementationOnly" ] }, { @@ -964,43 +1005,41 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTCommandsCharacteristic", - "printedName": "ZTCommandsCharacteristic", + "name": "ZTBatteryLevel", + "printedName": "ZTBatteryLevel", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -1010,52 +1049,97 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "right", + "printedName": "right", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -1068,131 +1152,194 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "left", + "printedName": "left", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandsCharacteristic", - "printedName": "ZTCoreKit.ZTCommandsCharacteristic", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "kind": "Var", + "name": "min", + "printedName": "min", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPairedDevice", - "printedName": "ZTPairedDevice", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { "kind": "Var", - "name": "macAddress", - "printedName": "macAddress", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -1202,8 +1349,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -1223,13 +1370,63 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelVACycfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelVACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, { "kind": "Constructor", "name": "init", @@ -1237,9 +1434,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTPairedDevice", - "printedName": "ZTCoreKit.ZTPairedDevice", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" }, { "kind": "TypeNominal", @@ -1249,8 +1446,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -1274,8 +1471,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -1283,14 +1480,21 @@ } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" + }, { "kind": "Conformance", "name": "Decodable", @@ -1309,8 +1513,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -1318,315 +1522,11 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTDfuPackageType", - "printedName": "ZTDfuPackageType", - "children": [ - { - "kind": "Var", - "name": "APP", - "printedName": "APP", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "BL", - "printedName": "BL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD", - "printedName": "SD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD_BL", - "printedName": "SD_BL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD_BL_APP", - "printedName": "SD_BL_APP", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDfuPackageType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" }, { "kind": "Import", @@ -1638,17 +1538,10 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTPairedSolesCharacteristic", - "printedName": "ZTPairedSolesCharacteristic", + "name": "ZTDfuService", + "printedName": "ZTDfuService", "children": [ { "kind": "Var", @@ -1663,8 +1556,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", "static": true, "declAttributes": [ @@ -1690,8 +1583,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", "moduleName": "ZTCoreKit", "static": true, "implicit": true, @@ -1704,33 +1597,48 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -1741,359 +1649,190 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPairedSolesCharacteristic", - "printedName": "ZTCoreKit.ZTPairedSolesCharacteristic", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SecureDFUServiceInitiator", - "printedName": "SecureDFUServiceInitiator", - "children": [ - { - "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "startWithTargetWithIdentifier:", - "declAttributes": [ - "ObjC", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SecureDFUServiceInitiator", - "printedName": "ZTCoreKit.SecureDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", - "moduleName": "ZTCoreKit", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithCentralManager:target:", - "declAttributes": [ - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "SecureDFUServiceInitiator", - "printedName": "ZTCoreKit.SecureDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "ZTDfuService", + "printedName": "ZTCoreKit.ZTDfuService", + "usr": "s:9ZTCoreKit12ZTDfuServiceC" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "usr": "s:9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", "declAttributes": [ - "ObjC", - "Override" + "Required" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC", + "usr": "s:9ZTCoreKit12ZTDfuServiceC", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ZTCoreKit.DFUServiceInitiator", - "ObjectiveC.NSObject" + "ZTCoreKit.ZTService" ], "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" + }, { "kind": "Conformance", "name": "Equatable", "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ + "ImplementationOnly", "RawDocComment" ] }, @@ -2107,44 +1846,39 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTNotifyCharacteristic", - "printedName": "ZTNotifyCharacteristic", + "name": "ZTMessageGeneralState", + "printedName": "ZTMessageGeneralState", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "byte0", + "printedName": "byte0", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2153,56 +1887,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "byte1", + "printedName": "byte1", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2212,133 +1945,140 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "byte2", + "printedName": "byte2", "children": [ { "kind": "TypeNominal", - "name": "ZTNotifyCharacteristic", - "printedName": "ZTCoreKit.ZTNotifyCharacteristic", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "kind": "Var", + "name": "byte3", + "printedName": "byte3", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTMessageBootloaderInfo", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -2346,9 +2086,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" }, { "kind": "TypeNominal", @@ -2366,8 +2106,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -2375,26 +2115,74 @@ ], "init_kind": "Designated" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "activityStartedRight", + "printedName": "activityStartedRight", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2403,39 +2191,37 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "bootloaderVersion", - "printedName": "bootloaderVersion", + "name": "activityStartedLeft", + "printedName": "activityStartedLeft", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2444,39 +2230,37 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appSupportVersion", - "printedName": "appSupportVersion", + "name": "pairIsConnected", + "printedName": "pairIsConnected", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2485,39 +2269,37 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "softDeviceId", - "printedName": "softDeviceId", + "name": "memsHasError", + "printedName": "memsHasError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2526,47 +2308,115 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "dfuState", - "printedName": "dfuState", + "name": "firmwareDifferent", + "printedName": "firmwareDifferent", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualState", + "printedName": "actualState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "previousState", + "printedName": "previousState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } ], + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2575,23 +2425,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "usr": "s:Sq" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] @@ -2609,13 +2452,13 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2630,607 +2473,428 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "TypeDecl", - "name": "DfuState", - "printedName": "DfuState", + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCommandResponse", + "printedName": "ZTCommandResponse", + "children": [ + { + "kind": "Var", + "name": "bytes", + "printedName": "bytes", "children": [ { - "kind": "Var", - "name": "none", - "printedName": "none", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "inProgress", - "printedName": "inProgress", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "received", - "printedName": "received", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "readyForCopy", - "printedName": "readyForCopy", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rightModule", + "printedName": "rightModule", + "children": [ { - "kind": "Var", - "name": "activation", - "printedName": "activation", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "done", - "printedName": "done", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "leftModule", + "printedName": "leftModule", + "children": [ { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "validationError", - "printedName": "validationError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "command", + "printedName": "command", + "children": [ { - "kind": "Var", - "name": "activationError", - "printedName": "activationError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV", + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTCommandResponseC", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "hasMissingDesignatedInitializers": true }, { "kind": "TypeDecl", - "name": "ZTEnvironment", - "printedName": "ZTEnvironment", + "name": "ZTCommandStatus", + "printedName": "ZTCommandStatus", "children": [ { "kind": "Var", - "name": "dev", - "printedName": "dev", + "name": "success", + "printedName": "success", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3238,36 +2902,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO3devyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO3devyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "staging", - "printedName": "staging", + "name": "busy", + "printedName": "busy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3275,36 +2942,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "production", - "printedName": "production", + "name": "invalidParam", + "printedName": "invalidParam", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3312,36 +2982,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcdev", - "printedName": "zcdev", + "name": "invalidState", + "printedName": "invalidState", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3349,36 +3022,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcstaging", - "printedName": "zcstaging", + "name": "forbidden", + "printedName": "forbidden", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3386,36 +3062,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcproduction", - "printedName": "zcproduction", + "name": "notSupported", + "printedName": "notSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3423,162 +3102,79 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "unknownCommand", + "printedName": "unknownCommand", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTEnvironmentO", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declAttributes": [ + "RawDocComment" + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTModuleSide", - "printedName": "ZTModuleSide", - "children": [ { "kind": "Var", - "name": "left", - "printedName": "left", + "name": "commandInProgress", + "printedName": "commandInProgress", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTModuleSide.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3586,36 +3182,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTModuleSideO4leftyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO4leftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "right", - "printedName": "right", + "name": "noPeerresponse", + "printedName": "noPeerresponse", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTModuleSide.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3623,9 +3222,52 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTModuleSideO5rightyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO5rightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Constructor", @@ -3635,27 +3277,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTModuleSide?", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -3667,14 +3309,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvp", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -3685,14 +3327,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvg", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -3701,14 +3343,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTModuleSideO", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO", + "usr": "s:9ZTCoreKit15ZTCommandStatusO", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -3736,118 +3378,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Function", - "name": "decodeData", - "printedName": "decodeData(_:for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", - "mangledName": "$s9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encodeData", - "printedName": "encodeData(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", - "mangledName": "$s9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { @@ -3862,26 +3402,34 @@ }, { "kind": "TypeDecl", - "name": "ZTEnum", - "printedName": "ZTEnum", + "name": "ZTSettings", + "printedName": "ZTSettings", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvp", - "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvp", + "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvpZ", + "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvpZ", "moduleName": "ZTCoreKit", - "protocolReq": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -3890,45 +3438,33 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvg", - "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvg", + "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvgZ", + "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvgZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", - "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -3937,1062 +3473,715 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", - "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "defaultReadChunkSize", - "printedName": "defaultReadChunkSize", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20defaultReadChunkSizes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit20defaultReadChunkSizes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20defaultReadChunkSizes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit20defaultReadChunkSizes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultWriteChunkSize", - "printedName": "defaultWriteChunkSize", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultFilePermissions", - "printedName": "defaultFilePermissions", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22defaultFilePermissionss6UInt16Vvp", - "mangledName": "$s9ZTCoreKit22defaultFilePermissionss6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22defaultFilePermissionss6UInt16Vvg", - "mangledName": "$s9ZTCoreKit22defaultFilePermissionss6UInt16Vvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultDirectoryPermissions", - "printedName": "defaultDirectoryPermissions", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvp", - "mangledName": "$s9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvg", - "mangledName": "$s9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTArchive", - "printedName": "ZTArchive", - "children": [ - { - "kind": "TypeDecl", - "name": "ArchiveError", - "printedName": "ArchiveError", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "unreadableArchive", - "printedName": "unreadableArchive", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unreadableD0yA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unreadableD0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "unwritableArchive", - "printedName": "unwritableArchive", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] - } + "Final" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unwritableD0yA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unwritableD0yA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "accessorKind": "get" }, { - "kind": "Var", - "name": "invalidEntryPath", - "printedName": "invalidEntryPath", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO16invalidEntryPathyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO16invalidEntryPathyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidCompressionMethod", - "printedName": "invalidCompressionMethod", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO24invalidCompressionMethodyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO24invalidCompressionMethodyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logLevel", + "printedName": "logLevel", + "children": [ { - "kind": "Var", - "name": "invalidStartOfCentralDirectoryOffset", - "printedName": "invalidStartOfCentralDirectoryOffset", + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO36invalidStartOfCentralDirectoryOffsetyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO36invalidStartOfCentralDirectoryOffsetyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "missingEndOfCentralDirectoryRecord", - "printedName": "missingEndOfCentralDirectoryRecord", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO34missingEndOfCentralDirectoryRecordyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO34missingEndOfCentralDirectoryRecordyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidNumberOfEntriesOnDisk", - "printedName": "invalidNumberOfEntriesOnDisk", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO28invalidNumberOfEntriesOnDiskyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO28invalidNumberOfEntriesOnDiskyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "environment", + "printedName": "environment", + "children": [ { - "kind": "Var", - "name": "invalidNumberOfEntriesInCentralDirectory", - "printedName": "invalidNumberOfEntriesInCentralDirectory", + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO40invalidNumberOfEntriesInCentralDirectoryyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO40invalidNumberOfEntriesInCentralDirectoryyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "cancelledOperation", - "printedName": "cancelledOperation", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO18cancelledOperationyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO18cancelledOperationyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidBufferSize", - "printedName": "invalidBufferSize", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO17invalidBufferSizeyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO17invalidBufferSizeyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoConnect", + "printedName": "autoConnect", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO4hash4intoys6HasherVz_tF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableEventLogging", + "printedName": "enableEventLogging", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AccessMode", - "printedName": "AccessMode", - "children": [ - { - "kind": "Var", - "name": "create", - "printedName": "create", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO6createyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO6createyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "read", - "printedName": "read", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO4readyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO4readyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldObtaineMissedChunks", + "printedName": "shouldObtaineMissedChunks", + "children": [ { - "kind": "Var", - "name": "update", - "printedName": "update", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO6updateyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO6updateyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive.AccessMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueAESgSu_tcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueAESgSu_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableRawDataCheck", + "printedName": "enableRawDataCheck", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt", - "conformances": [ + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "shouldAutoResendData", + "printedName": "shouldAutoResendData", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvp", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -5002,46 +4191,94 @@ "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvg", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "accessMode", - "printedName": "accessMode", + "name": "activityDataSyncThreshold", + "printedName": "activityDataSyncThreshold", "children": [ { "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovp", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -5051,203 +4288,192 @@ "children": [ { "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovg", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(url:accessMode:preferredEncoding:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTArchive", - "printedName": "ZTCoreKit.ZTArchive", - "usr": "s:9ZTCoreKit9ZTArchiveC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableBackgroundDFU", + "printedName": "enableBackgroundDFU", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10accessMode17preferredEncodingACSg10Foundation3URLV_AC06AccessF0OSSAHE0H0VSgtcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10accessMode17preferredEncodingACSg10Foundation3URLV_AC06AccessF0OSSAHE0H0VSgtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:accessMode:preferredEncoding:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTArchive", - "printedName": "ZTCoreKit.ZTArchive", - "usr": "s:9ZTCoreKit9ZTArchiveC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "hasDefaultArg": true, - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10accessMode17preferredEncodingACSg10Foundation4DataV_AC06AccessF0OSSAHE0H0VSgtcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10accessMode17preferredEncodingACSg10Foundation4DataV_AC06AccessF0OSSAHE0H0VSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "makeIterator", - "printedName": "makeIterator()", - "children": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "AnyIterator", - "printedName": "Swift.AnyIterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Void", + "printedName": "()" } ], - "usr": "s:s11AnyIteratorV" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12makeIterators03AnyE0VyAA7ZTEntryVGyF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12makeIterators03AnyE0VyAA7ZTEntryVGyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Var", + "name": "enableBackgroundDataStreaming", + "printedName": "enableBackgroundDataStreaming", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScip", - "mangledName": "$s9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScip", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -5256,156 +4482,192 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScig", - "mangledName": "$s9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScig", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ "Final" ], - "accessorKind": "get" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "totalUnitCountForRemoving", - "printedName": "totalUnitCountForRemoving(_:)", + "kind": "Var", + "name": "activityChunkStoreForFreeMemory", + "printedName": "activityChunkStoreForFreeMemory", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC25totalUnitCountForRemovingys5Int64VAA7ZTEntryVF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC25totalUnitCountForRemovingys5Int64VAA7ZTEntryVF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "totalUnitCountForReading", - "printedName": "totalUnitCountForReading(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC24totalUnitCountForReadingys5Int64VAA7ZTEntryVF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC24totalUnitCountForReadingys5Int64VAA7ZTEntryVF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "totalUnitCountForAddingItem", - "printedName": "totalUnitCountForAddingItem(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC27totalUnitCountForAddingItem2ats5Int64V10Foundation3URLV_tF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC27totalUnitCountForAddingItem2ats5Int64V10Foundation3URLV_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "activityChunkRetryLimit", + "printedName": "activityChunkRetryLimit", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -5414,457 +4676,219 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ "Final" ], - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:relativeTo:compressionMethod:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" }, { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with10relativeTo17compressionMethod10bufferSize8progressySS_10Foundation3URLVAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with10relativeTo17compressionMethod10bufferSize8progressySS_10Foundation3URLVAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:fileURL:compressionMethod:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with7fileURL17compressionMethod10bufferSize8progressySS_10Foundation0H0VAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with7fileURL17compressionMethod10bufferSize8progressySS_10Foundation0H0VAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:type:uncompressedSize:modificationDate:permissions:compressionMethod:bufferSize:progress:provider:)", + "kind": "Var", + "name": "checkFirmwareUpdatePeriod", + "printedName": "checkFirmwareUpdatePeriod", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "hasDefaultArg": true, - "usr": "s:10Foundation4DateV" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", - "children": [ - { - "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "hasDefaultArg": true, - "usr": "s:Sq" + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with4type16uncompressedSize16modificationDate11permissions17compressionMethod06bufferI08progress8providerySS_AA7ZTEntryV0E4TypeOs6UInt32V10Foundation0K0Vs6UInt16VSgAA013ZTCompressionN0OASSo10NSProgressCSgAT4DataVSi_SitKXEtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with4type16uncompressedSize16modificationDate11permissions17compressionMethod06bufferI08progress8providerySS_AA7ZTEntryV0E4TypeOs6UInt32V10Foundation0K0Vs6UInt16VSgAA013ZTCompressionN0OASSo10NSProgressCSgAT4DataVSi_SitKXEtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "remove", - "printedName": "remove(_:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC6remove_10bufferSize8progressyAA7ZTEntryV_s6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC6remove_10bufferSize8progressyAA7ZTEntryV_s6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "extract", - "printedName": "extract(_:to:bufferSize:skipCRC32:progress:)", + "kind": "Var", + "name": "enableAnalyticsData", + "printedName": "enableAnalyticsData", "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", - "hasDefaultArg": true, "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", - "children": [ - { - "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC7extract_2to10bufferSize9skipCRC328progresss6UInt32VAA7ZTEntryV_10Foundation3URLVAJSbSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC7extract_2to10bufferSize9skipCRC328progresss6UInt32VAA7ZTEntryV_10Foundation3URLVAJSbSo10NSProgressCSgtKF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "extract", - "printedName": "extract(_:bufferSize:skipCRC32:progress:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -5873,148 +4897,64 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC7extract_10bufferSize9skipCRC328progress8consumers6UInt32VAA7ZTEntryV_AJSbSo10NSProgressCSgy10Foundation4DataVKXEtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC7extract_10bufferSize9skipCRC328progress8consumers6UInt32VAA7ZTEntryV_AJSbSo10NSProgressCSgy10Foundation4DataVKXEtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTArchiveC", - "mangledName": "$s9ZTCoreKit9ZTArchiveC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ] + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "AnyIterator", - "printedName": "Swift.AnyIterator", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:s11AnyIteratorV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSignal", - "printedName": "ZTSignal", - "children": [ + ] + }, { "kind": "Var", - "name": "fireCount", - "printedName": "fireCount", + "name": "autorestartBackgroundDfu", + "printedName": "autorestartBackgroundDfu", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivp", - "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivp", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -6027,29 +4967,75 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivg", - "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivg", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "retainLastData", - "printedName": "retainLastData", + "name": "getChunksOnApplicationDidBecomeActive", + "printedName": "getChunksOnApplicationDidBecomeActive", "children": [ { "kind": "TypeNominal", @@ -6059,8 +5045,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -6084,11 +5070,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6113,11 +5097,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvs", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6136,11 +5118,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvM", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6151,32 +5131,24 @@ }, { "kind": "Var", - "name": "lastDataFired", - "printedName": "lastDataFired", + "name": "enablePacketsDataLogging", + "printedName": "enablePacketsDataLogging", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -6189,158 +5161,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "observers", - "printedName": "observers", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[AnyObject]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[AnyObject]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "declAttributes": [ "Final" ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(retainLastData:)", + "kind": "Var", + "name": "cachedPacketsBatchUploadSize", + "printedName": "cachedPacketsBatchUploadSize", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "subscribe", - "printedName": "subscribe(with:callback:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -6349,108 +5285,107 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribeOnce", - "printedName": "subscribeOnce(with:callback:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chunkDuration", + "printedName": "chunkDuration", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", - "DiscardableResult", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribePast", - "printedName": "subscribePast(with:callback:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -6459,252 +5394,132 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribePastOnce", - "printedName": "subscribePastOnce(with:callback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "fire", - "printedName": "fire(_:)", + "name": "clear", + "printedName": "clear()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC4fireyyxF", - "mangledName": "$s9ZTCoreKit8ZTSignalC4fireyyxF", + "usr": "s:9ZTCoreKit10ZTSettingsC5clearyyF", + "mangledName": "$s9ZTCoreKit10ZTSettingsC5clearyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTSettingsC", + "mangledName": "$s9ZTCoreKit10ZTSettingsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTPacketDfuCharacteristic", + "printedName": "ZTPacketDfuCharacteristic", + "children": [ { - "kind": "Function", - "name": "cancelSubscription", - "printedName": "cancelSubscription(for:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", - "mangledName": "$s9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "cancelAllSubscriptions", - "printedName": "cancelAllSubscriptions()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", - "mangledName": "$s9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearLastData", - "printedName": "clearLastData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13clearLastDatayyF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13clearLastDatayyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fire", - "printedName": "fire()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", - "mangledName": "$s9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == ()>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTSignalC", - "mangledName": "$s9ZTCoreKit8ZTSignalC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "Final", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSignalSubscription", - "printedName": "ZTSignalSubscription", - "children": [ - { - "kind": "Var", - "name": "observer", - "printedName": "observer", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "AnyObject?" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ReferenceOwnership", - "RawDocComment" - ], - "ownership": 1, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -6714,113 +5529,53 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "AnyObject?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "static": true, "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AnyObject?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "once", - "printedName": "once", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -6831,210 +5586,68 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "filter", - "printedName": "filter(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sample", - "printedName": "sample(every:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + "name": "ZTPacketDfuCharacteristic", + "printedName": "ZTCoreKit.ZTPacketDfuCharacteristic", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onQueue", - "printedName": "onQueue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", - "DiscardableResult", + "Required", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "cancel", - "printedName": "cancel()", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", @@ -7043,82 +5656,58 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", + "Override", "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "Final", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] }, { - "kind": "OperatorDecl", - "name": "=>", - "printedName": "=>", - "declKind": "InfixOperator", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "Infix" + "RawDocComment" ] }, { - "kind": "Function", - "name": "=>", - "printedName": "=>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", - "mangledName": "$s9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" }, { "kind": "Import", @@ -7132,218 +5721,328 @@ }, { "kind": "TypeDecl", - "name": "ZTMessageTime", - "printedName": "ZTMessageTime", + "name": "ZTBleManagerState", + "printedName": "ZTBleManagerState", "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "off", + "printedName": "off", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "on", + "printedName": "on", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "scanning", + "printedName": "scanning", "children": [ { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resetting", + "printedName": "resetting", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", @@ -7358,12 +6057,11 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -7379,51 +6077,17 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit13ZTMessageTimeV", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "DFUPeripheralSelectorDelegate", - "children": [ + }, { "kind": "Function", - "name": "select", - "printedName": "select(_:advertisementData:RSSI:hint:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", @@ -7433,154 +6097,120 @@ }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : AnyObject]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)select:advertisementData:RSSI:hint:", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, + "static": true, + "implicit": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "filterBy", - "printedName": "filterBy(hint:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)filterByHint:", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP8filterBy4hintSaySo6CBUUIDCGSgAG_tF", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "filterByHint:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, + "implicit": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP", + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } ] }, { @@ -7595,359 +6225,707 @@ }, { "kind": "TypeDecl", - "name": "ZTDateTransform", - "printedName": "ZTDateTransform", + "name": "ZTRealtimeMetric", + "printedName": "ZTRealtimeMetric", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "duration", + "printedName": "duration", "children": [ { - "kind": "TypeNominal", - "name": "ZTDateTransform", - "printedName": "ZTCoreKit.ZTDateTransform", - "usr": "s:9ZTCoreKit15ZTDateTransformC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTDateTransformCACycfc", - "mangledName": "$s9ZTCoreKit15ZTDateTransformCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "steps", + "printedName": "steps", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "cycleDuration", + "printedName": "cycleDuration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepCadence", + "printedName": "stepCadence", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSpeed", + "printedName": "stepSpeed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "kind": "Var", + "name": "distance", + "printedName": "distance", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "footDistance", + "printedName": "footDistance", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit15ZTDateTransformC", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + "RawDocComment" + ] + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Var", + "name": "energySum", + "printedName": "energySum", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walkingQualityScore", + "printedName": "walkingQualityScore", + "children": [ { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDateTransformUTC", - "printedName": "ZTDateTransformUTC", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "stairsClimbed", + "printedName": "stairsClimbed", "children": [ { - "kind": "TypeNominal", - "name": "ZTDateTransformUTC", - "printedName": "ZTCoreKit.ZTDateTransformUTC", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCCACycfc", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "intenseActivity", + "printedName": "intenseActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "slope", + "printedName": "slope", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "accelerationFoot", + "printedName": "accelerationFoot", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "kind": "Var", + "name": "strideLength", + "printedName": "strideLength", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "relativePronationAngleFoot", + "printedName": "relativePronationAngleFoot", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pronationAngleFFI", + "printedName": "pronationAngleFFI", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Var", + "name": "pronationAngleFFO", + "printedName": "pronationAngleFFO", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "plantarFlexionAngularSpeedMaxPropulsion", + "printedName": "plantarFlexionAngularSpeedMaxPropulsion", + "children": [ { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUStreamHexError", - "printedName": "DFUStreamHexError", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "invalidHexFile", - "printedName": "invalidHexFile", + "name": "symmetry", + "printedName": "symmetry", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamHexError.Type) -> ZTCoreKit.DFUStreamHexError", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamHexError.Type", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" } ] } @@ -7955,62 +6933,50 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "value", + "printedName": "value()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -8019,54 +6985,181 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(value:activityType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "init_kind": "Designated" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -8084,17 +7177,421 @@ }, { "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDateDefaultTransform", + "printedName": "ZTDateDefaultTransform", + "children": [ + { + "kind": "TypeDecl", + "name": "Unit", + "printedName": "Unit", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "milliseconds", + "printedName": "milliseconds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit?", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Double", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDateDefaultTransform", + "printedName": "ZTCoreKit.ZTDateDefaultTransform", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC" + }, + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } ] }, @@ -8108,6 +7605,46 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", "name": "ZTDataTransform", @@ -8268,6 +7805,16 @@ } ] }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -8287,33 +7834,34 @@ }, { "kind": "TypeDecl", - "name": "ZTCharacteristic", - "printedName": "ZTCharacteristic", + "name": "ZTNotifyCharacteristic", + "printedName": "ZTNotifyCharacteristic", "children": [ { "kind": "Var", - "name": "service", - "printedName": "service", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "ZTCoreKit.ZTService?" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "ReferenceOwnership", - "SetterAccess", "AccessControl", "RawDocComment" ], - "ownership": 1, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -8323,32 +7871,28 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTService?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", @@ -8366,13 +7910,17 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -8395,169 +7943,250 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "characteristic", - "printedName": "characteristic", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "CoreBluetooth.CBCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "usr": "s:Sq" + "name": "ZTNotifyCharacteristic", + "printedName": "ZTCoreKit.ZTNotifyCharacteristic", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", + "Required", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTAlgoPrecisionMode", + "children": [ + { + "kind": "Var", + "name": "defaultMode", + "printedName": "defaultMode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "CoreBluetooth.CBCharacteristic?", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "valueUpdatedTimeInterval", - "printedName": "valueUpdatedTimeInterval", + "name": "economicMode", + "printedName": "economicMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "performanceMode", + "printedName": "performanceMode", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "valueWrittenTimeInterval", - "printedName": "valueWrittenTimeInterval", + "name": "parameters", + "printedName": "parameters", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -8566,52 +8195,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isNotifying", - "printedName": "isNotifying", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -8620,305 +8274,176 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "onValueUpdated", - "printedName": "onValueUpdated", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onValueWritten", - "printedName": "onValueWritten", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Var", - "name": "onNotificationUpdated", - "printedName": "onNotificationUpdated", + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUServiceController", + "printedName": "DFUServiceController", + "children": [ + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)pause", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5pauseyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", "AccessControl", + "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Function", + "name": "resume", + "printedName": "resume()", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)resume", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6resumeyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "Required", + "ObjC", "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "abort", + "printedName": "abort()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)abort", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5abortSbyF", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueWritten", - "printedName": "valueWritten()", + "name": "restart", + "printedName": "restart()", "children": [ { "kind": "TypeNominal", @@ -8927,68 +8452,172 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)restart", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7restartyyF", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "readValue", - "printedName": "readValue()", + "kind": "Var", + "name": "paused", + "printedName": "paused", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC9readValueyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)paused", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)paused", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "notificationUpdated", - "printedName": "notificationUpdated()", + "kind": "Var", + "name": "aborted", + "printedName": "aborted", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)aborted", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)aborted", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] } ], "declKind": "Class", - "usr": "s:9ZTCoreKit16ZTCharacteristicC", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { @@ -9013,29 +8642,27 @@ }, { "kind": "TypeDecl", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTHardwareCharacteristic", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTMessageInactivityTimeout", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "left", + "printedName": "left", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -9049,20 +8676,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -9077,20 +8700,16 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -9105,47 +8724,35 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "right", + "printedName": "right", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -9156,227 +8763,59 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkConfig", - "printedName": "ZTMessageChunkConfig", - "children": [ - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte1", - "printedName": "byte1", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, @@ -9387,9 +8826,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" }, { "kind": "TypeNominal", @@ -9407,8 +8846,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -9423,9 +8862,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" }, { "kind": "TypeNominal", @@ -9435,8 +8874,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -9460,91 +8899,13 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Var", - "name": "side", - "printedName": "side", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "flag", - "printedName": "flag", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, { "kind": "Var", "name": "description", @@ -9558,8 +8919,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -9579,8 +8940,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" @@ -9589,8 +8950,8 @@ } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -9622,33 +8983,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSession", - "printedName": "ZTSession", - "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTSessionC", - "mangledName": "$s9ZTCoreKit9ZTSessionC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -9660,48 +8996,38 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTService", - "printedName": "ZTService", + "name": "ZTCBCentralManagerProtocol", + "printedName": "ZTCBCentralManagerProtocol", "children": [ { "kind": "Var", - "name": "device", - "printedName": "device", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "ZTCoreKit.ZTDevice?" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -9710,106 +9036,105 @@ "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "ZTCoreKit.ZTDevice?", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "service", - "printedName": "service", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Set", + "printedName": "Set()", + "children": [ { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "state", + "printedName": "state", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -9818,78 +9143,173 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "characteristics", - "printedName": "characteristics", + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "retrievePeripherals", + "printedName": "retrievePeripherals(withIdentifiers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.UUID]", + "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "retrieveConnectedPeripherals", + "printedName": "retrieveConnectedPeripherals(withServices:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } ], - "hasStorage": true, - "accessors": [ + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scanForPeripherals", + "printedName": "scanForPeripherals(withServices:options:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", @@ -9899,158 +9319,291 @@ }, { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "characteristic", - "printedName": "characteristic(_:)", + "name": "connect", + "printedName": "connect(_:options:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", - "mangledName": "$s9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCharacteristic>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Function", + "name": "cancelPeripheralConnection", + "printedName": "cancelPeripheralConnection(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCustomDateFormatTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(formatString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" + "AccessControl" ], "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" }, { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", "moduleName": "ZTCoreKit", - "static": true, + "overriding": true, + "implicit": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Override" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTServiceC", - "mangledName": "$s9ZTCoreKit9ZTServiceC", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" + ], + "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "superclassNames": [ + "ZTCoreKit.ZTDateFormatterTransform" ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } ] }, @@ -10066,30 +9619,39 @@ }, { "kind": "TypeDecl", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", + "name": "ZTMapError", + "printedName": "ZTMapError", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10098,52 +9660,107 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "currentValue", + "printedName": "currentValue", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10152,73 +9769,106 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "name": "reason", + "printedName": "reason", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10227,74 +9877,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "file", + "printedName": "file", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10303,215 +9987,390 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService, τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "LegacyDFUServiceInitiator", - "printedName": "LegacyDFUServiceInitiator", - "children": [ + }, { - "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", + "kind": "Var", + "name": "function", + "printedName": "function", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "startWithTargetWithIdentifier:", "declAttributes": [ - "ObjC", - "Override", + "HasInitialValue", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "LegacyDFUServiceInitiator", - "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "line", + "printedName": "line", + "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvp", "moduleName": "ZTCoreKit", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithCentralManager:target:", "declAttributes": [ - "ObjC", - "Override", - "Available" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "init_kind": "Designated" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "printedName": "init(key:currentValue:reason:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "LegacyDFUServiceInitiator", - "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + "name": "ZTMapError", + "printedName": "ZTCoreKit.ZTMapError", + "usr": "s:9ZTCoreKit10ZTMapErrorV" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Swift.UInt?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } ], "hasDefaultArg": true, @@ -10519,69 +10378,78 @@ } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "usr": "s:9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", "declAttributes": [ - "ObjC", - "Override" + "AccessControl" ], "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit10ZTMapErrorV", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.DFUServiceInitiator", - "ObjectiveC.NSObject" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -10589,13 +10457,6 @@ "printedName": "CustomStringConvertible", "usr": "s:s23CustomStringConvertibleP", "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -10611,10 +10472,13 @@ }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -10626,462 +10490,227 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "ZTPassthroughAlgo", - "printedName": "ZTPassthroughAlgo", + "name": "ZTPacketCachable", + "printedName": "ZTPacketCachable", "children": [ + { + "kind": "AssociatedType", + "name": "Activity", + "printedName": "Activity", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8ActivityQa", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8ActivityQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(id: ZTCoreKit.ZTAlgoStatus)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "startNewChunk", - "printedName": "startNewChunk", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "changeProductMode", - "printedName": "changeProductMode", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(mode: ZTCoreKit.ZTAlgoMode)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setPrecisionMode", - "printedName": "setPrecisionMode", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(mode: ZTCoreKit.ZTAlgoPrecisionMode)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setMinimumStepsForAnalysis", - "printedName": "setMinimumStepsForAnalysis", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setMinimumStridesForAnalysis", - "printedName": "setMinimumStridesForAnalysis", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setStreamingMode", - "printedName": "setStreamingMode", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "fulfilledAt", + "printedName": "fulfilledAt", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11090,161 +10719,180 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", + "kind": "Var", + "name": "sentAt", + "printedName": "sentAt", "children": [ { "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDfuService", - "printedName": "ZTDfuService", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11253,70 +10901,89 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11325,41 +10992,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -11374,41 +11019,19 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvs", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -11423,1039 +11046,773 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16VvM", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, - "declAttributes": [ - "Final" - ], + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Var", + "name": "statusRawValue", + "printedName": "statusRawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuService", - "printedName": "ZTCoreKit.ZTDfuService", - "usr": "s:9ZTCoreKit12ZTDfuServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvp", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit12ZTDfuServiceC", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTRealtimeMetric", - "printedName": "ZTRealtimeMetric", - "children": [ - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "steps", - "printedName": "steps", + "name": "status", + "printedName": "status", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "cycleDuration", - "printedName": "cycleDuration", + "name": "scheduledDeleted", + "printedName": "scheduledDeleted", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepCadence", - "printedName": "stepCadence", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "stepSpeed", - "printedName": "stepSpeed", + "name": "rawData", + "printedName": "rawData", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "distance", - "printedName": "distance", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "footDistance", - "printedName": "footDistance", + "name": "activity", + "printedName": "activity", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "DependentMember", + "printedName": "τ_0_0.Activity" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "DependentMember", + "printedName": "τ_0_0.Activity" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "energySum", - "printedName": "energySum", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "DependentMember", + "printedName": "τ_0_0.Activity" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "walkingQualityScore", - "printedName": "walkingQualityScore", + "name": "fwVersion", + "printedName": "fwVersion", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsClimbed", - "printedName": "stairsClimbed", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "intenseActivity", - "printedName": "intenseActivity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "slope", - "printedName": "slope", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "accelerationFoot", - "printedName": "accelerationFoot", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "strideLength", - "printedName": "strideLength", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "relativePronationAngleFoot", - "printedName": "relativePronationAngleFoot", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pronationAngleFFI", - "printedName": "pronationAngleFFI", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pronationAngleFFO", - "printedName": "pronationAngleFFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "plantarFlexionAngularSpeedMaxPropulsion", - "printedName": "plantarFlexionAngularSpeedMaxPropulsion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "symmetry", - "printedName": "symmetry", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(data:activity:fwVersion:context:name:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(value:activityType:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "usr": "s:9ZTCoreKit16ZTPacketCachableP4data8activity9fwVersion7context4namex10Foundation4DataV_AA010ZTActivityD0_pSgSSSgSo22NSManagedObjectContextCSStcfc", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP4data8activity9fwVersion7context4namex10Foundation4DataV_AA010ZTActivityD0_pSgSSSgSo22NSManagedObjectContextCSStcfc", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTPacketCachablePAAE2eeoiySbx_xtFZ", + "mangledName": "$s9ZTCoreKit16ZTPacketCachablePAAE2eeoiySbx_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit16ZTPacketCachableP", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : CoreData.NSManagedObject, τ_0_0.Activity : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "enumRawTypeName": "String", "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, { "kind": "Conformance", "name": "Hashable", @@ -12465,32 +11822,17 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -12499,261 +11841,72 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTCBCentralManagerProtocol", - "printedName": "ZTCBCentralManagerProtocol", + "name": "ZTServices", + "printedName": "ZTServices", "children": [ { - "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "kind": "TypeDecl", + "name": "Primary", + "printedName": "Primary", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "state", - "printedName": "state", - "children": [ - { - "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "stopScan", - "printedName": "stopScan()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "retrievePeripherals", - "printedName": "retrievePeripherals(withIdentifiers:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.UUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "retrieveConnectedPeripherals", - "printedName": "retrieveConnectedPeripherals(withServices:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -12762,38 +11915,23 @@ "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scanForPeripherals", - "printedName": "scanForPeripherals(withServices:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -12802,1605 +11940,921 @@ "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "commands", + "printedName": "commands", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] } ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "notifyData", + "printedName": "notifyData", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "indicateData", + "printedName": "indicateData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "batteryLevel", + "printedName": "batteryLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pairedSoles", + "printedName": "pairedSoles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "test", + "printedName": "test", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "cancelPeripheralConnection", - "printedName": "cancelPeripheralConnection(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTSessionDelegate", - "printedName": "ZTSessionDelegate", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSessionDelegate", - "printedName": "ZTCoreKit.ZTSessionDelegate", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate(im)init", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:didBecomeInvalidWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:didBecomeInvalidWithError:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:didBecomeInvalidWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didReceive:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "AuthChallengeDisposition", - "printedName": "Foundation.URLSession.AuthChallengeDisposition", - "usr": "c:@E@NSURLSessionAuthChallengeDisposition" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLCredential?", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLCredential", - "printedName": "Foundation.URLCredential", - "usr": "c:objc(cs)NSURLCredential" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didReceiveChallenge:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task10didReceive17completionHandlerySo12NSURLSessionC_So0L4TaskCSo28NSURLAuthenticationChallengeCySo0l4AuthO11DispositionV_So15NSURLCredentialCSgtctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didReceiveChallenge:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task15didSendBodyData14totalBytesSent0lm10ExpectedToI0ySo12NSURLSessionC_So0Q4TaskCs5Int64VA2NtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:needNewBodyStream:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.InputStream?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.InputStream?", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "InputStream", - "printedName": "Foundation.InputStream", - "usr": "c:objc(cs)NSInputStream" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:needNewBodyStream:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task17needNewBodyStreamySo12NSURLSessionC_So0L4TaskCySo07NSInputK0CSgctF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO", "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:needNewBodyStream:", "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", + "kind": "TypeDecl", + "name": "PrimaryOld", + "printedName": "PrimaryOld", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?) -> ()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task26willPerformHTTPRedirection10newRequest17completionHandlerySo12NSURLSessionC_So0O4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didFinishCollecting:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" }, { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didFinishCollectingMetrics:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0K4TaskCSo0kL7MetricsCtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didFinishCollectingMetrics:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didCompleteWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didCompleteWithError:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0L4TaskCs0K0_pSgtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didCompleteWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:taskIsWaitingForConnectivity:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:taskIsWaitingForConnectivity:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0L4TaskCtF", - "moduleName": "ZTCoreKit", - "intro_Macosx": "10.13", - "intro_iOS": "11.0", - "intro_tvOS": "11.0", - "intro_watchOS": "4.0", - "objc_name": "URLSession:taskIsWaitingForConnectivity:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Available", - "Available", - "Available", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:dataTask:didReceive:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:dataTask:didReceiveData:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0k4DataH0C10Foundation0L0VtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:dataTask:didReceiveData:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:dataTask:willCacheResponse:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.CachedURLResponse?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.CachedURLResponse?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:dataTask:willCacheResponse:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_8dataTask17willCacheResponse17completionHandlerySo12NSURLSessionC_So0n4DataH0CSo19NSCachedURLResponseCyAMSgctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:dataTask:willCacheResponse:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0p8DownloadH0Cs5Int64VAMtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask12didWriteData17totalBytesWritten0lm10ExpectedToJ0ySo12NSURLSessionC_So0q8DownloadH0Cs5Int64VA2NtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didFinishDownloadingTo:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" }, { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didFinishDownloadingToURL:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0m8DownloadH0C10Foundation3URLVtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didFinishDownloadingToURL:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ + "kind": "Var", + "name": "commands", + "printedName": "commands", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ + "kind": "Var", + "name": "notifyData", + "printedName": "notifyData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Var", + "name": "indicateData", + "printedName": "indicateData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Var", + "name": "batteryLevel", + "printedName": "batteryLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pairedSoles", + "printedName": "pairedSoles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ] }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTModelNumberCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeDecl", + "name": "DeviceInformation", + "printedName": "DeviceInformation", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", @@ -14409,593 +12863,1057 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", "moduleName": "ZTCoreKit", "static": true, - "implicit": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", "moduleName": "ZTCoreKit", "static": true, - "implicit": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "set" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "manufacturerName", + "printedName": "manufacturerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "modelNumber", + "printedName": "modelNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "firmwareRevision", + "printedName": "firmwareRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "hardwareRevision", + "printedName": "hardwareRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, "declAttributes": [ - "Final" + "AccessControl" ], - "accessorKind": "_modify" + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ] }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "TypeDecl", + "name": "DeviceDFU", + "printedName": "DeviceDFU", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + ] }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", + "children": [ + { + "kind": "Var", + "name": "dfuControlPoint", + "printedName": "dfuControlPoint", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfuPacket", + "printedName": "dfuPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfuButtonless", + "printedName": "dfuButtonless", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, "declAttributes": [ - "Required" - ], - "init_kind": "Designated" + "AccessControl" + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO", + "mangledName": "$s9ZTCoreKit10ZTServicesO", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTCBPeripheralProtocol", - "printedName": "ZTCBPeripheralProtocol", + "name": "ZTRealtimeSide", + "printedName": "ZTRealtimeSide", "children": [ { "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4noneyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4noneyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4leftyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4leftyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "right", + "printedName": "right", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO5rightyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO5rightyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "rssi", - "printedName": "rssi", + "name": "both", + "printedName": "both", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "state", - "printedName": "state", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheralState", - "printedName": "CoreBluetooth.CBPeripheralState", - "usr": "c:@E@CBPeripheralState" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheralState", - "printedName": "CoreBluetooth.CBPeripheralState", - "usr": "c:@E@CBPeripheralState" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4bothyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4bothyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "services", - "printedName": "services", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[CoreBluetooth.CBService]?", + "printedName": "ZTCoreKit.ZTRealtimeSide?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "usr": "s:Sa" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBService]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "identifier", - "printedName": "identifier", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "protocolReq": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -15004,152 +13922,102 @@ "children": [ { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "discoverServices", - "printedName": "discoverServices(_:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IntelHex2BinConverter", + "printedName": "IntelHex2BinConverter", + "children": [ { "kind": "Function", - "name": "discoverCharacteristics", - "printedName": "discoverCharacteristics(_:for:)", + "name": "convert", + "printedName": "convert(_:mbrSize:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "readValue", - "printedName": "readValue(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "writeValue", - "printedName": "writeValue(_:for:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Data", @@ -15158,67 +14026,115 @@ }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristicWriteType", - "printedName": "CoreBluetooth.CBCharacteristicWriteType", - "usr": "c:@E@CBCharacteristicWriteType" + "name": "UInt32", + "printedName": "Swift.UInt32", + "hasDefaultArg": true, + "usr": "s:s6UInt32V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", + "usr": "s:9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "setNotifyValue", - "printedName": "setNotifyValue(_:for:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "IntelHex2BinConverter", + "printedName": "ZTCoreKit.IntelHex2BinConverter", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter(im)init", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { @@ -15233,28 +14149,22 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreData", + "printedName": "CoreData", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreTelephony", + "printedName": "CoreTelephony", "declKind": "Import", "moduleName": "ZTCoreKit" }, @@ -15283,369 +14193,157 @@ "name": "CoreBluetooth", "printedName": "CoreBluetooth", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTRealtimeMessage", - "printedName": "ZTRealtimeMessage", + "name": "ZTCharacteristic", + "printedName": "ZTCharacteristic", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "service", + "printedName": "service", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "WeakStorage", + "printedName": "ZTCoreKit.ZTService?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "SetterAccess", "AccessControl", "RawDocComment" ], + "ownership": 1, + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Side", - "printedName": "Side", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "both", - "printedName": "both", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "ZTCoreKit.ZTService?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "senderSide", - "printedName": "senderSide", + "name": "characteristic", + "printedName": "characteristic", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "CoreBluetooth.CBCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15654,55 +14352,60 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "CoreBluetooth.CBCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "concernedSide", - "printedName": "concernedSide", + "name": "valueUpdatedTimeInterval", + "printedName": "valueUpdatedTimeInterval", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15712,54 +14415,59 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "eventType", - "printedName": "eventType", + "name": "valueWrittenTimeInterval", + "printedName": "valueWrittenTimeInterval", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15769,54 +14477,51 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "content", - "printedName": "content", + "name": "isNotifying", + "printedName": "isNotifying", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15825,91 +14530,53 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "onValueUpdated", + "printedName": "onValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessage", - "printedName": "ZTCoreKit.ZTRealtimeMessage", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15918,55 +14585,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "acknowledgment", - "printedName": "acknowledgment", + "name": "onValueWritten", + "printedName": "onValueWritten", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", "children": [ { "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15975,55 +14664,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", "children": [ { "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "realtimeEvent", - "printedName": "realtimeEvent", + "name": "onNotificationUpdated", + "printedName": "onNotificationUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -16032,394 +14743,690 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "realtimeMetrics", - "printedName": "realtimeMetrics", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", - "children": [ - { - "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" - } - ], - "usr": "s:Sq" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "Required", "RawDocComment" ], - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "valueWritten", + "printedName": "valueWritten()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notificationUpdated", + "printedName": "notificationUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit16ZTCharacteristicC", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmwareType", + "printedName": "DFUFirmwareType", + "children": [ + { + "kind": "Var", + "name": "softdevice", + "printedName": "softdevice", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10softdeviceyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", + "kind": "Var", + "name": "bootloader", + "printedName": "bootloader", "children": [ { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeBootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10bootloaderyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "application", + "printedName": "application", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeApplication", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO11applicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "softdeviceBootloader", + "printedName": "softdeviceBootloader", + "children": [ { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO20softdeviceBootloaderyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "softdeviceBootloaderApplication", + "printedName": "softdeviceBootloaderApplication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloaderApplication", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO31softdeviceBootloaderApplicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUFirmwareType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "algoMode", - "printedName": "algoMode", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmwareError", + "printedName": "DFUFirmwareError", + "children": [ + { + "kind": "TypeDecl", + "name": "FileType", + "printedName": "FileType", + "children": [ + { + "kind": "Var", + "name": "zip", + "printedName": "zip", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "precisionMode", - "printedName": "precisionMode", + "name": "binOrHex", + "printedName": "binOrHex", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "consecutiveSteps", - "printedName": "consecutiveSteps", + "name": "dat", + "printedName": "dat", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, + { + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -16428,186 +15435,221 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "declKind": "Enum", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } ] }, { - "kind": "TypeDecl", - "name": "Acknowledgment", - "printedName": "Acknowledgment", + "kind": "Var", + "name": "type", + "printedName": "type", "children": [ { - "kind": "Var", - "name": "command", - "printedName": "command", + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" - } - ], - "usr": "s:Sq" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "Var", - "name": "status", - "printedName": "status", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmware", + "printedName": "DFUFirmware", + "children": [ + { + "kind": "Var", + "name": "fileName", + "printedName": "fileName", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -16616,19 +15658,32 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileName", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -16637,416 +15692,435 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileName", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "ObjC" ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] }, { - "kind": "TypeDecl", - "name": "Event", - "printedName": "Event", + "kind": "Var", + "name": "fileUrl", + "printedName": "fileUrl", "children": [ { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileUrl", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "eventType", - "printedName": "eventType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileUrl", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "valid", + "printedName": "valid", + "children": [ { - "kind": "Var", - "name": "motionId", - "printedName": "motionId", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)valid", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)valid", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ { - "kind": "Var", - "name": "intensity", - "printedName": "intensity", + "kind": "TypeNominal", + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)size", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)size", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parts", + "printedName": "parts", + "children": [ { - "kind": "Var", - "name": "arguments", - "printedName": "arguments", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)parts", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)parts", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToZipFile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFileAC10Foundation3URLV_tKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToZipFile:error:", + "declAttributes": [ + "AccessControl", + "Convenience", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToZipFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFile4typeAC10Foundation3URLV_AA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToZipFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(zipFile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFileAC10Foundation4DataV_tKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithZipFile:error:", + "declAttributes": [ + "AccessControl", + "Convenience", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(zipFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFile4typeAC10Foundation4DataV_AA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithZipFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToBinOrHexFile:urlToDatFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "usr": "s:Sq" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToBinOrHexFile:urlToDatFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC17urlToBinOrHexFile0de3DatI04typeAC10Foundation3URLV_AISgAA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToBinOrHexFile:urlToDatFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(binFile:datFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" - }, { "kind": "TypeNominal", "name": "Data", @@ -17054,1210 +16128,1126 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + "usr": "s:Sq" }, { - "kind": "TypeDecl", - "name": "EventType", - "printedName": "EventType", - "children": [ - { - "kind": "Var", - "name": "motion", - "printedName": "motion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithBinFile:datFile:type:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7binFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithBinFile:datFile:type:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hexFile:datFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ { - "kind": "Var", - "name": "transition", - "printedName": "transition", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithHexFile:datFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7hexFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithHexFile:datFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)init", + "mangledName": "$s9ZTCoreKit11DFUFirmwareCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCore", + "printedName": "ZTCore", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C7versionSSvpZ", + "mangledName": "$s9ZTCoreKit0A0C7versionSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C7versionSSvgZ", + "mangledName": "$s9ZTCoreKit0A0C7versionSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zcVersion", + "printedName": "zcVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvp", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvg", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvs", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvM", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCore", + "printedName": "ZTCoreKit.ZTCore", + "usr": "s:9ZTCoreKit0A0C" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C6sharedACvpZ", + "mangledName": "$s9ZTCoreKit0A0C6sharedACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCore", + "printedName": "ZTCoreKit.ZTCore", + "usr": "s:9ZTCoreKit0A0C" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C6sharedACvgZ", + "mangledName": "$s9ZTCoreKit0A0C6sharedACvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bleManager", + "printedName": "bleManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", + "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", + "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastCommand", + "printedName": "lastCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastCommandResponses", + "printedName": "lastCommandResponses", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", + "children": [ { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } - ] - }, + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeDecl", - "name": "MotionId", - "printedName": "MotionId", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "stepForward", - "printedName": "stepForward", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "stepBackward", - "printedName": "stepBackward", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "stepSideLeft", - "printedName": "stepSideLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepSideRight", - "printedName": "stepSideRight", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepUp", - "printedName": "stepUp", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepDown", - "printedName": "stepDown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastActivityId", + "printedName": "lastActivityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeDecl", - "name": "MotionIntensity", - "printedName": "MotionIntensity", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "low", - "printedName": "low", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "medium", - "printedName": "medium", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "high", - "printedName": "high", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] }, { - "kind": "TypeDecl", - "name": "Metrics", - "printedName": "Metrics", + "kind": "Var", + "name": "leftModuleCommandStatus", + "printedName": "leftModuleCommandStatus", "children": [ { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "kind": "TypeNominal", + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", + "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "usr": "s:Sq" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", + "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectedDevice", + "printedName": "connectedDevice", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "metricId", - "printedName": "metricId", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTDevice?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastDeviceSerialNumber", + "printedName": "lastDeviceSerialNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "metric", - "printedName": "metric", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastDeviceQRCode", + "printedName": "lastDeviceQRCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.UInt8]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastQRCode", + "printedName": "lastQRCode", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -18266,19 +17256,29 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -18287,141 +17287,44 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTPacketDfuCharacteristic", - "printedName": "ZTPacketDfuCharacteristic", - "children": [ + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "isDfuInProgress", + "printedName": "isDfuInProgress", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvp", + "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -18431,16 +17334,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvg", + "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, "declAttributes": [ "Final" @@ -18451,34 +17353,28 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "dfuDelegate", + "printedName": "dfuDelegate", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "ReferenceOwnership", + "AccessControl", + "RawDocComment" ], + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -18489,157 +17385,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTDfuDelegate", + "printedName": "any ZTCoreKit.ZTDfuDelegate", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPacketDfuCharacteristic", - "printedName": "ZTCoreKit.ZTPacketDfuCharacteristic", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTMessageInactivityTimeout", - "children": [ - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -18654,16 +17419,27 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDfuDelegate", + "printedName": "any ZTCoreKit.ZTDfuDelegate", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -18678,33 +17454,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "right", - "printedName": "right", + "name": "firmwareDfuState", + "printedName": "firmwareDfuState", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "ZTCoreKit.DFUState?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", + "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", + "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], @@ -18717,16 +17506,76 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "ZTCoreKit.DFUState?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", + "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentDfuState", + "printedName": "currentDfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -18741,16 +17590,19 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -18765,121 +17617,50 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "onDfuStateUpdated", + "printedName": "onDfuStateUpdated", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", + "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", + "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -18888,328 +17669,318 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", + "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", + "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareType", - "printedName": "DFUFirmwareType", - "children": [ { "kind": "Var", - "name": "softdevice", - "printedName": "softdevice", + "name": "onDfuUploadProgress", + "printedName": "onDfuUploadProgress", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "Swift.Float?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10softdeviceyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", + "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "bootloader", - "printedName": "bootloader", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", + "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeBootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10bootloaderyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 + ] }, { "kind": "Var", - "name": "application", - "printedName": "application", + "name": "onDfuFinishedLeft", + "printedName": "onDfuFinishedLeft", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeApplication", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO11applicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "softdeviceBootloader", - "printedName": "softdeviceBootloader", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO20softdeviceBootloaderyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 + ] }, { "kind": "Var", - "name": "softdeviceBootloaderApplication", - "printedName": "softdeviceBootloaderApplication", + "name": "onDfuFinishedRight", + "printedName": "onDfuFinishedRight", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloaderApplication", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO31softdeviceBootloaderApplicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 4 - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUFirmwareType?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "onDfuFinished", + "printedName": "onDfuFinished", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -19218,372 +17989,210 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "onDfuCopied", + "printedName": "onDfuCopied", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareError", - "printedName": "DFUFirmwareError", - "children": [ - { - "kind": "TypeDecl", - "name": "FileType", - "printedName": "FileType", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "zip", - "printedName": "zip", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setup", + "printedName": "setup(apiKey:secret:appId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "binOrHex", - "printedName": "binOrHex", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Var", - "name": "dat", - "printedName": "dat", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "type", - "printedName": "type", + "kind": "Function", + "name": "clearUser", + "printedName": "clearUser()", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C9clearUseryyF", + "mangledName": "$s9ZTCoreKit0A0C9clearUseryyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "kind": "Function", + "name": "updateOrganization", + "printedName": "updateOrganization(code:appType:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", @@ -19596,90 +18205,9 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmware", - "printedName": "DFUFirmware", - "children": [ - { - "kind": "Var", - "name": "fileName", - "printedName": "fileName", - "children": [ + }, { "kind": "TypeNominal", "name": "Optional", @@ -19692,735 +18220,615 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileName", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", + "mangledName": "$s9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scan", + "printedName": "scan(for:timeout:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileName", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fileUrl", - "printedName": "fileUrl", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.URL?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileUrl", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileUrl", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "valid", - "printedName": "valid", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)valid", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", "moduleName": "ZTCoreKit", + "deprecated": true, "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)valid", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "size", - "printedName": "size", + "kind": "Function", + "name": "scan", + "printedName": "scan(for:timeout:deviceDiscovered:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)size", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)size", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "parts", - "printedName": "parts", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)parts", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)parts", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToZipFile:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFileAC10Foundation3URLV_tKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToZipFile:error:", - "declAttributes": [ - "AccessControl", - "Convenience", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToZipFile:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFile4typeAC10Foundation3URLV_AA0C4TypeOtKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToZipFile:type:error:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(zipFile:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFileAC10Foundation4DataV_tKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithZipFile:error:", - "declAttributes": [ - "AccessControl", - "Convenience", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(zipFile:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFile4typeAC10Foundation4DataV_AA0C4TypeOtKcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", "moduleName": "ZTCoreKit", - "objc_name": "initWithZipFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToBinOrHexFile:urlToDatFile:type:)", + "kind": "Function", + "name": "scan", + "printedName": "scan(macAddress:timeout:deviceDiscovered:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.URL?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToBinOrHexFile:urlToDatFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC17urlToBinOrHexFile0de3DatI04typeAC10Foundation3URLV_AISgAA0C4TypeOtKcfc", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToBinOrHexFile:urlToDatFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(binFile:datFile:type:)", + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C8stopScanyyF", + "mangledName": "$s9ZTCoreKit0A0C8stopScanyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectWithDevice", + "printedName": "connectWithDevice(_:timeout:isDfu:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithBinFile:datFile:type:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7binFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", "moduleName": "ZTCoreKit", - "objc_name": "initWithBinFile:datFile:type:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(hexFile:datFile:type:)", + "kind": "Function", + "name": "connect", + "printedName": "connect(withCode:timeout:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithHexFile:datFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7hexFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtKcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", + "mangledName": "$s9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", "moduleName": "ZTCoreKit", - "objc_name": "initWithHexFile:datFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "connectWithCode", + "printedName": "connectWithCode(_:timeout:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)init", - "mangledName": "$s9ZTCoreKit11DFUFirmwareCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTIndicateCharacteristic", - "printedName": "ZTIndicateCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -20429,788 +18837,1147 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo(code:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "Function", + "name": "tryReconnect", + "printedName": "tryReconnect(completion:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkConnectedDevice", + "printedName": "checkConnectedDevice(completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Function", + "name": "setDeepSleepMode", + "printedName": "setDeepSleepMode()", "children": [ { "kind": "TypeNominal", - "name": "ZTIndicateCharacteristic", - "printedName": "ZTCoreKit.ZTIndicateCharacteristic", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC" + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "mangledName": "$s9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initiateBackgroundDFU", + "printedName": "initiateBackgroundDFU(isRestartRequired:isManualMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", + "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Final", "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "initiateBackgroundDFU", + "printedName": "initiateBackgroundDFU(path:isManualMode:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", + "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", + "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Final", "AccessControl", - "Override", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "OperatorDecl", - "name": "<<-", - "printedName": "<<-", - "declKind": "InfixOperator", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Infix", - "RawDocComment" - ] - }, - { - "kind": "OperatorDecl", - "name": "->>", - "printedName": "->>", - "declKind": "InfixOperator", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Infix", - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "isFirmwareUpdateRequired", + "printedName": "isFirmwareUpdateRequired(firmwareRevision:completion:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "mangledName": "$s9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Function", + "name": "isPendingEmbeddedActivity", + "printedName": "isPendingEmbeddedActivity(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "mangledName": "$s9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "pushPendingEmbeddedActivities", + "printedName": "pushPendingEmbeddedActivities(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", + "mangledName": "$s9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Function", + "name": "updateFirmware", + "printedName": "updateFirmware(packageType:isButtonless:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDfuPackageType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "mangledName": "$s9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "updateFirmware", + "printedName": "updateFirmware(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C14updateFirmware4pathySS_tF", + "mangledName": "$s9ZTCoreKit0A0C14updateFirmware4pathySS_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "dfuStateDidChange", + "printedName": "dfuStateDidChange(to:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "mangledName": "$s9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuStateDidChangeTo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "dfuFailed", + "printedName": "dfuFailed(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C9dfuFailed5erroryAA7ZTErrorO_tF", + "mangledName": "$s9ZTCoreKit0A0C9dfuFailed5erroryAA7ZTErrorO_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "dfuError", + "printedName": "dfuError(_:didOccurWithMessage:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "mangledName": "$s9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuError:didOccurWithMessage:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "dfuProgressDidChange", + "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "mangledName": "$s9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Function", + "name": "logWith", + "printedName": "logWith(_:message:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", + "mangledName": "$s9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", + "moduleName": "ZTCoreKit", + "objc_name": "logWith:message:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Function", + "name": "checkDfuState", + "printedName": "checkDfuState()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C13checkDfuStateyyF", + "mangledName": "$s9ZTCoreKit0A0C13checkDfuStateyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit0A0C", + "mangledName": "$s9ZTCoreKit0A0C", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + "hasMissingDesignatedInitializers": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "DFUServiceDelegate", + "printedName": "DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "kind": "Conformance", + "name": "DFUProgressDelegate", + "printedName": "DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "LoggerDelegate", + "printedName": "LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "ZTDatabaseService", + "printedName": "ZTDatabaseService", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Var", + "name": "currentActivityId", + "printedName": "currentActivityId", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Constructor", + "name": "init", + "printedName": "init(context:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "ZTDatabaseService", + "printedName": "ZTCoreKit.ZTDatabaseService<τ_0_0, τ_0_1>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_0" + "printedName": "τ_0_1" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "hasDefaultArg": true, + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC7contextACyxq_GSo22NSManagedObjectContextC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC7contextACyxq_GSo22NSManagedObjectContextC_tcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Function", + "name": "fetchActivity", + "printedName": "fetchActivity(withId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13fetchActivity6withIdq_SgSS_tYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13fetchActivity6withIdq_SgSS_tYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchActivity", + "printedName": "fetchActivity(withSerial:)", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "τ_0_1?", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_0" + "printedName": "τ_0_1" } ], - "usr": "s:Sa" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13fetchActivity10withSerialq_SgSS_tYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13fetchActivity10withSerialq_SgSS_tYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Function", + "name": "createActivity", + "printedName": "createActivity(withId:updateBlock:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", @@ -21219,669 +19986,349 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "((τ_0_1) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14createActivity6withId11updateBlockq_SgSS_yq_cSgtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14createActivity6withId11updateBlockq_SgSS_yq_cSgtYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", + "kind": "Function", + "name": "updateActivity", + "printedName": "updateActivity(id:updateBlock:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1) -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", - "children": [ + ] + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:SD" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14updateActivity2id0E5Block10completionySS_yq_cys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14updateActivity2id0E5Block10completionySS_yq_cys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Function", + "name": "deleteActivity", + "printedName": "deleteActivity(withId:completion:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14deleteActivity6withId10completionySS_ys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14deleteActivity6withId10completionySS_ys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Function", + "name": "createPacket", + "printedName": "createPacket(data:activity:fwVersion:updateBlock:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } ], - "usr": "s:Sa" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Optional", + "printedName": "((τ_0_0) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> ()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12createPacket4data8activity9fwVersion11updateBlockx10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgyxcSgtYaF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12createPacket4data8activity9fwVersion11updateBlockx10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgyxcSgtYaF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Function", + "name": "fetchPackets", + "printedName": "fetchPackets(for:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[τ_0_0], any Swift.Error>) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[τ_0_0], any Swift.Error>", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" + "usr": "s:s6ResultO" } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12fetchPackets3for10completionySS_ys6ResultOySayxGs5Error_pGctF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12fetchPackets3for10completionySS_ys6ResultOySayxGs5Error_pGctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Function", + "name": "fetchPackets", + "printedName": "fetchPackets(forActivityId:from:to:in:)", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", @@ -21889,1116 +20336,942 @@ "printedName": "τ_0_0" } ], - "usr": "s:Sh" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sh" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IntelHex2BinConverter", - "printedName": "IntelHex2BinConverter", - "children": [ - { - "kind": "Function", - "name": "convert", - "printedName": "convert(_:mbrSize:)", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12fetchPackets13forActivityId4from2to2inSayxGSS_s5Int16VSgALSo22NSManagedObjectContextCtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12fetchPackets13forActivityId4from2to2inSayxGSS_s5Int16VSgALSo22NSManagedObjectContextCtYaKF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "trashOldPackets", + "printedName": "trashOldPackets()", "children": [ { "kind": "TypeNominal", - "name": "IntelHex2BinConverter", - "printedName": "ZTCoreKit.IntelHex2BinConverter", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter(im)init", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterCACycfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC15trashOldPacketsyyF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC15trashOldPacketsyyF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCompressionMethod", - "printedName": "ZTCompressionMethod", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", + "kind": "Function", + "name": "updatePackets", + "printedName": "updatePackets(for:from:to:withStatus:completion:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCompressionMethod.Type) -> ZTCoreKit.ZTCompressionMethod", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCompressionMethod.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO4noneyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO4noneyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13updatePackets3for4from2to10withStatus10completionySS_s5Int16VAkA8ZTPacketC0K0Oys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13updatePackets3for4from2to10withStatus10completionySS_s5Int16VAkA8ZTPacketC0K0Oys5Error_pSgctF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "deflate", - "printedName": "deflate", + "kind": "Function", + "name": "add", + "printedName": "add(_:to:in:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCompressionMethod.Type) -> ZTCoreKit.ZTCompressionMethod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCompressionMethod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO7deflateyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO7deflateyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC3add_2to2inyx_SSSo22NSManagedObjectContextCtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC3add_2to2inyx_SSSo22NSManagedObjectContextCtYaKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "update", + "printedName": "update(_:withNewStatus:in:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCompressionMethod?", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValueACSgs6UInt16V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValueACSgs6UInt16V_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC6update_13withNewStatus2inySayxG_AA8ZTPacketC0H0OSo22NSManagedObjectContextCtYaF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC6update_13withNewStatus2inySayxG_AA8ZTPacketC0H0OSo22NSManagedObjectContextCtYaF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "update", + "printedName": "update(packet:updateBlock:completion:)", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvp", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvg", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt16", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + ] + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC6update6packet0E5Block10completionyx_yxcys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC6update6packet0E5Block10completionyx_yxcys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "Import", - "name": "Compression", - "printedName": "Compression", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTAlgoState", - "printedName": "ZTAlgoState", + "name": "ZTUser", + "printedName": "ZTUser", "children": [ { "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "name": "attributes", + "printedName": "attributes", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "walking", - "printedName": "walking", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "running", - "printedName": "running", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pedaling", - "printedName": "pedaling", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvs", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsUp", - "printedName": "stairsUp", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsDown", - "printedName": "stairsDown", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "standing", - "printedName": "standing", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "sitting", - "printedName": "sitting", + "name": "organizationId", + "printedName": "organizationId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "kneeling", - "printedName": "kneeling", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "tiptoe", - "printedName": "tiptoe", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "vibration", - "printedName": "vibration", + "name": "appId", + "printedName": "appId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "slip", - "printedName": "slip", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "incident", - "printedName": "incident", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "freewheel", - "printedName": "freewheel", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoState?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23007,198 +21280,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit11ZTAlgoStateO", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "userId", + "printedName": "userId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvp", "moduleName": "ZTCoreKit", - "protocolReq": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23208,26 +21391,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" }, { @@ -23243,26 +21423,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "set" }, { @@ -23277,42 +21454,101 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, "implicit": true, - "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTUser?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTUser", + "printedName": "ZTCoreKit.ZTUser", + "usr": "s:9ZTCoreKit6ZTUserC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Required", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP", + "declKind": "Class", + "usr": "s:9ZTCoreKit6ZTUserC", + "mangledName": "$s9ZTCoreKit6ZTUserC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, @@ -23326,16 +21562,6 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "Import", "name": "Foundation", @@ -23348,333 +21574,260 @@ }, { "kind": "TypeDecl", - "name": "LogLevel", - "printedName": "LogLevel", + "name": "ZTAchievement", + "printedName": "ZTAchievement", "children": [ { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelDebug", - "mangledName": "$s9ZTCoreKit8LogLevelO5debugyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "verbose", - "printedName": "verbose", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelVerbose", - "mangledName": "$s9ZTCoreKit8LogLevelO7verboseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelInfo", - "mangledName": "$s9ZTCoreKit8LogLevelO4infoyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + ] }, { "kind": "Var", - "name": "application", - "printedName": "application", + "name": "type", + "printedName": "type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelApplication", - "mangledName": "$s9ZTCoreKit8LogLevelO11applicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelWarning", - "mangledName": "$s9ZTCoreKit8LogLevelO7warningyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelError", - "mangledName": "$s9ZTCoreKit8LogLevelO5erroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Function", - "name": "name", - "printedName": "name()", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8LogLevelO4nameSSyF", - "mangledName": "$s9ZTCoreKit8LogLevelO4nameSSyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "activityId", + "printedName": "activityId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.LogLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivp", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23683,220 +21836,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivg", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@LogLevel", - "mangledName": "$s9ZTCoreKit8LogLevelO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "LoggerDelegate", - "printedName": "LoggerDelegate", - "children": [ - { - "kind": "Function", - "name": "logWith", - "printedName": "logWith(_:message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate(im)logWith:message:", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP7logWith_7messageyAA8LogLevelO_SStF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.LoggerDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTFirmwareCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -23909,225 +21947,107 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUServiceController", - "printedName": "DFUServiceController", - "children": [ - { - "kind": "Function", - "name": "pause", - "printedName": "pause()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)pause", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5pauseyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resume", - "printedName": "resume()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)resume", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6resumeyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "abort", - "printedName": "abort()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)abort", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5abortSbyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "restart", - "printedName": "restart()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)restart", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7restartyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "paused", - "printedName": "paused", + "name": "appuserId", + "printedName": "appuserId", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)paused", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvp", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24136,43 +22056,121 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)paused", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvg", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "aborted", - "printedName": "aborted", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)aborted", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvp", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24181,634 +22179,571 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)aborted", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvg", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], + "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTTXPower", - "printedName": "ZTTXPower", - "children": [ - { - "kind": "Var", - "name": "dBm0", - "printedName": "dBm0", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm2", - "printedName": "dBm2", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm3", - "printedName": "dBm3", + "name": "duration", + "printedName": "duration", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm4", - "printedName": "dBm4", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm5", - "printedName": "dBm5", + "name": "calories", + "printedName": "calories", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm6", - "printedName": "dBm6", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm7", - "printedName": "dBm7", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm8", - "printedName": "dBm8", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTTXPower?", + "printedName": "ZTCoreKit.ZTAchievement?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "ZTAchievement", + "printedName": "ZTCoreKit.ZTAchievement", + "usr": "s:9ZTCoreKit13ZTAchievementC" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], "init_kind": "Designated" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTTXPowerO", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO", + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTAchievementC", + "mangledName": "$s9ZTCoreKit13ZTAchievementC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "Import", "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTPlist", - "printedName": "ZTPlist", + "name": "ZTService", + "printedName": "ZTService", "children": [ { "kind": "Var", - "name": "folderName", - "printedName": "folderName", + "name": "device", + "printedName": "device", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "WeakStorage", + "printedName": "ZTCoreKit.ZTDevice?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10folderNameSSvpZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC10folderNameSSvpZ", + "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", + "ReferenceOwnership", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isLet": true, + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -24818,43 +22753,47 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ImplicitlyUnwrappedOptional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10folderNameSSvgZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC10folderNameSSvgZ", + "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "service", + "printedName": "service", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC3url10Foundation3URLVvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC3url10Foundation3URLVvp", + "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "HasStorage", + "Final", "AccessControl", "RawDocComment" ], @@ -24868,14 +22807,14 @@ "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC3url10Foundation3URLVvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC3url10Foundation3URLVvg", + "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ @@ -24887,77 +22826,33 @@ }, { "kind": "Var", - "name": "encrypted", - "printedName": "encrypted", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC9encryptedSbvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC9encryptedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC9encryptedSbvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC9encryptedSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "encryption", - "printedName": "encryption", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvp", + "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24966,114 +22861,68 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvg", + "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "static": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "dictionary", - "printedName": "dictionary", + "name": "characteristics", + "printedName": "characteristics", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cache", - "printedName": "cache", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvp", + "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Lazy", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -25082,226 +22931,56 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", "children": [ { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvs", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvM", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvM", + "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "volume", - "printedName": "volume", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC6volumes5Int64Vvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC6volumes5Int64Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC6volumes5Int64Vvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC6volumes5Int64Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "size", - "printedName": "size", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC4sizeSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC4sizeSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC4sizeSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC4sizeSSvg", - "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "fileName", - "printedName": "fileName", + "kind": "Function", + "name": "characteristic", + "printedName": "characteristic(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC8fileNameSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC8fileNameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC8fileNameSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC8fileNameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC4nameSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -25310,32 +22989,18 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC4nameSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "save", - "printedName": "save()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4saveyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4saveyyF", + "usr": "s:9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", + "mangledName": "$s9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCharacteristic>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" @@ -25343,191 +23008,148 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(insideBundleUrl:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC15insideBundleUrlAC10Foundation3URLV_tcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC15insideBundleUrlAC10Foundation3URLV_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(withNameAtDocumentDirectory:folderName:)", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE0ACSS_SStcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE0ACSS_SStcfc", + "usr": "s:9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "Required", "RawDocComment" ], "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(withNameAtDocumentDirectory:folderName:encryption:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE010encryptionACSS_SSAA5ZTAESVtcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE010encryptionACSS_SSAA5ZTAESVtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "Convenience", + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Convenience" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit9ZTServiceC", + "mangledName": "$s9ZTCoreKit9ZTServiceC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DataConvertible", + "printedName": "DataConvertible", + "children": [ { "kind": "Function", - "name": "delete", - "printedName": "delete(_:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTPlist?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6deleteyyACSgzFZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC6deleteyyACSgzFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "asCollection", - "printedName": "asCollection()", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[(key: Any, value: Any)]", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: Any, value: Any)", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ] - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC12asCollectionSayyp3key_yp5valuetGyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC12asCollectionSayyp3key_yp5valuetGyF", + "usr": "s:9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "set", - "printedName": "set(_:for:)", + "name": "+=", + "printedName": "+=(_:_:)", "children": [ { "kind": "TypeNominal", @@ -25536,94 +23158,68 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3set_3foryypSg_SStF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3set_3foryypSg_SStF", + "usr": "s:9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "get", - "printedName": "get(_:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3getyypSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3getyypSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clean", - "printedName": "clean()", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5cleanyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cleanyyF", + "usr": "s:9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "remove", - "printedName": "remove(_:)", + "name": "+=", + "printedName": "+=(_:_:)", "children": [ { "kind": "TypeNominal", @@ -25632,227 +23228,346 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6removeyySSd_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6removeyySSd_tF", + "usr": "s:9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUPeripheralSelector", + "printedName": "DFUPeripheralSelector", + "children": [ { "kind": "Function", - "name": "remove", - "printedName": "remove(keys:)", + "name": "select", + "printedName": "select(_:advertisementData:RSSI:hint:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : AnyObject]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6remove4keysySaySSG_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6remove4keysySaySSG_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "bool", - "printedName": "bool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4boolySbSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4boolySbSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "int", - "printedName": "int(_:)", - "children": [ + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3intySiSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3intySiSgSSF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)select:advertisementData:RSSI:hint:", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "select:advertisementData:RSSI:hint:", "declAttributes": [ - "RawDocComment" + "ObjC", + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "double", - "printedName": "double(_:)", + "name": "filterBy", + "printedName": "filterBy(hint:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6doubleySdSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6doubleySdSgSSF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)filterByHint:", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC8filterBy4hintSaySo6CBUUIDCGSgAG_tF", "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "filterByHint:", "declAttributes": [ - "RawDocComment" + "ObjC", + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "float", - "printedName": "float(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUPeripheralSelector", + "printedName": "ZTCoreKit.DFUPeripheralSelector", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5floatySfSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5floatySfSgSSF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)init", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", "declAttributes": [ - "RawDocComment" + "Dynamic", + "ObjC", + "Override" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Starscream", + "printedName": "Starscream", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTControlPointDfuCharacteristic", + "printedName": "ZTControlPointDfuCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -25860,740 +23575,611 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6stringySSSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6stringySSSgSSF", + "declKind": "Var", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "dictionary", - "printedName": "dictionary(_:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionaryySDySSypGSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionaryySDySSypGSgSSF", + "declKind": "Var", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "collection", - "printedName": "collection(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC10collectionySayypGSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC10collectionySayypGSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "date", - "printedName": "date(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "ZTControlPointDfuCharacteristic", + "printedName": "ZTCoreKit.ZTControlPointDfuCharacteristic", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4datey10Foundation4DateVSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4datey10Foundation4DateVSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "data", - "printedName": "data(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4datay10Foundation4DataVSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4datay10Foundation4DataVSgSSF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ + "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "null", - "printedName": "null(_:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4nullyySSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nullyySSF", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ + "AccessControl", + "Override", "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTBleManager", + "printedName": "ZTBleManager", + "children": [ { - "kind": "TypeDecl", - "name": "Error", - "printedName": "Error", + "kind": "Var", + "name": "advertisingServices", + "printedName": "advertisingServices", "children": [ { - "kind": "Var", - "name": "notFound", - "printedName": "notFound", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO8notFoundyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO8notFoundyAE10Foundation3URLVSg_tcAEmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "deleted", - "printedName": "deleted", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO7deletedyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO7deletedyAE10Foundation3URLVSg_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "parse", - "printedName": "parse", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO5parseyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO5parseyAE10Foundation3URLVSg_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "filemanagerRemove", - "printedName": "filemanagerRemove", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (any Swift.Error) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(any Swift.Error) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(with: any Swift.Error)", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO17filemanagerRemoveyAEsAD_p_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO17filemanagerRemoveyAEsAD_p_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "managerState", + "printedName": "managerState", + "children": [ { - "kind": "Var", - "name": "aesKeyFail", - "printedName": "aesKeyFail", + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: Swift.String)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10aesKeyFailyAESS_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10aesKeyFailyAESS_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "aesInitialVectorFail", - "printedName": "aesInitialVectorFail", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(iv: Swift.String)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO20aesInitialVectorFailyAESS_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO20aesInitialVectorFailyAESS_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "aesCryptFail", - "printedName": "aesCryptFail", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.Int32) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(status: Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO12aesCryptFailyAEs5Int32V_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO12aesCryptFailyAEs5Int32V_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ { - "kind": "Var", - "name": "noData", - "printedName": "noData", + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO6noDatayA2EmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO6noDatayA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvgZ", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvgZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "centralManager", + "printedName": "centralManager", + "children": [ { - "kind": "Var", - "name": "stringNotInUtf8", - "printedName": "stringNotInUtf8", + "kind": "TypeNominal", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "ZTCBCentralManagerProtocol", + "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] + "name": "ZTCBCentralManagerProtocol", + "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO15stringNotInUtf8yA2EmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO15stringNotInUtf8yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macAddress", + "printedName": "macAddress", + "children": [ { - "kind": "Var", - "name": "identifier", - "printedName": "identifier", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -26602,67 +24188,23 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvpZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvgZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "raise", - "printedName": "raise()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO5raiseyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO5raiseyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -26679,179 +24221,194 @@ "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInfo", + "printedName": "deviceInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Function", - "name": "encrypt", - "printedName": "encrypt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC7encrypty10Foundation4DataVSgypSgF", - "mangledName": "$s9ZTCoreKit7ZTPlistC7encrypty10Foundation4DataVSgypSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decrypt", - "printedName": "decrypt(_:)", + "kind": "Var", + "name": "serviceTypes", + "printedName": "serviceTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC7decrypty10Foundation4DataVSgAHF", - "mangledName": "$s9ZTCoreKit7ZTPlistC7decrypty10Foundation4DataVSgAHF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDictionary", - "printedName": "decryptedDictionary(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", "children": [ { "kind": "TypeNominal", @@ -26861,392 +24418,377 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "usr": "s:SD" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "product", + "printedName": "product", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC19decryptedDictionary0D4DataSDySSypGSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC19decryptedDictionary0D4DataSDySSypGSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedCollection", - "printedName": "decryptedCollection(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC19decryptedCollection0D4DataSayypGSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC19decryptedCollection0D4DataSayypGSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedString", - "printedName": "decryptedString(decryptedData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC15decryptedString0D4DataSSSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC15decryptedString0D4DataSSSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decryptedBool", - "printedName": "decryptedBool(decryptedData:)", + "kind": "Var", + "name": "connectedDevice", + "printedName": "connectedDevice", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTDevice?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC13decryptedBool0D4DataSbSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC13decryptedBool0D4DataSbSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedInt", - "printedName": "decryptedInt(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "usr": "s:Sq" + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC12decryptedInt0D4DataSiSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC12decryptedInt0D4DataSiSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decryptedFloat", - "printedName": "decryptedFloat(decryptedData:)", + "kind": "Var", + "name": "foundPeripherals", + "printedName": "foundPeripherals", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "[CoreBluetooth.CBPeripheral]?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC14decryptedFloat0D4DataSfSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC14decryptedFloat0D4DataSfSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDouble", - "printedName": "decryptedDouble(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ImplicitlyUnwrappedOptional", + "printedName": "[CoreBluetooth.CBPeripheral]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scanning", + "printedName": "scanning", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC15decryptedDouble0D4DataSdSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC15decryptedDouble0D4DataSdSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDate", - "printedName": "decryptedDate(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "usr": "s:Sq" + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC13decryptedDate0D4Data10Foundation0E0VSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC13decryptedDate0D4Data10Foundation0E0VSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit7ZTPlistC", - "mangledName": "$s9ZTCoreKit7ZTPlistC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCommand", - "printedName": "ZTCommand", - "children": [ + ] + }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "isDfuMode", + "printedName": "isDfuMode", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", + "SetterAccess", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -27255,1285 +24797,1307 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "generalState", - "printedName": "generalState", + "name": "onBluetoothStateChange", + "printedName": "onBluetoothStateChange", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12generalStateyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12generalStateyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "startNewActivity", - "printedName": "startNewActivity", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "stopNewActivity", - "printedName": "stopNewActivity", + "name": "onDeviceStateChange", + "printedName": "onDeviceStateChange", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "resendData", - "printedName": "resendData", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10resendDatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10resendDatayA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "deepSleep", - "printedName": "deepSleep", + "name": "onDeviceDiscovered", + "printedName": "onDeviceDiscovered", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "reboot", - "printedName": "reboot", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO6rebootyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO6rebootyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "detailedBattery", - "printedName": "detailedBattery", + "name": "onDeviceConnectionFailed", + "printedName": "onDeviceConnectionFailed", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "hardwareInformation", - "printedName": "hardwareInformation", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "firmwareInformation", - "printedName": "firmwareInformation", + "name": "onScanFinished", + "printedName": "onScanFinished", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "bootloaderVersion", - "printedName": "bootloaderVersion", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setInactivityTimeout", - "printedName": "setInactivityTimeout", + "name": "onReconnectFailed", + "printedName": "onReconnectFailed", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setDFUInstall", - "printedName": "setDFUInstall", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setDFUMode", - "printedName": "setDFUMode", + "name": "onGeneralStateUpdated", + "printedName": "onGeneralStateUpdated", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setChunkConfig", - "printedName": "setChunkConfig", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setChunkMinutesInterval", - "printedName": "setChunkMinutesInterval", + "name": "onCommandAck", + "printedName": "onCommandAck", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setChunkSecondsInterval", - "printedName": "setChunkSecondsInterval", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "selectAlgorithm", - "printedName": "selectAlgorithm", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager(im)init", + "mangledName": "$s9ZTCoreKit12ZTBleManagerCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", "declAttributes": [ - "RawDocComment" - ] + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "freeMemory", - "printedName": "freeMemory", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:willRestoreState:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:willRestoreState:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16willRestoreStateySo09CBCentralD0C_SDySSypGtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:willRestoreState:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "getTimestamp", - "printedName": "getTimestamp", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:connectionEventDidOccur:for:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBConnectionEvent", + "printedName": "CoreBluetooth.CBConnectionEvent", + "usr": "c:@E@CBConnectionEvent" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:connectionEventDidOccur:forPeripheral:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23connectionEventDidOccur3forySo09CBCentralD0C_So012CBConnectionG0VSo12CBPeripheralCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:connectionEventDidOccur:forPeripheral:", "declAttributes": [ - "RawDocComment" - ] + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "passthroughAlgo", - "printedName": "passthroughAlgo", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didDiscover:advertisementData:rssi:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDiscoverPeripheral:advertisementData:RSSI:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_11didDiscover17advertisementData4rssiySo09CBCentralD0C_So12CBPeripheralCSDySSypGSo8NSNumberCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didDiscoverPeripheral:advertisementData:RSSI:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "resetActivity", - "printedName": "resetActivity", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didFailToConnect:error:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didFailToConnectPeripheral:error:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16didFailToConnect5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didFailToConnectPeripheral:error:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "getActivityMetadata", - "printedName": "getActivityMetadata", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didConnect:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didConnectPeripheral:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_10didConnectySo09CBCentralD0C_So12CBPeripheralCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didConnectPeripheral:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "disableHeating", - "printedName": "disableHeating", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didDisconnectPeripheral:error:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setHeating", - "printedName": "setHeating", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDisconnectPeripheral:error:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23didDisconnectPeripheral5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didDisconnectPeripheral:error:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "setTimer", - "printedName": "setTimer", + "kind": "Function", + "name": "centralManagerDidUpdateState", + "printedName": "centralManagerDidUpdateState(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO8setTimeryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManagerDidUpdateState:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD14DidUpdateStateyySo09CBCentralD0CF", "moduleName": "ZTCoreKit", + "objc_name": "centralManagerDidUpdateState:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "getTemperature", - "printedName": "getTemperature", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Var", - "name": "getTimer", - "printedName": "getTimer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO8getTimeryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO8getTimeryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPairedDevice", + "printedName": "ZTPairedDevice", + "children": [ { "kind": "Var", - "name": "startPostureCalibration", - "printedName": "startPostureCalibration", + "name": "macAddress", + "printedName": "macAddress", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setUserParameters", - "printedName": "setUserParameters", - "children": [ + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "resetCalibration", - "printedName": "resetCalibration", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTPairedDevice", + "printedName": "ZTCoreKit.ZTPairedDevice", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "getCalibrationState", - "printedName": "getCalibrationState", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUStreamHexError", + "printedName": "DFUStreamHexError", + "children": [ { "kind": "Var", - "name": "rawDataSend", - "printedName": "rawDataSend", + "name": "invalidHexFile", + "printedName": "invalidHexFile", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamHexError.Type) -> ZTCoreKit.DFUStreamHexError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamHexError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" } ] } @@ -28541,239 +26105,237 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, { - "kind": "Var", - "name": "rawDataEnable", - "printedName": "rawDataEnable", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "rawDataLookup", - "printedName": "rawDataLookup", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "rawDataDebug", - "printedName": "rawDataDebug", - "children": [ + "implicit": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "calibrateStatic", - "printedName": "calibrateStatic", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTScannerResult", + "printedName": "ZTScannerResult", + "children": [ { "kind": "Var", - "name": "clearCalibrateStatic", - "printedName": "clearCalibrateStatic", + "name": "success", + "printedName": "success", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> (ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(device: ZTCoreKit.ZTDevice)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ] } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "cancelCalibrateStatic", - "printedName": "cancelCalibrateStatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28781,8 +26343,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -28790,30 +26352,30 @@ }, { "kind": "Var", - "name": "getCalibrateStaticMessage", - "printedName": "getCalibrateStaticMessage", + "name": "cancelled", + "printedName": "cancelled", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28821,8 +26383,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -28830,70 +26392,51 @@ }, { "kind": "Var", - "name": "getCalibrateStaticData", - "printedName": "getCalibrateStaticData", + "name": "failed", + "printedName": "failed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "testCalibrateStatic", - "printedName": "testCalibrateStatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28901,199 +26444,910 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] - }, + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit15ZTScannerResultO", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ { - "kind": "Var", - "name": "memsConfig", - "printedName": "memsConfig", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Var", - "name": "updateTxPower", - "printedName": "updateTxPower", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPrimaryOldService", + "printedName": "ZTPrimaryOldService", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "Final", + "AccessControl", "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } ] }, { "kind": "Var", - "name": "updatePhy", - "printedName": "updatePhy", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ] } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "disconnect", - "printedName": "disconnect", - "children": [ + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } - ] + ], + "usr": "s:SD" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(device:service:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPrimaryOldService", + "printedName": "ZTCoreKit.ZTPrimaryOldService", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10disconnectyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTService" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUStreamZipError", + "printedName": "DFUStreamZipError", + "children": [ { "kind": "Var", - "name": "startDFURight", - "printedName": "startDFURight", + "name": "noManifest", + "printedName": "noManifest", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29101,8 +27355,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29110,30 +27364,30 @@ }, { "kind": "Var", - "name": "startDFULeft", - "printedName": "startDFULeft", + "name": "invalidManifest", + "printedName": "invalidManifest", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29141,8 +27395,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29150,30 +27404,30 @@ }, { "kind": "Var", - "name": "enablePeerConnection", - "printedName": "enablePeerConnection", + "name": "fileNotFound", + "printedName": "fileNotFound", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29181,8 +27435,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29190,30 +27444,30 @@ }, { "kind": "Var", - "name": "factoryReset", - "printedName": "factoryReset", + "name": "typeNotFound", + "printedName": "typeNotFound", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29221,32 +27475,62 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvp", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -29255,117 +27539,73 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvg", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", - "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -29374,39 +27614,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", - "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTCommandO", - "mangledName": "$s9ZTCoreKit9ZTCommandO", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -29424,199 +27662,24 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, { "kind": "Conformance", - "name": "Identifiable", - "printedName": "Identifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "ID", - "printedName": "ID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:s12IdentifiableP", - "mangledName": "$ss12IdentifiableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCustomDateFormatTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(formatString:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dateFormatter:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" - }, - { - "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "superclassNames": [ - "ZTCoreKit.ZTDateFormatterTransform" - ], - "conformances": [ { "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" } ] }, @@ -29630,22 +27693,15 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTMultipartFormData", - "printedName": "ZTMultipartFormData", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTFirmwareCharacteristic", "children": [ { "kind": "Var", - "name": "contentType", - "printedName": "contentType", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -29655,15 +27711,19 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvp", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvp", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Lazy", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -29678,122 +27738,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvg", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvs", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvs", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvM", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCommandResponse", - "printedName": "ZTCommandResponse", - "children": [ + }, { "kind": "Var", - "name": "bytes", - "printedName": "bytes", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -29805,315 +27789,162 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "rightModule", - "printedName": "rightModule", + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ "AccessControl", - "RawDocComment" + "Override" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "leftModule", - "printedName": "leftModule", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "command", - "printedName": "command", - "children": [ + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Required" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTCommandResponseC", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTCommandStatus", - "printedName": "ZTCommandStatus", + "name": "ZTPassthroughAlgo", + "printedName": "ZTPassthroughAlgo", "children": [ { "kind": "Var", - "name": "success", - "printedName": "success", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(id: ZTCoreKit.ZTAlgoStatus)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30121,8 +27952,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO7successyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30130,30 +27961,30 @@ }, { "kind": "Var", - "name": "busy", - "printedName": "busy", + "name": "startNewChunk", + "printedName": "startNewChunk", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30161,8 +27992,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30170,30 +28001,50 @@ }, { "kind": "Var", - "name": "invalidParam", - "printedName": "invalidParam", + "name": "changeProductMode", + "printedName": "changeProductMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(mode: ZTCoreKit.ZTAlgoMode)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30201,8 +28052,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30210,30 +28061,50 @@ }, { "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", + "name": "setPrecisionMode", + "printedName": "setPrecisionMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(mode: ZTCoreKit.ZTAlgoPrecisionMode)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30241,8 +28112,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30250,30 +28121,56 @@ }, { "kind": "Var", - "name": "forbidden", - "printedName": "forbidden", + "name": "setMinimumStepsForAnalysis", + "printedName": "setMinimumStepsForAnalysis", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30281,8 +28178,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30290,30 +28187,56 @@ }, { "kind": "Var", - "name": "notSupported", - "printedName": "notSupported", + "name": "setMinimumStridesForAnalysis", + "printedName": "setMinimumStridesForAnalysis", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30321,8 +28244,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30330,70 +28253,62 @@ }, { "kind": "Var", - "name": "unknownCommand", - "printedName": "unknownCommand", + "name": "setStreamingMode", + "printedName": "setStreamingMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "commandInProgress", - "printedName": "commandInProgress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30401,8 +28316,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30410,59 +28325,27 @@ }, { "kind": "Var", - "name": "noPeerresponse", - "printedName": "noPeerresponse", + "name": "parameters", + "printedName": "parameters", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -30475,14 +28358,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -30491,121 +28382,83 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, + "throwing": true, "init_kind": "Designated" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "throwing": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit15ZTCommandStatusO", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -30620,45 +28473,52 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTDefaults", - "printedName": "ZTDefaults", - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTDefaultsC", - "mangledName": "$s9ZTCoreKit10ZTDefaultsC", + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTDefaultsKey", - "printedName": "ZTDefaultsKey", + "name": "DFUFirmwareSize", + "printedName": "DFUFirmwareSize", "children": [ { "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", + "name": "softdevice", + "printedName": "softdevice", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)softdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvp", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", - "AccessControl" + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30668,154 +28528,47 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)softdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, + "isOpen": true, "declAttributes": [ - "Final" + "ObjC" ], "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit10ZTDefaultsC", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTDefaults" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTManufacturerNameCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "bootloader", + "printedName": "bootloader", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)bootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvp", "moduleName": "ZTCoreKit", - "static": true, + "isOpen": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", + "SetterAccess", "AccessControl", + "ObjC", "RawDocComment" ], "hasStorage": true, @@ -30827,104 +28580,48 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)bootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, + "isOpen": true, "declAttributes": [ - "Final" + "ObjC" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "application", + "printedName": "application", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)application", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvp", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ "HasInitialValue", "HasStorage", "SetterAccess", - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -30935,108 +28632,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)application", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvg", "moduleName": "ZTCoreKit", "implicit": true, "isOpen": true, + "declAttributes": [ + "ObjC" + ], "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, { "kind": "Constructor", "name": "init", - "printedName": "init(service:characteristic:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)init", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeCACycfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, + "objc_name": "init", "declAttributes": [ - "Required" + "Dynamic", + "ObjC", + "Override" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -31045,11 +28756,12 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ + "ImplementationOnly", "RawDocComment" ] }, @@ -31063,40 +28775,39 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTDevice", - "printedName": "ZTDevice", + "name": "ZTMessageChunkConfig", + "printedName": "ZTMessageChunkConfig", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "byte0", + "printedName": "byte0", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31105,94 +28816,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "peripheral", - "printedName": "peripheral", + "name": "byte1", + "printedName": "byte1", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "CoreBluetooth.CBPeripheral?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31202,59 +28874,130 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "CoreBluetooth.CBPeripheral?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "cbPeripheral", - "printedName": "cbPeripheral", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31263,48 +29006,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", + "name": "flag", + "printedName": "flag", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31313,47 +29045,40 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31362,390 +29087,646 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Var", - "name": "qrCode", - "printedName": "qrCode", - "children": [ - { + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LegacyDFUServiceInitiator", + "printedName": "LegacyDFUServiceInitiator", + "children": [ + { + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", + "children": [ + { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "startWithTargetWithIdentifier:", "declAttributes": [ + "ObjC", + "Override", "AccessControl" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rssi", - "printedName": "rssi", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "LegacyDFUServiceInitiator", + "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivp", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", "moduleName": "ZTCoreKit", + "deprecated": true, + "overriding": true, + "implicit": true, + "objc_name": "initWithCentralManager:target:", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "ObjC", + "Override", + "Available" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Var", - "name": "macAddressRight", - "printedName": "macAddressRight", + "kind": "Constructor", + "name": "init", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ + { + "kind": "TypeNominal", + "name": "LegacyDFUServiceInitiator", + "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.DFUServiceInitiator", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityLastStopReason", + "printedName": "ZTActivityLastStopReason", + "children": [ + { + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "macAddressLeft", - "printedName": "macAddressLeft", + "name": "userRequest", + "printedName": "userRequest", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "memoryFull", + "printedName": "memoryFull", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "inactivity", + "printedName": "inactivity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "advertisementData", - "printedName": "advertisementData", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTModelNumberCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -31759,37 +29740,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -31804,37 +29768,20 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -31849,44 +29796,48 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "manufacturer", - "printedName": "manufacturer", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ "HasInitialValue", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -31898,59 +29849,139 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "isOpen": true, "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "isOpen": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "children": [ { "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31959,60 +29990,52 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareRevision?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32021,60 +30044,73 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareRevision?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32083,48 +30119,74 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -32133,39 +30195,93 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService, τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, "accessorKind": "get" } ] - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMapContext", + "printedName": "ZTMapContext", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit12ZTMapContextP", + "mangledName": "$s9ZTCoreKit12ZTMapContextP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMap", + "printedName": "ZTMap", + "children": [ { "kind": "Var", - "name": "isConnected", - "printedName": "isConnected", + "name": "mappingType", + "printedName": "mappingType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvp", + "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "HasStorage", + "AccessControl" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32174,39 +30290,60 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "isActivityRunning", - "printedName": "isActivityRunning", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvp", + "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32215,23 +30352,40 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvg", + "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "isDeviceReady", - "printedName": "isDeviceReady", + "name": "isKeyPresent", + "printedName": "isKeyPresent", "children": [ { "kind": "TypeNominal", @@ -32241,13 +30395,17 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", + "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32262,42 +30420,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "info", - "printedName": "info", + "name": "currentValue", + "printedName": "currentValue", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32309,107 +30471,59 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "batterylevel", - "printedName": "batterylevel", + "name": "currentKey", + "printedName": "currentKey", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", + "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32421,49 +30535,52 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", + "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastActivityDate", - "printedName": "lastActivityDate", + "name": "nestedKeyDelimiter", + "printedName": "nestedKeyDelimiter", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", + "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", + "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32474,49 +30591,52 @@ "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", + "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", + "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "generalState", - "printedName": "generalState", + "name": "context", + "printedName": "context", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32528,23 +30648,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -32560,23 +30683,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -32591,64 +30717,38 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "softwareInfo", - "printedName": "softwareInfo", + "name": "shouldIncludeNilValues", + "printedName": "shouldIncludeNilValues", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32659,45 +30759,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -32712,45 +30786,19 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -32765,34 +30813,41 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "lowSoftwareInfo", - "printedName": "lowSoftwareInfo", + "name": "toObject", + "printedName": "toObject", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", + "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32801,50 +30856,126 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", + "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "activityInfo", - "printedName": "activityInfo", + "kind": "Constructor", + "name": "init", + "printedName": "init(mappingType:JSON:toObject:context:shouldIncludeNilValues:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], + "hasDefaultArg": true, "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapCyACSScip", + "mangledName": "$s9ZTCoreKit5ZTMapCyACSScip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -32853,130 +30984,202 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", + "usr": "s:9ZTCoreKit5ZTMapCyACSScig", + "mangledName": "$s9ZTCoreKit5ZTMapCyACSScig", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:delimiter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "bootloaderInfo", - "printedName": "bootloaderInfo", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:delimiter:)", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32985,151 +31188,72 @@ "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "inactivityTimeout", - "printedName": "inactivityTimeout", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33138,188 +31262,72 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "actualState", - "printedName": "actualState", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:delimiter:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "previousState", - "printedName": "previousState", - "children": [ + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33328,67 +31336,63 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "hasInitialUpdate", - "printedName": "hasInitialUpdate", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:ignoreNil:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Bool", @@ -33396,13 +31400,13 @@ "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], "accessors": [ { @@ -33410,6 +31414,24 @@ "name": "Get", "printedName": "Get()", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Bool", @@ -33418,75 +31440,68 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "onStateChanged", - "printedName": "onStateChanged", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:delimiter:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33495,53 +31510,47 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ "Final" ], @@ -33550,2904 +31559,2489 @@ ] }, { - "kind": "Var", - "name": "onRSSIChanged", - "printedName": "onRSSIChanged", + "kind": "Function", + "name": "value", + "printedName": "value()", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5valuexSgylF", + "mangledName": "$s9ZTCoreKit5ZTMapC5valuexSgylF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onServiceDiscovered", - "printedName": "onServiceDiscovered", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:using:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onServiceFeaturesIdentified", - "printedName": "onServiceFeaturesIdentified", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onCharacteristicDiscovered", - "printedName": "onCharacteristicDiscovered", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onAllCharacteristicsDiscovered", - "printedName": "onAllCharacteristicsDiscovered", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onAllCharacteristicsRead", - "printedName": "onAllCharacteristicsRead", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onCharacteristicValueUpdated", - "printedName": "onCharacteristicValueUpdated", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onCharacteristicValueWritten", - "printedName": "onCharacteristicValueWritten", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onCommandCharacteristicDiscovered", - "printedName": "onCommandCharacteristicDiscovered", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyValueUpdated", - "printedName": "onNotifyValueUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onBatteryValueUpdated", - "printedName": "onBatteryValueUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onGeneralStateUpdated", - "printedName": "onGeneralStateUpdated", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onActivityInfoUpdated", - "printedName": "onActivityInfoUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onSoftwareUpdated", - "printedName": "onSoftwareUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onTimeUpdated", - "printedName": "onTimeUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageTime?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageTime?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onActivityMetadataUpdated", - "printedName": "onActivityMetadataUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onRawDataHeaderUpdated", - "printedName": "onRawDataHeaderUpdated", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onRawDataFrameUpdated", - "printedName": "onRawDataFrameUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onInactivityTimeoutUpdated", - "printedName": "onInactivityTimeoutUpdated", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onFirmwareError", - "printedName": "onFirmwareError", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyCommonGroupUpdated", - "printedName": "onNotifyCommonGroupUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyWarmGroupUpdated", - "printedName": "onNotifyWarmGroupUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit5ZTMapC", + "mangledName": "$s9ZTCoreKit5ZTMapC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "ZIPFoundation", + "printedName": "ZIPFoundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityType", + "printedName": "ZTActivityType", + "children": [ + { + "kind": "Var", + "name": "staticType", + "printedName": "staticType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyRunningGroupUpdated", - "printedName": "onNotifyRunningGroupUpdated", + "name": "dynamic", + "printedName": "dynamic", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walking", + "printedName": "walking", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyCyclingGroupUpdated", - "printedName": "onNotifyCyclingGroupUpdated", + "name": "running", + "printedName": "running", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cycling", + "printedName": "cycling", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifySafetyGroupUpdated", - "printedName": "onNotifySafetyGroupUpdated", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsUp", + "printedName": "stairsUp", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyGenericGroupUpdated", - "printedName": "onNotifyGenericGroupUpdated", + "name": "stairsDown", + "printedName": "stairsDown", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "staticOther", + "printedName": "staticOther", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onCommandUpdated", - "printedName": "onCommandUpdated", + "name": "kneel", + "printedName": "kneel", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "tiptoe", + "printedName": "tiptoe", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onCommandAck", - "printedName": "onCommandAck", + "name": "vibration", + "printedName": "vibration", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onIndicateValueUpdated", - "printedName": "onIndicateValueUpdated", + "name": "trampling", + "printedName": "trampling", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "crawling", + "printedName": "crawling", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onBootloaderInfoUpdated", - "printedName": "onBootloaderInfoUpdated", + "name": "dynamicOther", + "printedName": "dynamicOther", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "slip", + "printedName": "slip", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyChunkSendStatusUpdated", - "printedName": "onNotifyChunkSendStatusUpdated", + "name": "trip", + "printedName": "trip", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "active", + "printedName": "active", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyChunkConfigUpdated", - "printedName": "onNotifyChunkConfigUpdated", + "name": "inactive", + "printedName": "inactive", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "onNotifyChunkDataUpdated", - "printedName": "onNotifyChunkDataUpdated", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -36456,447 +34050,628 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTActivityTypeO", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(peripheral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(cbPeripheral:)", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Function", - "name": "connect", - "printedName": "connect()", + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTTXPower", + "printedName": "ZTTXPower", + "children": [ + { + "kind": "Var", + "name": "dBm0", + "printedName": "dBm0", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC7connectyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC7connectyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "disconnect", - "printedName": "disconnect()", + "kind": "Var", + "name": "dBm2", + "printedName": "dBm2", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC10disconnectyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10disconnectyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "observeValue", - "printedName": "observeValue(forKeyPath:of:change:context:)", + "kind": "Var", + "name": "dBm3", + "printedName": "dBm3", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dBm4", + "printedName": "dBm4", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", "children": [ { "kind": "TypeNominal", - "name": "NSKeyValueChangeKey", - "printedName": "Foundation.NSKeyValueChangeKey", - "usr": "c:@T@NSKeyValueChangeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" } - ], - "usr": "s:SD" + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dBm5", + "printedName": "dBm5", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UnsafeMutableRawPointer?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "UnsafeMutableRawPointer", - "printedName": "Swift.UnsafeMutableRawPointer", - "usr": "s:Sv" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)observeValueForKeyPath:ofObject:change:context:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeye6ChangeG0aypGSgSvSgtF", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "observeValueForKeyPath:ofObject:change:context:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "service", - "printedName": "service(_:)", + "kind": "Var", + "name": "dBm6", + "printedName": "dBm6", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "checkBattery", - "printedName": "checkBattery(completion:)", + "kind": "Var", + "name": "dBm7", + "printedName": "dBm7", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool) -> ()", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" } ] } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "readGeneralState", - "printedName": "readGeneralState()", + "kind": "Var", + "name": "dBm8", + "printedName": "dBm8", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Optional", + "printedName": "ZTCoreKit.ZTTXPower?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)init", - "mangledName": "$s9ZTCoreKit8ZTDeviceCACycfc", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "overriding": true, "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit9ZTTXPowerO", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTBatteryCharacteristic", + "printedName": "ZTBatteryCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "isLowBattery", - "printedName": "isLowBattery", + "name": "batteryLevel", + "printedName": "batteryLevel", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36906,1445 +34681,1516 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didWriteValueFor:error:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTBatteryCharacteristic", + "printedName": "ZTCoreKit.ZTBatteryCharacteristic", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC" }, { "kind": "TypeNominal", - "name": "CBDescriptor", - "printedName": "CoreBluetooth.CBDescriptor", - "usr": "c:objc(cs)CBDescriptor" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForDescriptor:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didWriteValueForDescriptor:error:", + "overriding": true, "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverServices:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverServices:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_19didDiscoverServicesySo12CBPeripheralC_s5Error_pSgtF", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverServices:", + "overriding": true, "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl", + "Override", "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTInformationService", + "printedName": "ZTInformationService", + "children": [ { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverCharacteristicsFor:error:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverCharacteristicsForService:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didDiscoverCharacteristicsFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverCharacteristicsForService:error:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", + "Final", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateValueFor:error:)", + "kind": "Var", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateValueForCharacteristic:error:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didWriteValueFor:error:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "manufacturerName", + "printedName": "manufacturerName", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didWriteValueForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateNotificationStateFor:error:)", + "kind": "Var", + "name": "modelNumber", + "printedName": "modelNumber", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateNotificationStateForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didUpdateNotificationStateFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateNotificationStateForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didReadRSSI:error:)", + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didReadRSSI:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_11didReadRSSI5errorySo12CBPeripheralC_So8NSNumberCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didReadRSSI:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheralDidUpdateName", - "printedName": "peripheralDidUpdateName(_:)", + "kind": "Var", + "name": "firmwareRevision", + "printedName": "firmwareRevision", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralDidUpdateName:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23peripheralDidUpdateNameyySo12CBPeripheralCF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheralDidUpdateName:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didModifyServices:)", + "kind": "Var", + "name": "hardwareRevision", + "printedName": "hardwareRevision", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didModifyServices:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didModifyServicesySo12CBPeripheralC_SaySo9CBServiceCGtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didModifyServices:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverIncludedServicesFor:error:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTInformationService", + "printedName": "ZTCoreKit.ZTInformationService", + "usr": "s:9ZTCoreKit20ZTInformationServiceC" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", "name": "CBService", "printedName": "CoreBluetooth.CBService", "usr": "c:objc(cs)CBService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverIncludedServicesForService:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_30didDiscoverIncludedServicesFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverIncludedServicesForService:error:", + "overriding": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "Required" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTInformationServiceC", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTService" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverDescriptorsFor:error:)", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDeviceInfo", + "printedName": "ZTDeviceInfo", + "children": [ + { + "kind": "Var", + "name": "project", + "printedName": "project", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProjectCodeType?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverDescriptorsForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_25didDiscoverDescriptorsFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverDescriptorsForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProjectCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateValueFor:error:)", + "kind": "Var", + "name": "productCode", + "printedName": "productCode", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBDescriptor", - "printedName": "CoreBluetooth.CBDescriptor", - "usr": "c:objc(cs)CBDescriptor" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProductCodeType?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForDescriptor:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateValueForDescriptor:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheralIsReady", - "printedName": "peripheralIsReady(toSendWriteWithoutResponse:)", + "kind": "Var", + "name": "manufacturer", + "printedName": "manufacturer", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralIsReadyToSendWriteWithoutResponse:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17peripheralIsReady26toSendWriteWithoutResponseySo12CBPeripheralC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheralIsReadyToSendWriteWithoutResponse:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didOpen:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "CoreBluetooth.CBL2CAPChannel?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CBL2CAPChannel", - "printedName": "CoreBluetooth.CBL2CAPChannel", - "usr": "c:objc(cs)CBL2CAPChannel" + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "productType", + "printedName": "productType", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProductTypeCode?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didOpenL2CAPChannel:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_7didOpen5errorySo12CBPeripheralC_So14CBL2CAPChannelCSgs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didOpenL2CAPChannel:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCommand", - "printedName": "sendCommand(_:parameters:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductTypeCode?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hardwareVersion", + "printedName": "hardwareVersion", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "printedName": "Swift.Int8?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCommandWithAck", - "printedName": "sendCommandWithAck(command:parameters:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boardVersion", + "printedName": "boardVersion", + "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "sendCommandWithRightAck", - "printedName": "sendCommandWithRightAck(command:parameters:completion:)", + "kind": "Var", + "name": "testeur", + "printedName": "testeur", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.UInt8]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice", - "mangledName": "$s9ZTCoreKit8ZTDeviceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + ] }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Security", - "printedName": "Security", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTServerTrustManager", - "printedName": "ZTServerTrustManager", - "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTServerTrustManagerC", - "mangledName": "$s9ZTCoreKit20ZTServerTrustManagerC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTAlgoAcknowledgmentStatus", - "children": [ { "kind": "Var", - "name": "success", - "printedName": "success", + "name": "sizeRaw", + "printedName": "sizeRaw", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "busy", - "printedName": "busy", + "name": "year", + "printedName": "year", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "invalidParam", - "printedName": "invalidParam", + "name": "week", + "printedName": "week", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", + "name": "SN", + "printedName": "SN", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "fwResForbidden", - "printedName": "fwResForbidden", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] - } - ] - } + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notSupported", - "printedName": "notSupported", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "unknownCommand", - "printedName": "unknownCommand", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "commandInProgress", - "printedName": "commandInProgress", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noPeerResponse", - "printedName": "noPeerResponse", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "deviceIdentifier", + "printedName": "deviceIdentifier", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38353,314 +36199,156 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUStreamZipError", - "printedName": "DFUStreamZipError", - "children": [ - { - "kind": "Var", - "name": "noManifest", - "printedName": "noManifest", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "invalidManifest", - "printedName": "invalidManifest", + "name": "macAddressRight", + "printedName": "macAddressRight", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "fileNotFound", - "printedName": "fileNotFound", - "children": [ + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "typeNotFound", - "printedName": "typeNotFound", + "name": "macAddressLeft", + "printedName": "macAddressLeft", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38669,49 +36357,32 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", @@ -38729,13 +36400,16 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38758,109 +36432,39 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTBatteryCharacteristic", - "printedName": "ZTBatteryCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "size", + "printedName": "size", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -38869,56 +36473,53 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", + "name": "gender", + "printedName": "gender", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -38928,100 +36529,37 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBatteryCharacteristic", - "printedName": "ZTCoreKit.ZTBatteryCharacteristic", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] + "hasMissingDesignatedInitializers": true }, { "kind": "Import", @@ -39045,41 +36583,29 @@ }, { "kind": "TypeDecl", - "name": "ZTDeviceInfo", - "printedName": "ZTDeviceInfo", + "name": "ZTCommand", + "printedName": "ZTCommand", "children": [ { "kind": "Var", - "name": "project", - "printedName": "project", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", + "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39088,1179 +36614,1245 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "productCode", - "printedName": "productCode", + "name": "generalState", + "printedName": "generalState", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO12generalStateyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12generalStateyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "startNewActivity", + "printedName": "startNewActivity", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "manufacturer", - "printedName": "manufacturer", + "name": "stopNewActivity", + "printedName": "stopNewActivity", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "resendData", + "printedName": "resendData", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10resendDatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10resendDatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "productType", - "printedName": "productType", + "name": "deepSleep", + "printedName": "deepSleep", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "reboot", + "printedName": "reboot", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO6rebootyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO6rebootyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "hardwareVersion", - "printedName": "hardwareVersion", + "name": "detailedBattery", + "printedName": "detailedBattery", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "hardwareInformation", + "printedName": "hardwareInformation", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "boardVersion", - "printedName": "boardVersion", + "name": "firmwareInformation", + "printedName": "firmwareInformation", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "bootloaderVersion", + "printedName": "bootloaderVersion", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "testeur", - "printedName": "testeur", + "name": "setInactivityTimeout", + "printedName": "setInactivityTimeout", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setDFUInstall", + "printedName": "setDFUInstall", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "sizeRaw", - "printedName": "sizeRaw", + "name": "setDFUMode", + "printedName": "setDFUMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setChunkConfig", + "printedName": "setChunkConfig", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "year", - "printedName": "year", + "name": "setChunkMinutesInterval", + "printedName": "setChunkMinutesInterval", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setChunkSecondsInterval", + "printedName": "setChunkSecondsInterval", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "week", - "printedName": "week", + "name": "selectAlgorithm", + "printedName": "selectAlgorithm", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "freeMemory", + "printedName": "freeMemory", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "SN", - "printedName": "SN", + "name": "getTimestamp", + "printedName": "getTimestamp", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "passthroughAlgo", + "printedName": "passthroughAlgo", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", + "name": "resetActivity", + "printedName": "resetActivity", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "getActivityMetadata", + "printedName": "getActivityMetadata", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "deviceIdentifier", - "printedName": "deviceIdentifier", + "name": "disableHeating", + "printedName": "disableHeating", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddressRight", - "printedName": "macAddressRight", + "name": "setHeating", + "printedName": "setHeating", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setTimer", + "printedName": "setTimer", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddressLeft", - "printedName": "macAddressLeft", + "name": "getTemperature", + "printedName": "getTemperature", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "getTimer", + "printedName": "getTimer", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO8getTimeryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO8getTimeryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "code", - "printedName": "code", + "name": "startPostureCalibration", + "printedName": "startPostureCalibration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "size", - "printedName": "size", + "name": "setUserParameters", + "printedName": "setUserParameters", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "gender", - "printedName": "gender", + "name": "resetCalibration", + "printedName": "resetCalibration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProductType", - "printedName": "ZTProductType", - "children": [ + }, { "kind": "Var", - "name": "sports", - "printedName": "sports", + "name": "getCalibrationState", + "printedName": "getCalibrationState", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40268,36 +37860,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "warm", - "printedName": "warm", + "name": "rawDataSend", + "printedName": "rawDataSend", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40305,36 +37900,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO4warmyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO4warmyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "safety", - "printedName": "safety", + "name": "rawDataEnable", + "printedName": "rawDataEnable", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40342,36 +37940,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "podoSmart", - "printedName": "podoSmart", + "name": "rawDataLookup", + "printedName": "rawDataLookup", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40379,36 +37980,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "dfu", - "printedName": "dfu", + "name": "rawDataDebug", + "printedName": "rawDataDebug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40416,36 +38020,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "ztDfu", - "printedName": "ztDfu", + "name": "calibrateStatic", + "printedName": "calibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40453,36 +38060,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "baliston", - "printedName": "baliston", + "name": "clearCalibrateStatic", + "printedName": "clearCalibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40490,203 +38100,159 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvp", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvp", + "usr": "s:9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvg", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "cancelCalibrateStatic", + "printedName": "cancelCalibrateStatic", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "getCalibrateStaticMessage", + "printedName": "getCalibrateStaticMessage", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTProductTypeO", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "getCalibrateStaticData", + "printedName": "getCalibrateStaticData", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProjectCodeType", - "printedName": "ZTProjectCodeType", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Var", - "name": "zt1", - "printedName": "zt1", + "name": "testCalibrateStatic", + "printedName": "testCalibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40694,36 +38260,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt2", - "printedName": "zt2", + "name": "memsConfig", + "printedName": "memsConfig", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40731,36 +38300,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt3", - "printedName": "zt3", + "name": "updateTxPower", + "printedName": "updateTxPower", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40768,36 +38340,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt4", - "printedName": "zt4", + "name": "updatePhy", + "printedName": "updatePhy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40805,236 +38380,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProductCodeType", - "printedName": "ZTProductCodeType", - "children": [ - { - "kind": "Var", - "name": "WS", - "printedName": "WS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "WM", - "printedName": "WM", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", - "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "SP", - "printedName": "SP", + "name": "disconnect", + "printedName": "disconnect", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41042,36 +38420,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "SF", - "printedName": "SF", + "name": "startDFURight", + "printedName": "startDFURight", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41079,36 +38460,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "PS", - "printedName": "PS", + "name": "startDFULeft", + "printedName": "startDFULeft", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41116,36 +38500,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "SI", - "printedName": "SI", + "name": "enablePeerConnection", + "printedName": "enablePeerConnection", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41153,36 +38540,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "BA", - "printedName": "BA", + "name": "factoryReset", + "printedName": "factoryReset", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41190,14 +38580,17 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -41207,12 +38600,11 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -41228,8 +38620,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", + "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -41243,27 +38635,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -41275,14 +38667,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -41293,15 +38685,72 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", + "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, "accessorKind": "get" } @@ -41309,14 +38758,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO", + "usr": "s:9ZTCoreKit9ZTCommandO", + "mangledName": "$s9ZTCoreKit9ZTCommandO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -41344,601 +38793,515 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTManufacturerCodeType", - "printedName": "ZTManufacturerCodeType", - "children": [ - { - "kind": "Var", - "name": "a", - "printedName": "a", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "b", - "printedName": "b", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ] + ], + "usr": "s:Sa" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, { - "kind": "Var", - "name": "c", - "printedName": "c", + "kind": "Conformance", + "name": "Identifiable", + "printedName": "Identifiable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeWitness", + "name": "ID", + "printedName": "ID", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:s12IdentifiableP", + "mangledName": "$ss12IdentifiableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTImmutableMappable", + "printedName": "ZTImmutableMappable", + "children": [ { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "e", - "printedName": "e", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "f", - "printedName": "f", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" }, { - "kind": "Var", - "name": "z", - "printedName": "z", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSON:context:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "usr": "s:SD" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONObject:context:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit19ZTImmutableMappableP", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTProductTypeCode", - "printedName": "ZTProductTypeCode", + "name": "SecureDFUServiceInitiator", + "printedName": "SecureDFUServiceInitiator", "children": [ { - "kind": "Var", - "name": "ix", - "printedName": "ix", + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sx", - "printedName": "sx", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", + "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "startWithTargetWithIdentifier:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", - "moduleName": "ZTCoreKit" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "xx", - "printedName": "xx", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "SecureDFUServiceInitiator", + "printedName": "ZTCoreKit.SecureDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", + "moduleName": "ZTCoreKit", + "deprecated": true, + "overriding": true, + "implicit": true, + "objc_name": "initWithCentralManager:target:", + "declAttributes": [ + "ObjC", + "Override", + "Available" + ], + "init_kind": "Designated" }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ + { + "kind": "TypeNominal", + "name": "SecureDFUServiceInitiator", + "printedName": "ZTCoreKit.SecureDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "String", + "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.DFUServiceInitiator", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", @@ -41956,59 +39319,139 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPeriod", + "printedName": "ZTPeriod", + "children": [ + { + "kind": "Var", + "name": "day", + "printedName": "day", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPeriod.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTGenderCodeType", - "printedName": "ZTGenderCodeType", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPeriodO3dayyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO3dayyA2CmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "man", - "printedName": "man", + "name": "week", + "printedName": "week", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderCodeType.Type", + "printedName": "ZTCoreKit.ZTPeriod.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ] } @@ -42016,36 +39459,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", + "usr": "s:9ZTCoreKit8ZTPeriodO4weekyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO4weekyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "woman", - "printedName": "woman", + "name": "month", + "printedName": "month", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderCodeType.Type", + "printedName": "ZTCoreKit.ZTPeriod.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ] } @@ -42053,8 +39496,45 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", + "usr": "s:9ZTCoreKit8ZTPeriodO5monthyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO5monthyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "year", + "printedName": "year", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPeriod.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPeriodO4yearyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO4yearyA2CmF", "moduleName": "ZTCoreKit" }, { @@ -42065,13 +39545,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTGenderCodeType?", + "printedName": "ZTCoreKit.ZTPeriod?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ], "usr": "s:Sq" @@ -42084,8 +39564,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -42103,8 +39583,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -42121,8 +39601,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -42131,8 +39611,8 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO", + "usr": "s:9ZTCoreKit8ZTPeriodO", + "mangledName": "$s9ZTCoreKit8ZTPeriodO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -42178,1088 +39658,1412 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTGenderSizeCodeType", + "name": "ZTDateFormatterTransform", + "printedName": "ZTDateFormatterTransform", "children": [ { "kind": "Var", - "name": "a", - "printedName": "a", + "name": "dateFormatter", + "printedName": "dateFormatter", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "Final", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDateFormatterTransform", + "printedName": "ZTCoreKit.ZTDateFormatterTransform", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC" + }, + { + "kind": "TypeNominal", + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "b", - "printedName": "b", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "c", - "printedName": "c", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTSignal", + "printedName": "ZTSignal", + "children": [ { "kind": "Var", - "name": "e", - "printedName": "e", + "name": "fireCount", + "printedName": "fireCount", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivp", + "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivg", + "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "f", - "printedName": "f", + "name": "retainLastData", + "printedName": "retainLastData", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "g", - "printedName": "g", + "name": "lastDataFired", + "printedName": "lastDataFired", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "h", - "printedName": "h", + "name": "observers", + "printedName": "observers", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AnyObject]", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "i", - "printedName": "i", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "name": "Array", + "printedName": "[AnyObject]", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Var", - "name": "j", - "printedName": "j", + "kind": "Constructor", + "name": "init", + "printedName": "init(retainLastData:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "n", - "printedName": "n", + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "o", - "printedName": "o", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "p", - "printedName": "p", + "kind": "Function", + "name": "subscribeOnce", + "printedName": "subscribeOnce(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "q", - "printedName": "q", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "r", - "printedName": "r", + "kind": "Function", + "name": "subscribePast", + "printedName": "subscribePast(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "s", - "printedName": "s", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "t", - "printedName": "t", + "kind": "Function", + "name": "subscribePastOnce", + "printedName": "subscribePastOnce(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "u", - "printedName": "u", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "fire", + "printedName": "fire(_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC4fireyyxF", + "mangledName": "$s9ZTCoreKit8ZTSignalC4fireyyxF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "cancelSubscription", + "printedName": "cancelSubscription(for:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", + "mangledName": "$s9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelAllSubscriptions", + "printedName": "cancelAllSubscriptions()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", + "mangledName": "$s9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearLastData", + "printedName": "clearLastData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13clearLastDatayyF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13clearLastDatayyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "fire", + "printedName": "fire()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", + "mangledName": "$s9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 == ()>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTSignalC", + "mangledName": "$s9ZTCoreKit8ZTSignalC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Final", + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTUnitSizeCodeType", + "name": "ZTSignalSubscription", + "printedName": "ZTSignalSubscription", "children": [ { "kind": "Var", - "name": "a", - "printedName": "a", + "name": "observer", + "printedName": "observer", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "AnyObject?" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ReferenceOwnership", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Optional", + "printedName": "AnyObject?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "b", - "printedName": "b", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Optional", + "printedName": "AnyObject?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "c", - "printedName": "c", + "name": "once", + "printedName": "once", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Function", + "name": "filter", + "printedName": "filter(_:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(τ_0_0) -> Swift.Bool", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "e", - "printedName": "e", + "kind": "Function", + "name": "sample", + "printedName": "sample(every:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "f", - "printedName": "f", + "kind": "Function", + "name": "onQueue", + "printedName": "onQueue(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "n", - "printedName": "n", + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Final", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "OperatorDecl", + "name": "=>", + "printedName": "=>", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix" + ] + }, + { + "kind": "Function", + "name": "=>", + "printedName": "=>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "mangledName": "$s9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoMode", + "printedName": "ZTAlgoMode", + "children": [ { "kind": "Var", - "name": "o", - "printedName": "o", + "name": "monitoring", + "printedName": "monitoring", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "printedName": "ZTCoreKit.ZTAlgoMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ] } @@ -43267,36 +41071,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "p", - "printedName": "p", + "name": "gaming", + "printedName": "gaming", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "printedName": "ZTCoreKit.ZTAlgoMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ] } @@ -43304,46 +41108,65 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "usr": "s:9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "q", - "printedName": "q", + "name": "parameters", + "printedName": "parameters", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Constructor", @@ -43353,27 +41176,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType?", + "printedName": "ZTCoreKit.ZTAlgoMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -43385,14 +41208,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -43403,14 +41226,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -43419,14 +41242,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO", + "usr": "s:9ZTCoreKit10ZTAlgoModeO", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -43454,12402 +41277,1748 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "name": "DFUServiceInitiator", + "printedName": "DFUServiceInitiator", "children": [ { - "kind": "AssociatedType", - "name": "Object", - "printedName": "Object", - "declKind": "AssociatedType", - "usr": "s:9ZTCoreKit15ZTTransformTypeP6ObjectQa", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP6ObjectQa", - "moduleName": "ZTCoreKit", - "protocolReq": true - }, - { - "kind": "AssociatedType", - "name": "JSON", - "printedName": "JSON", - "declKind": "AssociatedType", - "usr": "s:9ZTCoreKit15ZTTransformTypeP4JSONQa", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP4JSONQa", - "moduleName": "ZTCoreKit", - "protocolReq": true - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)delegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUServiceDelegate", + "printedName": "any ZTCoreKit.DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)delegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.JSON?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.JSON" + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUServiceDelegate", + "printedName": "any ZTCoreKit.DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDelegate:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTError", - "printedName": "ZTError", - "children": [ + ] + }, { "kind": "Var", - "name": "scanning", - "printedName": "scanning", + "name": "progressDelegate", + "printedName": "progressDelegate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)progressDelegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.ScanningError)", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "DFUProgressDelegate", + "printedName": "any ZTCoreKit.DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "ble", - "printedName": "ble", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)progressDelegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.BleError)", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "DFUProgressDelegate", + "printedName": "any ZTCoreKit.DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setProgressDelegate:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.NetworkError)", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "store", - "printedName": "store", + "name": "logger", + "printedName": "logger", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.LoggerDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)logger", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.LoggerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.StoreError)", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] + "name": "LoggerDelegate", + "printedName": "any ZTCoreKit.LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" } - ] + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)logger", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.LoggerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "LoggerDelegate", + "printedName": "any ZTCoreKit.LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setLogger:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "custom", - "printedName": "custom", + "name": "peripheralSelector", + "printedName": "peripheralSelector", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(errorDescription: Swift.String?, error: (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)peripheralSelector", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)peripheralSelector", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPeripheralSelector:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "decoding", - "printedName": "decoding", + "name": "packetReceiptNotificationParameter", + "printedName": "packetReceiptNotificationParameter", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)packetReceiptNotificationParameter", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.DecodableError)", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)packetReceiptNotificationParameter", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPacketReceiptNotificationParameter:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "activity", - "printedName": "activity", + "name": "forceDfu", + "printedName": "forceDfu", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.ActivityError)", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dfu", - "printedName": "dfu", + "name": "forceScanningForNewAddressInLegacyDfu", + "printedName": "forceScanningForNewAddressInLegacyDfu", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceScanningForNewAddressInLegacyDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.DfuError)", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceScanningForNewAddressInLegacyDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceScanningForNewAddressInLegacyDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "TypeDecl", - "name": "Enums", - "printedName": "Enums", + "kind": "Var", + "name": "connectionTimeout", + "printedName": "connectionTimeout", "children": [ { - "kind": "TypeDecl", - "name": "ScanningError", - "printedName": "ScanningError", + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)connectionTimeout", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "cameraPermission", - "printedName": "cameraPermission", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongCode", - "printedName": "wrongCode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notLinkedUser", - "printedName": "notLinkedUser", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)connectionTimeout", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setConnectionTimeout:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvs", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataObjectPreparationDelay", + "printedName": "dataObjectPreparationDelay", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)dataObjectPreparationDelay", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)dataObjectPreparationDelay", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDataObjectPreparationDelay:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeDecl", - "name": "BleError", - "printedName": "BleError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "resetting", - "printedName": "resetting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "poweredOff", - "printedName": "poweredOff", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "timeout", - "printedName": "timeout", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unauthorized", - "printedName": "unauthorized", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notConnected", - "printedName": "notConnected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alternativeAdvertisingNameEnabled", + "printedName": "alternativeAdvertisingNameEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingNameEnabled", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Var", - "name": "notConnectedLeft", - "printedName": "notConnectedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingNameEnabled", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "activityIsRunning", - "printedName": "activityIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "busy", - "printedName": "busy", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingNameEnabled:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "dfu", - "printedName": "dfu", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alternativeAdvertisingName", + "printedName": "alternativeAdvertisingName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Var", - "name": "commandError", - "printedName": "commandError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingName", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingName", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingName:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "printedName": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setEnableUnsafeExperimentalButtonlessServiceInSecureDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "uuidHelper", + "printedName": "uuidHelper", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)uuidHelper", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "kind": "TypeNominal", + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)uuidHelper", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeDecl", - "name": "FirmwareError", - "printedName": "FirmwareError", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "Var", - "name": "differentFirmware", - "printedName": "differentFirmware", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "memsError", - "printedName": "memsError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, - { - "kind": "Var", - "name": "leftNoConnected", - "printedName": "leftNoConnected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "restartRequired", - "printedName": "restartRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "recoverFromDfu", - "printedName": "recoverFromDfu", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "minimumFwVersion", - "printedName": "minimumFwVersion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "updateRequired", - "printedName": "updateRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongProductType", - "printedName": "wrongProductType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "firstChunkIdIsGreater", - "printedName": "firstChunkIdIsGreater", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "startTimeZero", - "printedName": "startTimeZero", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DfuError", - "printedName": "DfuError", - "children": [ - { - "kind": "Var", - "name": "noLeftModule", - "printedName": "noLeftModule", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noUpdate", - "printedName": "noUpdate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongFile", - "printedName": "wrongFile", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noStart", - "printedName": "noStart", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "aborted", - "printedName": "aborted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "abortedRight", - "printedName": "abortedRight", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "abortedLeft", - "printedName": "abortedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "lowBattery", - "printedName": "lowBattery", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "inProgress", - "printedName": "inProgress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "updateRequired", - "printedName": "updateRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongProductType", - "printedName": "wrongProductType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StoreError", - "printedName": "StoreError", - "children": [ - { - "kind": "Var", - "name": "missing", - "printedName": "missing", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalid", - "printedName": "invalid", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Any?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrong", - "printedName": "wrong", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ActivityError", - "printedName": "ActivityError", - "children": [ - { - "kind": "Var", - "name": "notStarted", - "printedName": "notStarted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notStartedLeft", - "printedName": "notStartedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notStopped", - "printedName": "notStopped", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "modeNotSetActivityIsRunning", - "printedName": "modeNotSetActivityIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "previousNotStopped", - "printedName": "previousNotStopped", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "previousRestoring", - "printedName": "previousRestoring", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noUserParametersSet", - "printedName": "noUserParametersSet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "rawDataFlowIsRunning", - "printedName": "rawDataFlowIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalidMobilityScanResults", - "printedName": "invalidMobilityScanResults", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "outsideActivityDetected", - "printedName": "outsideActivityDetected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "anomalyDetected", - "printedName": "anomalyDetected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "mobility", - "printedName": "mobility", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NetworkError", - "printedName": "NetworkError", - "children": [ - { - "kind": "Var", - "name": "userLinkError", - "printedName": "userLinkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "inaccessible", - "printedName": "inaccessible", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "urlError", - "printedName": "urlError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "URLError", - "printedName": "Foundation.URLError", - "usr": "s:10Foundation8URLErrorV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "generalError", - "printedName": "generalError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "noResponse", - "printedName": "noResponse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "invalidResponseType", - "printedName": "invalidResponseType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "URLResponse", - "printedName": "Foundation.URLResponse", - "usr": "c:objc(cs)NSURLResponse" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "noResponseData", - "printedName": "noResponseData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "endpointError", - "printedName": "endpointError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "custom", - "printedName": "custom", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(errorCode: Swift.Int?, errorDescription: Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DecodableError", - "printedName": "DecodableError", - "children": [ - { - "kind": "Var", - "name": "invalidKeyPath", - "printedName": "invalidKeyPath", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "emptyKeyPath", - "printedName": "emptyKeyPath", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalidJSON", - "printedName": "invalidJSON", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFirmwareRevision", - "printedName": "ZTFirmwareRevision", - "children": [ - { - "kind": "Var", - "name": "fwSystemVersion", - "printedName": "fwSystemVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "productType", - "printedName": "productType", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmVersion", - "printedName": "bmVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "date", - "printedName": "date", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "code", - "printedName": "code", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "versions", - "printedName": "versions", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFwBmVersion?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFwBmVersion", - "printedName": "ZTCoreKit.ZTFwBmVersion", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFwBmVersion?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFwBmVersion", - "printedName": "ZTCoreKit.ZTFwBmVersion", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(code:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<", - "printedName": "<(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": ">=", - "printedName": ">=(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "fwSystemMajorVersion", - "printedName": "fwSystemMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemMinorVersion", - "printedName": "fwSystemMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemBuildVersion", - "printedName": "fwSystemBuildVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmMajorVersion", - "printedName": "bmMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmMinorVersion", - "printedName": "bmMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFwBmVersion", - "printedName": "ZTFwBmVersion", - "children": [ - { - "kind": "Var", - "name": "fwSystemMajorVersion", - "printedName": "fwSystemMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemMinorVersion", - "printedName": "fwSystemMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemBuildVersion", - "printedName": "fwSystemBuildVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "bmMajorVersion", - "printedName": "bmMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "bmMinorVersion", - "printedName": "bmMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkData", - "printedName": "ZTMessageChunkData", - "children": [ - { - "kind": "TypeDecl", - "name": "Mode", - "printedName": "Mode", - "children": [ - { - "kind": "Var", - "name": "manual", - "printedName": "manual", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "automatic", - "printedName": "automatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode?", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte1", - "printedName": "byte1", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte2", - "printedName": "byte2", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte3", - "printedName": "byte3", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "side", - "printedName": "side", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "mode", - "printedName": "mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "length", - "printedName": "length", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "payload", - "printedName": "payload", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTTextCharacteristic", - "printedName": "ZTTextCharacteristic", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTTextCharacteristic", - "printedName": "ZTCoreKit.ZTTextCharacteristic", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNSDecimalNumberTransform", - "printedName": "ZTNSDecimalNumberTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTNSDecimalNumberTransform", - "printedName": "ZTCoreKit.ZTNSDecimalNumberTransform", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDecimalNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDecimalNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "os.log", - "printedName": "os.log", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTLogLevel", - "printedName": "ZTLogLevel", - "children": [ - { - "kind": "Var", - "name": "all", - "printedName": "all", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO3allyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO3allyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5debugyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5debugyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO4infoyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO4infoyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5erroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "fatal", - "printedName": "fatal", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLogLevel?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTLogLevelO", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTLogCategory", - "printedName": "ZTLogCategory", - "children": [ - { - "kind": "Var", - "name": "networkAgent", - "printedName": "networkAgent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "modules", - "printedName": "modules", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "sdk", - "printedName": "sdk", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLogCategory?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTLogCategoryO", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTRealtimeMessageEventType", - "children": [ - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "acknowledgment", - "printedName": "acknowledgment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "realTimeEvent", - "printedName": "realTimeEvent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "realTimeMetrics", - "printedName": "realTimeMetrics", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "os.log", - "printedName": "os.log", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTLogger", - "printedName": "ZTLogger", - "children": [ - { - "kind": "Var", - "name": "instance", - "printedName": "instance", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogger", - "printedName": "ZTCoreKit.ZTLogger", - "usr": "s:9ZTCoreKit8ZTLoggerC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvpZ", - "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogger", - "printedName": "ZTCoreKit.ZTLogger", - "usr": "s:9ZTCoreKit8ZTLoggerC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvgZ", - "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "ztDebugPrint", - "printedName": "ztDebugPrint(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "debug", - "printedName": "debug(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "info", - "printedName": "info(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "error", - "printedName": "error(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fatal", - "printedName": "fatal(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "print", - "printedName": "print(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> Any", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5printyyypyXKF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5printyyypyXKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTLoggerC", - "mangledName": "$s9ZTCoreKit8ZTLoggerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTLoggerLine", - "printedName": "ZTLoggerLine", - "children": [ - { - "kind": "Var", - "name": "notification", - "printedName": "notification", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "ble", - "printedName": "ble", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "date", - "printedName": "date", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "message", - "printedName": "message", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "level", - "printedName": "level", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "category", - "printedName": "category", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerLine", - "printedName": "ZTCoreKit.ZTLoggerLine", - "usr": "s:9ZTCoreKit12ZTLoggerLineV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit12ZTLoggerLineV", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTNetworkReachabilityManager", - "printedName": "ZTNetworkReachabilityManager", - "children": [ - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableOnCellular", - "printedName": "isReachableOnCellular", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableOnEthernetOrWiFi", - "printedName": "isReachableOnEthernetOrWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "flags", - "printedName": "flags", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?", - "children": [ - { - "kind": "TypeNominal", - "name": "SCNetworkReachabilityFlags", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags", - "usr": "c:@E@SCNetworkReachabilityFlags" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?", - "children": [ - { - "kind": "TypeNominal", - "name": "SCNetworkReachabilityFlags", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags", - "usr": "c:@E@SCNetworkReachabilityFlags" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNotifyData", - "printedName": "ZTNotifyData", - "children": [ - { - "kind": "TypeDecl", - "name": "GroupID", - "printedName": "GroupID", - "children": [ - { - "kind": "Var", - "name": "common", - "printedName": "common", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warm", - "printedName": "warm", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "running", - "printedName": "running", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "cycling", - "printedName": "cycling", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "safety", - "printedName": "safety", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "generic", - "printedName": "generic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID?", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CommonMessageId", - "printedName": "CommonMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_GENERAL_STATES", - "printedName": "MSG_GENERAL_STATES", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_BATTERY_LEVEL", - "printedName": "MSG_BATTERY_LEVEL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_MEMS", - "printedName": "MSG_MEMS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_FLASH", - "printedName": "MSG_FLASH", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_TIME", - "printedName": "MSG_TIME", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HARDWARE", - "printedName": "MSG_HARDWARE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_SOFTWARE", - "printedName": "MSG_SOFTWARE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ACTIVITY_INFO", - "printedName": "MSG_ACTIVITY_INFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ACTIVITY_METADATA", - "printedName": "MSG_ACTIVITY_METADATA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_RAWDATA_HEADER", - "printedName": "MSG_RAWDATA_HEADER", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_RAWDATA_FRAME", - "printedName": "MSG_RAWDATA_FRAME", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_BTLOADER_INFO", - "printedName": "MSG_BTLOADER_INFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_INACTIVITY_TIMEOUT", - "printedName": "MSG_INACTIVITY_TIMEOUT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_SEND_STATUS", - "printedName": "MSG_CHUNK_SEND_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_DATA", - "printedName": "MSG_CHUNK_DATA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_CONFIG", - "printedName": "MSG_CHUNK_CONFIG", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_DEBUG", - "printedName": "MSG_DEBUG", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "WarmMessageId", - "printedName": "WarmMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_HEATING_TEMP_1", - "printedName": "MSG_HEATING_TEMP_1", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_TEMP_2", - "printedName": "MSG_HEATING_TEMP_2", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_STEP_R_CNT", - "printedName": "MSG_HEATING_STEP_R_CNT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_STEP_L_CNT", - "printedName": "MSG_HEATING_STEP_L_CNT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_SETPOINT_R", - "printedName": "MSG_HEATING_SETPOINT_R", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_SETPOINT_L", - "printedName": "MSG_HEATING_SETPOINT_L", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_GET_HEAT_TIMER", - "printedName": "MSG_GET_HEAT_TIMER", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_DEBUG_R", - "printedName": "MSG_HEATING_DEBUG_R", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_DEBUG_L", - "printedName": "MSG_HEATING_DEBUG_L", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setUuidHelper:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "RunningMessageId", - "printedName": "RunningMessageId", - "children": [ - { - "kind": "Var", - "name": "UNKNOWN", - "printedName": "UNKNOWN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId.Type) -> ZTCoreKit.ZTNotifyData.RunningMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } + "declAttributes": [ + "ObjC" ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "accessorKind": "_modify" } ] }, { - "kind": "TypeDecl", - "name": "CyclingMessageId", - "printedName": "CyclingMessageId", + "kind": "Var", + "name": "disableResume", + "printedName": "disableResume", "children": [ { - "kind": "Var", - "name": "MSG_CADENCE", - "printedName": "MSG_CADENCE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId.Type) -> ZTCoreKit.ZTNotifyData.CyclingMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)disableResume", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SafetyMessageId", - "printedName": "SafetyMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_CALIBRATION_SAFETY", - "printedName": "MSG_CALIBRATION_SAFETY", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ALGO_RT_EVENT", - "printedName": "MSG_ALGO_RT_EVENT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "GenericMessageId", - "printedName": "GenericMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_ALGO_RT_EVENT", - "printedName": "MSG_ALGO_RT_EVENT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId.Type) -> ZTCoreKit.ZTNotifyData.GenericMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "moduleName": "ZTCoreKit" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)disableResume", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDisableResume:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDeviceActualState", - "printedName": "ZTDeviceActualState", - "children": [ - { - "kind": "Var", - "name": "activityNone", - "printedName": "activityNone", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", - "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "activityStarting", - "printedName": "activityStarting", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "eraseMemory", - "printedName": "eraseMemory", - "children": [ + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityRunning", - "printedName": "activityRunning", - "children": [ + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityPaused", - "printedName": "activityPaused", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC14centralManager6targetACSo09CBCentralF0C_So12CBPeripheralCtcfc", + "moduleName": "ZTCoreKit", + "deprecated": true, + "objc_name": "initWithCentralManager:target:", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", - "moduleName": "ZTCoreKit" + "init_kind": "Designated" }, { - "kind": "Var", - "name": "activityStopping", - "printedName": "activityStopping", + "kind": "Constructor", + "name": "init", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5queue13delegateQueue08progressG006loggerG021centralManagerOptionsACSo012OS_dispatch_E0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "activityPendData", - "printedName": "activityPendData", + "kind": "Function", + "name": "with", + "printedName": "with(firmware:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)withFirmware:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC4with8firmwareAcA11DFUFirmwareC_tF", + "moduleName": "ZTCoreKit", + "objc_name": "withFirmware:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "activitySendData", - "printedName": "activitySendData", + "kind": "Function", + "name": "start", + "printedName": "start()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)start", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5startAA0C10ControllerCSgyF", + "moduleName": "ZTCoreKit", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "Function", + "name": "start", + "printedName": "start(target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTarget:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start6targetAA0C10ControllerCSgSo12CBPeripheralC_tF", "moduleName": "ZTCoreKit", + "objc_name": "startWithTarget:", "declAttributes": [ - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceActualState?", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start20targetWithIdentifierAA0C10ControllerCSg10Foundation4UUIDV_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "objc_name": "startWithTargetWithIdentifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)init", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", @@ -55867,39 +43036,38 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -55915,8 +43083,8 @@ }, { "kind": "TypeDecl", - "name": "ZTDictionaryTransform", - "printedName": "ZTDictionaryTransform", + "name": "ZTDateTransform", + "printedName": "ZTDateTransform", "children": [ { "kind": "Constructor", @@ -55925,29 +43093,15 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTDictionaryTransform", - "printedName": "ZTCoreKit.ZTDictionaryTransform<τ_0_0, τ_0_1>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV" + "name": "ZTDateTransform", + "printedName": "ZTCoreKit.ZTDateTransform", + "usr": "s:9ZTCoreKit15ZTDateTransformC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", + "usr": "s:9ZTCoreKit15ZTDateTransformCACycfc", + "mangledName": "$s9ZTCoreKit15ZTDateTransformCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -55961,25 +43115,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[τ_0_0 : τ_0_1]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" @@ -55999,11 +43141,9 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", + "usr": "s:9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -56017,12 +43157,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" @@ -56030,51 +43171,34 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[τ_0_0 : τ_0_1]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", + "usr": "s:9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV", + "declKind": "Class", + "usr": "s:9ZTCoreKit15ZTDateTransformC", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -56089,21 +43213,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ] }, @@ -56114,8 +43226,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } @@ -56125,632 +43238,211 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTScannerResult", - "printedName": "ZTScannerResult", - "children": [ - { - "kind": "Var", - "name": "success", - "printedName": "success", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> (ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(device: ZTCoreKit.ZTDevice)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "cancelled", - "printedName": "cancelled", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "failed", - "printedName": "failed", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit15ZTScannerResultO", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "ZTInformationService", - "printedName": "ZTInformationService", + "name": "ZTDateTransformUTC", + "printedName": "ZTDateTransformUTC", "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "ZTDateTransformUTC", + "printedName": "ZTCoreKit.ZTDateTransformUTC", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCCACycfc", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCCACycfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] + "init_kind": "Designated" }, - { - "kind": "Var", - "name": "manufacturerName", - "printedName": "manufacturerName", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } - ] - }, + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCommandsCharacteristic", + "printedName": "ZTCommandsCharacteristic", + "children": [ { "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "AccessControl" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -56759,54 +43451,56 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -56816,22 +43510,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] @@ -56839,67 +43534,75 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(device:service:)", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ZTInformationService", - "printedName": "ZTCoreKit.ZTInformationService", - "usr": "s:9ZTCoreKit20ZTInformationServiceC" + "name": "ZTCommandsCharacteristic", + "printedName": "ZTCoreKit.ZTCommandsCharacteristic", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC" }, { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", "overriding": true, - "implicit": true, "declAttributes": [ - "Required" + "AccessControl", + "Required", + "RawDocComment" ], "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTInformationServiceC", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } + "ZTCoreKit.ZTCharacteristic" ] }, { @@ -56912,563 +43615,499 @@ "RawDocComment" ] }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTServices", - "printedName": "ZTServices", + "name": "ZTProductType", + "printedName": "ZTProductType", "children": [ { - "kind": "TypeDecl", - "name": "Primary", - "printedName": "Primary", + "kind": "Var", + "name": "sports", + "printedName": "sports", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "warm", + "printedName": "warm", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO4warmyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO4warmyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "safety", + "printedName": "safety", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { - "kind": "Var", - "name": "commands", - "printedName": "commands", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notifyData", - "printedName": "notifyData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "indicateData", - "printedName": "indicateData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pairedSoles", - "printedName": "pairedSoles", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "test", - "printedName": "test", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "uid", - "printedName": "uid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ] - }, + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "podoSmart", + "printedName": "podoSmart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "ztDfu", + "printedName": "ztDfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", + "children": [ { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "baliston", + "printedName": "baliston", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ] } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityType", + "printedName": "activityType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvp", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvg", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } ] }, { - "kind": "TypeDecl", - "name": "PrimaryOld", - "printedName": "PrimaryOld", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -57477,457 +44116,731 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTProductTypeO", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProjectCodeType", + "printedName": "ZTProjectCodeType", + "children": [ + { + "kind": "Var", + "name": "zt1", + "printedName": "zt1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt2", + "printedName": "zt2", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt3", + "printedName": "zt3", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", "children": [ { - "kind": "Var", - "name": "commands", - "printedName": "commands", + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt4", + "printedName": "zt4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" }, { - "kind": "Var", - "name": "notifyData", - "printedName": "notifyData", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProjectCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProductCodeType", + "printedName": "ZTProductCodeType", + "children": [ + { + "kind": "Var", + "name": "WS", + "printedName": "WS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "indicateData", - "printedName": "indicateData", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "WM", + "printedName": "WM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SP", + "printedName": "SP", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "pairedSoles", - "printedName": "pairedSoles", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SF", + "printedName": "SF", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "PS", + "printedName": "PS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SI", + "printedName": "SI", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "BA", + "printedName": "BA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityType", + "printedName": "activityType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeDecl", - "name": "DeviceInformation", - "printedName": "DeviceInformation", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -57936,457 +44849,383 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTManufacturerCodeType", + "printedName": "ZTManufacturerCodeType", + "children": [ + { + "kind": "Var", + "name": "a", + "printedName": "a", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "b", + "printedName": "b", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", "children": [ { - "kind": "Var", - "name": "manufacturerName", - "printedName": "manufacturerName", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "c", + "printedName": "c", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ { - "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "d", + "printedName": "d", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ { - "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "e", + "printedName": "e", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "f", + "printedName": "f", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "z", + "printedName": "z", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeDecl", - "name": "DeviceDFU", - "printedName": "DeviceDFU", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -58395,426 +45234,332 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProductTypeCode", + "printedName": "ZTProductTypeCode", + "children": [ + { + "kind": "Var", + "name": "ix", + "printedName": "ix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "sx", + "printedName": "sx", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", "children": [ { - "kind": "Var", - "name": "dfuControlPoint", - "printedName": "dfuControlPoint", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dfuPacket", - "printedName": "dfuPacket", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dfuButtonless", - "printedName": "dfuButtonless", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ] - }, + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "xx", + "printedName": "xx", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductTypeCode?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO", - "mangledName": "$s9ZTCoreKit10ZTServicesO", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } ] }, { "kind": "TypeDecl", - "name": "ZTActivityType", - "printedName": "ZTActivityType", + "name": "ZTGenderCodeType", + "printedName": "ZTGenderCodeType", "children": [ { "kind": "Var", - "name": "staticType", - "printedName": "staticType", + "name": "man", + "printedName": "man", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" } ] } @@ -58822,36 +45567,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "dynamic", - "printedName": "dynamic", + "name": "woman", + "printedName": "woman", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" } ] } @@ -58859,36 +45604,162 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", "moduleName": "ZTCoreKit" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTGenderCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", - "name": "walking", - "printedName": "walking", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTGenderSizeCodeType", + "children": [ + { + "kind": "Var", + "name": "a", + "printedName": "a", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58896,36 +45767,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "running", - "printedName": "running", + "name": "b", + "printedName": "b", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58933,36 +45804,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "name": "c", + "printedName": "c", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58970,36 +45841,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "d", + "printedName": "d", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59007,36 +45878,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "stairsUp", - "printedName": "stairsUp", + "name": "e", + "printedName": "e", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59044,36 +45915,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "stairsDown", - "printedName": "stairsDown", + "name": "f", + "printedName": "f", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59081,36 +45952,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "staticOther", - "printedName": "staticOther", + "name": "g", + "printedName": "g", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59118,36 +45989,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "kneel", - "printedName": "kneel", + "name": "h", + "printedName": "h", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59155,36 +46026,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "tiptoe", - "printedName": "tiptoe", + "name": "i", + "printedName": "i", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59192,36 +46063,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "vibration", - "printedName": "vibration", + "name": "j", + "printedName": "j", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59229,36 +46100,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "trampling", - "printedName": "trampling", + "name": "n", + "printedName": "n", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59266,36 +46137,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "crawling", - "printedName": "crawling", + "name": "o", + "printedName": "o", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59303,36 +46174,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "dynamicOther", - "printedName": "dynamicOther", + "name": "p", + "printedName": "p", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59340,36 +46211,73 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "slip", - "printedName": "slip", + "name": "q", + "printedName": "q", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "r", + "printedName": "r", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59377,36 +46285,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "trip", - "printedName": "trip", + "name": "s", + "printedName": "s", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59414,36 +46322,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "active", - "printedName": "active", + "name": "t", + "printedName": "t", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59451,36 +46359,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "inactive", - "printedName": "inactive", + "name": "u", + "printedName": "u", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59488,8 +46396,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", "moduleName": "ZTCoreKit" }, { @@ -59500,27 +46408,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -59532,14 +46440,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -59550,14 +46458,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -59566,14 +46474,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTActivityTypeO", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -59601,597 +46509,86 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, { "kind": "TypeDecl", - "name": "ZTTransformOf", - "printedName": "ZTTransformOf", + "name": "ZTUnitSizeCodeType", + "printedName": "ZTUnitSizeCodeType", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(fromJSON:toJSON:)", + "kind": "Var", + "name": "a", + "printedName": "a", "children": [ - { - "kind": "TypeNominal", - "name": "ZTTransformOf", - "printedName": "ZTCoreKit.ZTTransformOf<τ_0_0, τ_0_1>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:9ZTCoreKit13ZTTransformOfC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_1?) -> τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" - } - ] - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(τ_0_0?) -> τ_0_1?", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTTransformOfC", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareSize", - "printedName": "DFUFirmwareSize", - "children": [ - { - "kind": "Var", - "name": "softdevice", - "printedName": "softdevice", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)softdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)softdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bootloader", - "printedName": "bootloader", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)bootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)bootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "application", - "printedName": "application", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)application", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)application", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)init", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", + "moduleName": "ZTCoreKit" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivityMode", - "printedName": "ZTActivityMode", - "children": [ { "kind": "Var", - "name": "safety", - "printedName": "safety", + "name": "b", + "printedName": "b", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60199,36 +46596,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "walking", - "printedName": "walking", + "name": "c", + "printedName": "c", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60236,36 +46633,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "running", - "printedName": "running", + "name": "d", + "printedName": "d", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60273,36 +46670,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "name": "e", + "printedName": "e", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60310,36 +46707,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "mobility", - "printedName": "mobility", + "name": "f", + "printedName": "f", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60347,227 +46744,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvp", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvg", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTActivityModeO", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTAlgoPrecisionMode", - "children": [ - { - "kind": "Var", - "name": "defaultMode", - "printedName": "defaultMode", + "name": "n", + "printedName": "n", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60575,39 +46781,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "economicMode", - "printedName": "economicMode", + "name": "o", + "printedName": "o", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60615,39 +46818,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "performanceMode", - "printedName": "performanceMode", + "name": "p", + "printedName": "p", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60655,68 +46855,46 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "q", + "printedName": "q", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", @@ -60726,27 +46904,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -60758,14 +46936,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -60776,14 +46954,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -60792,14 +46970,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -60827,36 +47005,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, @@ -60872,239 +47029,177 @@ }, { "kind": "TypeDecl", - "name": "Adapter", - "printedName": "Adapter", - "declKind": "Class", - "usr": "s:9ZTCoreKit7AdapterC", - "mangledName": "$s9ZTCoreKit7AdapterC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "Retrier", - "printedName": "Retrier", - "declKind": "Class", - "usr": "s:9ZTCoreKit7RetrierC", - "mangledName": "$s9ZTCoreKit7RetrierC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "Interceptor", - "printedName": "Interceptor", - "declKind": "Class", - "usr": "s:9ZTCoreKit11InterceptorC", - "mangledName": "$s9ZTCoreKit11InterceptorC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DataConvertible", - "printedName": "DataConvertible", + "name": "ZTURLTransform", + "printedName": "ZTURLTransform", "children": [ { - "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(shouldEncodeURLString:allowedCharacterSet:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTURLTransform", + "printedName": "ZTCoreKit.ZTURLTransform", + "usr": "s:9ZTCoreKit14ZTURLTransformC" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CharacterSet", + "printedName": "Foundation.CharacterSet", + "hasDefaultArg": true, + "usr": "s:10Foundation12CharacterSetV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "+=", - "printedName": "+=(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "paramValueOwnership": "InOut", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", + "usr": "s:9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, + "isOpen": true, "declAttributes": [ "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+=", - "printedName": "+=(_:_:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "paramValueOwnership": "InOut", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", + "usr": "s:9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, + "isOpen": true, "declAttributes": [ "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "declKind": "Class", + "usr": "s:9ZTCoreKit14ZTURLTransformC", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } ] }, { @@ -61119,288 +47214,578 @@ }, { "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Plister", + "printedName": "Plister", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" ] }, { "kind": "TypeDecl", - "name": "ZTImmutableMappable", - "printedName": "ZTImmutableMappable", + "name": "ZTDevice", + "printedName": "ZTDevice", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Var", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "protocolReq": true, - "throwing": true, - "reqNewWitnessTableEntry": true, - "init_kind": "Designated" + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Var", + "name": "peripheral", + "printedName": "peripheral", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "CoreBluetooth.CBPeripheral?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreBluetooth.CBPeripheral?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", + "kind": "Var", + "name": "cbPeripheral", + "printedName": "cbPeripheral", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSON:context:)", + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "qrCode", + "printedName": "qrCode", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONObject:context:)", + "kind": "Var", + "name": "rssi", + "printedName": "rssi", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macAddressRight", + "printedName": "macAddressRight", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit19ZTImmutableMappableP", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPrimaryOldService", - "printedName": "ZTPrimaryOldService", - "children": [ + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "macAddressLeft", + "printedName": "macAddressLeft", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -61409,64 +47794,117 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "name": "advertisementData", + "printedName": "advertisementData", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -61480,41 +47918,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -61529,41 +47963,37 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -61578,618 +48008,569 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Var", + "name": "manufacturer", + "printedName": "manufacturer", "children": [ { "kind": "TypeNominal", - "name": "ZTPrimaryOldService", - "printedName": "ZTCoreKit.ZTPrimaryOldService", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, "declAttributes": [ - "Required" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "DFUUuidType", - "printedName": "DFUUuidType", - "children": [ - { - "kind": "Var", - "name": "legacyService", - "printedName": "legacyService", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyServiceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 + ] }, { "kind": "Var", - "name": "legacyControlPoint", - "printedName": "legacyControlPoint", + "name": "hardwareRevision", + "printedName": "hardwareRevision", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyControlPoint", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO18legacyControlPointyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "legacyPacket", - "printedName": "legacyPacket", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyPacket", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12legacyPacketyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + ] }, { "kind": "Var", - "name": "legacyVersion", - "printedName": "legacyVersion", + "name": "firmwareRevision", + "printedName": "firmwareRevision", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareRevision?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyVersion", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyVersionyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "secureService", - "printedName": "secureService", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareRevision?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureServiceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 + ] }, { "kind": "Var", - "name": "secureControl", - "printedName": "secureControl", + "name": "modelNumber", + "printedName": "modelNumber", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureControl", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureControlyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 5 - }, - { - "kind": "Var", - "name": "securePacket", - "printedName": "securePacket", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecurePacket", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12securePacketyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 6 + ] }, { "kind": "Var", - "name": "buttonlessService", - "printedName": "buttonlessService", + "name": "uuid", + "printedName": "uuid", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isConnected", + "printedName": "isConnected", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO17buttonlessServiceyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 7 + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "buttonlessCharacteristic", - "printedName": "buttonlessCharacteristic", + "name": "isActivityRunning", + "printedName": "isActivityRunning", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isDeviceReady", + "printedName": "isDeviceReady", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessCharacteristic", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO24buttonlessCharacteristicyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 8 + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "buttonlessWithoutBondSharing", - "printedName": "buttonlessWithoutBondSharing", + "name": "info", + "printedName": "info", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithoutBondSharing", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO28buttonlessWithoutBondSharingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 9 - }, - { - "kind": "Var", - "name": "buttonlessWithBondSharing", - "printedName": "buttonlessWithBondSharing", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithBondSharing", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO25buttonlessWithBondSharingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 10 + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "batterylevel", + "printedName": "batterylevel", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUUuidType?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivp", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62198,99 +48579,51 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "ZTCoreKit.ZTBatteryLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivg", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUUuid", - "printedName": "DFUUuid", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "lastActivityDate", + "printedName": "lastActivityDate", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)uuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -62300,48 +48633,50 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)uuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "generalState", + "printedName": "generalState", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)type", - "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -62351,177 +48686,127 @@ "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)type", - "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(withUUID:forType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" }, { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)initWithUUID:forType:", - "mangledName": "$s9ZTCoreKit7DFUUuidC8withUUID7forTypeACSo6CBUUIDC_AA0cG0Otcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUUID:forType:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)init", - "mangledName": "$s9ZTCoreKit7DFUUuidCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + ] }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUUuidHelper", - "printedName": "DFUUuidHelper", - "children": [ { "kind": "Var", - "name": "legacyDFUService", - "printedName": "legacyDFUService", + "name": "softwareInfo", + "printedName": "softwareInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62533,47 +48818,140 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "legacyDFUControlPoint", - "printedName": "legacyDFUControlPoint", + "name": "lowSoftwareInfo", + "printedName": "lowSoftwareInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62582,44 +48960,47 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "legacyDFUPacket", - "printedName": "legacyDFUPacket", + "name": "activityInfo", + "printedName": "activityInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62631,44 +49012,127 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "legacyDFUVersion", - "printedName": "legacyDFUVersion", + "name": "bootloaderInfo", + "printedName": "bootloaderInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUVersion", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62680,44 +49144,148 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUVersion", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUService", - "printedName": "secureDFUService", + "name": "inactivityTimeout", + "printedName": "inactivityTimeout", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62729,44 +49297,98 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUControlPoint", - "printedName": "secureDFUControlPoint", + "name": "actualState", + "printedName": "actualState", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62778,44 +49400,82 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUPacket", - "printedName": "secureDFUPacket", + "name": "previousState", + "printedName": "previousState", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62827,47 +49487,82 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "buttonlessExperimentalService", - "printedName": "buttonlessExperimentalService", + "name": "hasInitialUpdate", + "printedName": "hasInitialUpdate", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62876,46 +49571,80 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "buttonlessExperimentalCharacteristic", - "printedName": "buttonlessExperimentalCharacteristic", + "name": "onStateChanged", + "printedName": "onStateChanged", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalCharacteristic", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -62925,18 +49654,55 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalCharacteristic", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } @@ -62944,27 +49710,49 @@ }, { "kind": "Var", - "name": "buttonlessWithoutBonds", - "printedName": "buttonlessWithoutBonds", + "name": "onRSSIChanged", + "printedName": "onRSSIChanged", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithoutBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -62974,18 +49762,39 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithoutBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } @@ -62993,27 +49802,49 @@ }, { "kind": "Var", - "name": "buttonlessWithBonds", - "printedName": "buttonlessWithBonds", + "name": "onServiceDiscovered", + "printedName": "onServiceDiscovered", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63023,196 +49854,89 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)init", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(customUuids:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.DFUUuid]", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)initWithCustomUuids:", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC11customUuidsACSayAA0C0CG_tcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithCustomUuids:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTUser", - "printedName": "ZTUser", - "children": [ { "kind": "Var", - "name": "attributes", - "printedName": "attributes", + "name": "onServiceFeaturesIdentified", + "printedName": "onServiceFeaturesIdentified", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvp", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63222,117 +49946,157 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvg", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCharacteristicDiscovered", + "printedName": "onCharacteristicDiscovered", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvs", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvM", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "onAllCharacteristicsDiscovered", + "printedName": "onAllCharacteristicsDiscovered", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63342,107 +50106,61 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "organizationId", - "printedName": "organizationId", + "name": "onAllCharacteristicsRead", + "printedName": "onAllCharacteristicsRead", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63452,107 +50170,152 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCharacteristicValueUpdated", + "printedName": "onCharacteristicValueUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appId", - "printedName": "appId", + "name": "onCharacteristicValueWritten", + "printedName": "onCharacteristicValueWritten", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63562,107 +50325,188 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCommandCharacteristicDiscovered", + "printedName": "onCommandCharacteristicDiscovered", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onNotifyValueUpdated", + "printedName": "onNotifyValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63672,107 +50516,97 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "onBatteryValueUpdated", + "printedName": "onBatteryValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63782,107 +50616,62 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "userId", - "printedName": "userId", + "name": "onGeneralStateUpdated", + "printedName": "onGeneralStateUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63892,210 +50681,145 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onActivityInfoUpdated", + "printedName": "onActivityInfoUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Var", + "name": "onSoftwareUpdated", + "printedName": "onSoftwareUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUser?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTUser", - "printedName": "ZTCoreKit.ZTUser", - "usr": "s:9ZTCoreKit6ZTUserC" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Required", - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit6ZTUserC", - "mangledName": "$s9ZTCoreKit6ZTUserC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTSerialNumberCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", "Final", @@ -64103,6 +50827,7 @@ "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64112,105 +50837,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "onTimeUpdated", + "printedName": "onTimeUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageTime?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64220,149 +50919,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageTime?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "isOpen": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAchievement", - "printedName": "ZTAchievement", - "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "onActivityMetadataUpdated", + "printedName": "onActivityMetadataUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64372,107 +51001,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onRawDataHeaderUpdated", + "printedName": "onRawDataHeaderUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "onRawDataFrameUpdated", + "printedName": "onRawDataFrameUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64482,107 +51165,153 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onInactivityTimeoutUpdated", + "printedName": "onInactivityTimeoutUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "name": "onFirmwareError", + "printedName": "onFirmwareError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64592,107 +51321,208 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyCommonGroupUpdated", + "printedName": "onNotifyCommonGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "code", - "printedName": "code", + "name": "onNotifyWarmGroupUpdated", + "printedName": "onNotifyWarmGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64702,107 +51532,237 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyRunningGroupUpdated", + "printedName": "onNotifyRunningGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appuserId", - "printedName": "appuserId", + "name": "onNotifyCyclingGroupUpdated", + "printedName": "onNotifyCyclingGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64812,120 +51772,245 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifySafetyGroupUpdated", + "printedName": "onNotifySafetyGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "onNotifyGenericGroupUpdated", + "printedName": "onNotifyGenericGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64935,134 +52020,182 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCommandUpdated", + "printedName": "onCommandUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "ZTCoreKit.ZTCommandResponse?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "onCommandAck", + "printedName": "onCommandAck", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65072,108 +52205,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onIndicateValueUpdated", + "printedName": "onIndicateValueUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int64?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "calories", - "printedName": "calories", + "name": "onBootloaderInfoUpdated", + "printedName": "onBootloaderInfoUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65183,107 +52369,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyChunkSendStatusUpdated", + "printedName": "onNotifyChunkSendStatusUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onNotifyChunkConfigUpdated", + "printedName": "onNotifyChunkConfigUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65293,107 +52533,142 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyChunkDataUpdated", + "printedName": "onNotifyChunkDataUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTMessageChunkData?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkData?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(peripheral:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAchievement?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAchievement", - "printedName": "ZTCoreKit.ZTAchievement", - "usr": "s:9ZTCoreKit13ZTAchievementC" - } - ], - "usr": "s:Sq" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -65403,134 +52678,88 @@ "init_kind": "Designated" }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(cbPeripheral:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit8ZTDeviceC7connectyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC7connectyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTAchievementC", - "mangledName": "$s9ZTCoreKit13ZTAchievementC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTWebSocket", - "printedName": "ZTWebSocket", - "declKind": "Class", - "usr": "s:9ZTCoreKit11ZTWebSocketC", - "mangledName": "$s9ZTCoreKit11ZTWebSocketC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivity", - "printedName": "ZTActivity", - "children": [ - { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC10disconnectyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10disconnectyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeValue", + "printedName": "observeValue(forKeyPath:of:change:context:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -65539,149 +52768,96 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "NSKeyValueChangeKey", + "printedName": "Foundation.NSKeyValueChangeKey", + "usr": "c:@T@NSKeyValueChangeKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityIdentifier", - "printedName": "activityIdentifier", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)observeValueForKeyPath:ofObject:change:context:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeye6ChangeG0aypGSgSvSgtF", "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "observeValueForKeyPath:ofObject:change:context:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", + "Override", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "service", + "printedName": "service(_:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "appId", - "printedName": "appId", - "children": [ { "kind": "TypeNominal", "name": "Optional", @@ -65694,52 +52870,36 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkBattery", + "printedName": "checkBattery(completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", @@ -65748,1060 +52908,880 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "kind": "Function", + "name": "readGeneralState", + "printedName": "readGeneralState()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)init", + "mangledName": "$s9ZTCoreKit8ZTDeviceCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didWriteValueFor:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBDescriptor", + "printedName": "CoreBluetooth.CBDescriptor", + "usr": "c:objc(cs)CBDescriptor" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForDescriptor:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didWriteValueForDescriptor:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "startDate", - "printedName": "startDate", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverServices:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverServices:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_19didDiscoverServicesySo12CBPeripheralC_s5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverServices:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverCharacteristicsFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverCharacteristicsForService:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didDiscoverCharacteristicsFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverCharacteristicsForService:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "endDate", - "printedName": "endDate", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateValueFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateValueForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didWriteValueFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didWriteValueForCharacteristic:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "startTimestamp", - "printedName": "startTimestamp", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateNotificationStateFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int64?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateNotificationStateForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didUpdateNotificationStateFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateNotificationStateForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didReadRSSI:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didReadRSSI:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_11didReadRSSI5errorySo12CBPeripheralC_So8NSNumberCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didReadRSSI:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "endTimestamp", - "printedName": "endTimestamp", + "kind": "Function", + "name": "peripheralDidUpdateName", + "printedName": "peripheralDidUpdateName(_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralDidUpdateName:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23peripheralDidUpdateNameyySo12CBPeripheralCF", "moduleName": "ZTCoreKit", + "objc_name": "peripheralDidUpdateName:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didModifyServices:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didModifyServices:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didModifyServicesySo12CBPeripheralC_SaySo9CBServiceCGtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didModifyServices:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "tz", - "printedName": "tz", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverIncludedServicesFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverIncludedServicesForService:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_30didDiscoverIncludedServicesFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverIncludedServicesForService:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverDescriptorsFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverDescriptorsForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_25didDiscoverDescriptorsFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverDescriptorsForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateValueFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBDescriptor", + "printedName": "CoreBluetooth.CBDescriptor", + "usr": "c:objc(cs)CBDescriptor" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForDescriptor:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateValueForDescriptor:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "state", - "printedName": "state", + "kind": "Function", + "name": "peripheralIsReady", + "printedName": "peripheralIsReady(toSendWriteWithoutResponse:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralIsReadyToSendWriteWithoutResponse:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17peripheralIsReady26toSendWriteWithoutResponseySo12CBPeripheralC_tF", "moduleName": "ZTCoreKit", + "objc_name": "peripheralIsReadyToSendWriteWithoutResponse:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didOpen:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreBluetooth.CBL2CAPChannel?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CBL2CAPChannel", + "printedName": "CoreBluetooth.CBL2CAPChannel", + "usr": "c:objc(cs)CBL2CAPChannel" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetsIds", - "printedName": "packetsIds", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didOpenL2CAPChannel:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_7didOpen5errorySo12CBPeripheralC_So14CBL2CAPChannelCSgs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didOpenL2CAPChannel:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommand", + "printedName": "sendCommand(_:parameters:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.UInt16]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cachedPackets", - "printedName": "cachedPackets", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommandWithAck", + "printedName": "sendCommandWithAck(command:parameters:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -66810,109 +53790,75 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "metaData", - "printedName": "metaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommandWithRightAck", + "printedName": "sendCommandWithRightAck(command:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -66922,76 +53868,96 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "stopReason", - "printedName": "stopReason", + "name": "isLowBattery", + "printedName": "isLowBattery", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -67001,95 +53967,135 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice", + "mangledName": "$s9ZTCoreKit8ZTDeviceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTIndicateCharacteristic", + "printedName": "ZTIndicateCharacteristic", + "children": [ { "kind": "Var", - "name": "isRawDataMode", - "printedName": "isRawDataMode", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -67103,16 +54109,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -67127,16 +54137,20 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -67151,33 +54165,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvM", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "isAutomatic", - "printedName": "isAutomatic", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvp", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], @@ -67190,600 +54217,1530 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvg", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTIndicateCharacteristic", + "printedName": "ZTCoreKit.ZTIndicateCharacteristic", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "forceStop", - "printedName": "forceStop", + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", + "Override", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "OperatorDecl", + "name": "<<-", + "printedName": "<<-", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix", + "RawDocComment" + ] + }, + { + "kind": "OperatorDecl", + "name": "->>", + "printedName": "->>", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Var", - "name": "isInterrupted", - "printedName": "isInterrupted", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Var", - "name": "firstChunkId", - "printedName": "firstChunkId", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" }, { - "kind": "Var", - "name": "lastChunkId", - "printedName": "lastChunkId", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" }, { - "kind": "Var", - "name": "chunkCount", - "printedName": "chunkCount", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ { - "kind": "Accessor", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", "name": "Set", - "printedName": "Set()", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:Sh" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "anchorTimestamp", - "printedName": "anchorTimestamp", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageSoftware", + "printedName": "ZTMessageSoftware", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -67792,109 +55749,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customActivityStartTimestamp", - "printedName": "customActivityStartTimestamp", + "name": "baseMajor", + "printedName": "baseMajor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -67903,109 +55789,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customActivityFirstChunkId", - "printedName": "customActivityFirstChunkId", + "name": "baseMinor", + "printedName": "baseMinor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68014,109 +55829,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", + "name": "baseBuild", + "printedName": "baseBuild", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68125,109 +55869,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shoesSerial", - "printedName": "shoesSerial", + "name": "app", + "printedName": "app", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68236,316 +55909,179 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTActivityCACycfc", - "mangledName": "$s9ZTCoreKit10ZTActivityCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "save", - "printedName": "save()", + "kind": "Var", + "name": "appMajor", + "printedName": "appMajor", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC4saveyyF", - "mangledName": "$s9ZTCoreKit10ZTActivityC4saveyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(firstChunkId:lastChunkId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appMinor", + "printedName": "appMinor", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA13ZTSegmentDataCGs6UInt16VSg_ALtF", - "mangledName": "$s9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA13ZTSegmentDataCGs6UInt16VSg_ALtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "lastSavedChunkId", - "printedName": "lastSavedChunkId(startId:lastId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s6UInt16VAHSg_AItF", - "mangledName": "$s9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s6UInt16VAHSg_AItF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addToCache", - "printedName": "addToCache(_:)", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC10addToCacheyyAA13ZTSegmentDataCF", - "mangledName": "$s9ZTCoreKit10ZTActivityC10addToCacheyyAA13ZTSegmentDataCF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "uploadCache", - "printedName": "uploadCache(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", - "mangledName": "$s9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "saveCachedPackets", - "printedName": "saveCachedPackets()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", - "mangledName": "$s9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Constructor", @@ -68554,9 +56090,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" }, { "kind": "TypeNominal", @@ -68566,13 +56102,10 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTActivityC4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit10ZTActivityC4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Required" - ], "throwing": true, "init_kind": "Designated" }, @@ -68594,67 +56127,30 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit10ZTActivityC6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, - "isOpen": true, "throwing": true, "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTActivityC", - "mangledName": "$s9ZTCoreKit10ZTActivityC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, { "kind": "Conformance", "name": "Decodable", @@ -68683,30 +56179,68 @@ }, { "kind": "TypeDecl", - "name": "ZTDfuDelegate", - "printedName": "ZTDfuDelegate", + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTSerialNumberCharacteristic", "children": [ { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(firmwareDownloaded:version:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -68714,238 +56248,218 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(didFinish:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(didFail:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(leftDidFinish:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "overriding": true, + "isOpen": true, + "declAttributes": [ + "AccessControl", + "Override" + ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(rightDidFinish:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP", + "declKind": "Class", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "DFUServiceInitiator", - "printedName": "DFUServiceInitiator", + "name": "ZTActivityCachable", + "printedName": "ZTActivityCachable", "children": [ { "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)delegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -68954,27 +56468,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceDelegate", - "printedName": "any ZTCoreKit.DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)delegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -68989,27 +56495,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceDelegate", - "printedName": "any ZTCoreKit.DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDelegate:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69024,39 +56522,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "progressDelegate", - "printedName": "progressDelegate", + "name": "packets", + "printedName": "packets", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)progressDelegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -69066,26 +56568,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", + "printedName": "Foundation.NSMutableOrderedSet?", "children": [ { "kind": "TypeNominal", - "name": "DFUProgressDelegate", - "printedName": "any ZTCoreKit.DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)progressDelegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -69101,26 +56603,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", + "printedName": "Foundation.NSMutableOrderedSet?", "children": [ { "kind": "TypeNominal", - "name": "DFUProgressDelegate", - "printedName": "any ZTCoreKit.DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setProgressDelegate:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69135,39 +56637,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "logger", - "printedName": "logger", + "name": "startDate", + "printedName": "startDate", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.LoggerDelegate)?" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)logger", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -69177,26 +56683,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.LoggerDelegate)?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "LoggerDelegate", - "printedName": "any ZTCoreKit.LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)logger", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -69212,26 +56718,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.LoggerDelegate)?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "LoggerDelegate", - "printedName": "any ZTCoreKit.LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setLogger:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69246,37 +56752,454 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "upload", + "printedName": "upload(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTActivityCachableP6uploadyySayqd__GYaKAA08ZTPacketD0Rd__lF", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP6uploadyySayqd__GYaKAA08ZTPacketD0Rd__lF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable, τ_1_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTActivityCachablePAAE2eeoiySbx_xtFZ", + "mangledName": "$s9ZTCoreKit18ZTActivityCachablePAAE2eeoiySbx_xtFZ", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit18ZTActivityCachableP", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : CoreData.NSManagedObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogLevel", + "printedName": "LogLevel", + "children": [ { "kind": "Var", - "name": "peripheralSelector", - "printedName": "peripheralSelector", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelDebug", + "mangledName": "$s9ZTCoreKit8LogLevelO5debugyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "verbose", + "printedName": "verbose", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelVerbose", + "mangledName": "$s9ZTCoreKit8LogLevelO7verboseyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelInfo", + "mangledName": "$s9ZTCoreKit8LogLevelO4infoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "application", + "printedName": "application", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelApplication", + "mangledName": "$s9ZTCoreKit8LogLevelO11applicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "warning", + "printedName": "warning", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelWarning", + "mangledName": "$s9ZTCoreKit8LogLevelO7warningyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelError", + "mangledName": "$s9ZTCoreKit8LogLevelO5erroryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Function", + "name": "name", + "printedName": "name()", "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)peripheralSelector", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8LogLevelO4nameSSyF", + "mangledName": "$s9ZTCoreKit8LogLevelO4nameSSyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.LogLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -69285,90 +57208,399 @@ "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)peripheralSelector", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvg", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@LogLevel", + "mangledName": "$s9ZTCoreKit8LogLevelO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerDelegate", + "printedName": "LoggerDelegate", + "children": [ + { + "kind": "Function", + "name": "logWith", + "printedName": "logWith(_:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate(im)logWith:message:", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP7logWith_7messageyAA8LogLevelO_SStF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.LoggerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMappingType", + "printedName": "ZTMappingType", + "children": [ + { + "kind": "Var", + "name": "fromJSON", + "printedName": "fromJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" }, { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMappingType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPeripheralSelector:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "toJSON", + "printedName": "toJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMappingType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivp", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivg", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTMappingTypeO", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMapper", + "printedName": "ZTMapper", + "children": [ { "kind": "Var", - "name": "packetReceiptNotificationParameter", - "printedName": "packetReceiptNotificationParameter", + "name": "context", + "printedName": "context", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)packetReceiptNotificationParameter", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvp", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -69379,18 +57611,28 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)packetReceiptNotificationParameter", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvg", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -69406,18 +57648,28 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPacketReceiptNotificationParameter:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvs", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -69433,18 +57685,23 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "forceDfu", - "printedName": "forceDfu", + "name": "shouldIncludeNilValues", + "printedName": "shouldIncludeNilValues", "children": [ { "kind": "TypeNominal", @@ -69454,15 +57711,14 @@ } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvp", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -69479,12 +57735,14 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvg", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -69506,12 +57764,14 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvs", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -69527,878 +57787,1278 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "forceScanningForNewAddressInLegacyDfu", - "printedName": "forceScanningForNewAddressInLegacyDfu", + "kind": "Constructor", + "name": "init", + "printedName": "init(context:shouldIncludeNilValues:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapper", + "printedName": "ZTCoreKit.ZTMapper<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit8ZTMapperC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", + "hasDefaultArg": true, "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceScanningForNewAddressInLegacyDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", + "mangledName": "$s9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:toObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceScanningForNewAddressInLegacyDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:toObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:toObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceScanningForNewAddressInLegacyDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "connectionTimeout", - "printedName": "connectionTimeout", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)connectionTimeout", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)connectionTimeout", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setConnectionTimeout:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "dataObjectPreparationDelay", - "printedName": "dataObjectPreparationDelay", + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)dataObjectPreparationDelay", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)dataObjectPreparationDelay", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDataObjectPreparationDelay:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sa" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "alternativeAdvertisingNameEnabled", - "printedName": "alternativeAdvertisingNameEnabled", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingNameEnabled", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingNameEnabled", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } ], - "accessorKind": "get" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingNameEnabled:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:toDictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "alternativeAdvertisingName", - "printedName": "alternativeAdvertisingName", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:toDictionary:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingName", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingName", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingName:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "printedName": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArrayOfArrays", + "printedName": "mapArrayOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setEnableUnsafeExperimentalButtonlessServiceInSecureDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONStringIntoDictionary", + "printedName": "parseJSONStringIntoDictionary(JSONString:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "uuidHelper", - "printedName": "uuidHelper", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)uuidHelper", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)uuidHelper", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONString", + "printedName": "parseJSONString(JSONString:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setUuidHelper:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disableResume", - "printedName": "disableResume", - "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)disableResume", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)disableResume", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDisableResume:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC14centralManager6targetACSo09CBCentralF0C_So12CBPeripheralCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", "moduleName": "ZTCoreKit", - "deprecated": true, - "objc_name": "initWithCentralManager:target:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" + "Final" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", @@ -70420,667 +59080,484 @@ "usr": "s:SD" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5queue13delegateQueue08progressG006loggerG021centralManagerOptionsACSo012OS_dispatch_E0CSg_A3JSDySSypGSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", "moduleName": "ZTCoreKit", - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", + "Final", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "with", - "printedName": "with(firmware:)", + "name": "mapArray", + "printedName": "mapArray(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)withFirmware:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC4with8firmwareAcA11DFUFirmwareC_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", "moduleName": "ZTCoreKit", - "objc_name": "withFirmware:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start()", + "name": "mapArray", + "printedName": "mapArray(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)start", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5startAA0C10ControllerCSgyF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", "moduleName": "ZTCoreKit", - "deprecated": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start(target:)", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTarget:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start6targetAA0C10ControllerCSgSo12CBPeripheralC_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", "moduleName": "ZTCoreKit", - "objc_name": "startWithTarget:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", + "Final", "RawDocComment" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start20targetWithIdentifierAA0C10ControllerCSg10Foundation4UUIDV_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", "moduleName": "ZTCoreKit", - "objc_name": "startWithTargetWithIdentifier:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)init", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTPlistStorage", - "printedName": "ZTPlistStorage", - "children": [ - { - "kind": "Var", - "name": "plist", - "printedName": "plist", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvpZ", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvgZ", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvgZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPlistStorage>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit14ZTPlistStorageP", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBatteryLevel", - "printedName": "ZTBatteryLevel", - "children": [ - { - "kind": "Var", - "name": "rawData", - "printedName": "rawData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:SD" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", + "Final", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSON:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArrayOfArrays", + "printedName": "mapArrayOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sa" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "min", - "printedName": "min", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", + "Final", "RawDocComment" ], - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONfile:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", @@ -71088,724 +59565,852 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONfile:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelVACycfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelVACycfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", + "mangledName": "$s9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "toJSONArray", + "printedName": "toJSONArray(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUError", - "printedName": "DFUError", - "children": [ - { - "kind": "Var", - "name": "remoteLegacyDFUSuccess", - "printedName": "remoteLegacyDFUSuccess", + "kind": "Function", + "name": "toJSONDictionary", + "printedName": "toJSONDictionary(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteLegacyDFUSuccessyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUInvalidState", - "printedName": "remoteLegacyDFUInvalidState", + "kind": "Function", + "name": "toJSONDictionaryOfArrays", + "printedName": "toJSONDictionaryOfArrays(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUInvalidState", - "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUInvalidStateyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "remoteLegacyDFUNotSupported", - "printedName": "remoteLegacyDFUNotSupported", - "children": [ + ], + "usr": "s:SD" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUNotSupportedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 2 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUDataExceedsLimit", - "printedName": "remoteLegacyDFUDataExceedsLimit", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUDataExceedsLimit", - "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteLegacyDFUDataExceedsLimityA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 3 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUCrcError", - "printedName": "remoteLegacyDFUCrcError", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUCrcError", - "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteLegacyDFUCrcErroryA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 4 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUOperationFailed", - "printedName": "remoteLegacyDFUOperationFailed", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteLegacyDFUOperationFailedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 5 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUSuccess", - "printedName": "remoteSecureDFUSuccess", + "kind": "Function", + "name": "toJSONData", + "printedName": "toJSONData(_:options:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "WritingOptions", + "printedName": "Foundation.JSONSerialization.WritingOptions", + "usr": "c:@E@NSJSONWritingOptions" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteSecureDFUSuccessyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 6 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUOpCodeNotSupported", - "printedName": "remoteSecureDFUOpCodeNotSupported", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONString:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteSecureDFUOpCodeNotSupportedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 7 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInvalidParameter", - "printedName": "remoteSecureDFUInvalidParameter", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONObject:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidParameter", - "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteSecureDFUInvalidParameteryA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 8 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInsufficientResources", - "printedName": "remoteSecureDFUInsufficientResources", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONArray:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInsufficientResources", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUInsufficientResourcesyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 9 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInvalidObject", - "printedName": "remoteSecureDFUInvalidObject", + "kind": "Function", + "name": "toJSONSet", + "printedName": "toJSONSet(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidObject", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUInvalidObjectyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 10 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUSignatureMismatch", - "printedName": "remoteSecureDFUSignatureMismatch", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSignatureMismatch", - "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteSecureDFUSignatureMismatchyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 11 - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTMapperC", + "mangledName": "$s9ZTCoreKit8ZTMapperC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerComponent", + "printedName": "ZTLoggerComponent", + "children": [ { "kind": "Var", - "name": "remoteSecureDFUUnsupportedType", - "printedName": "remoteSecureDFUUnsupportedType", + "name": "api", + "printedName": "api", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71813,41 +60418,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUUnsupportedType", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUUnsupportedTypeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 12 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUOperationNotPermitted", - "printedName": "remoteSecureDFUOperationNotPermitted", + "name": "app", + "printedName": "app", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71855,41 +60455,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationNotPermitted", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUOperationNotPermittedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 13 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUOperationFailed", - "printedName": "remoteSecureDFUOperationFailed", + "name": "sdk", + "printedName": "sdk", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71897,41 +60492,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 14 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUExtendedError", - "printedName": "remoteSecureDFUExtendedError", + "name": "firmware", + "printedName": "firmware", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71939,167 +60529,161 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUExtendedError", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUExtendedErroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 15 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongCommandFormat", - "printedName": "remoteExtendedErrorWrongCommandFormat", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLoggerComponent?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongCommandFormat", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongCommandFormatyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 16 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteExtendedErrorUnknownCommand", - "printedName": "remoteExtendedErrorUnknownCommand", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorUnknownCommand", - "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteExtendedErrorUnknownCommandyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 17 + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "remoteExtendedErrorInitCommandInvalid", - "printedName": "remoteExtendedErrorInitCommandInvalid", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInitCommandInvalid", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorInitCommandInvalidyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 18 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerSeverity", + "printedName": "ZTLoggerSeverity", + "children": [ { "kind": "Var", - "name": "remoteExtendedErrorFwVersionFailure", - "printedName": "remoteExtendedErrorFwVersionFailure", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72107,41 +60691,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorFwVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorFwVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 19 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorHwVersionFailure", - "printedName": "remoteExtendedErrorHwVersionFailure", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72149,41 +60728,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHwVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorHwVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 20 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorSdVersionFailure", - "printedName": "remoteExtendedErrorSdVersionFailure", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72191,41 +60765,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSdVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSdVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 21 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorSignatureMissing", - "printedName": "remoteExtendedErrorSignatureMissing", + "name": "warn", + "printedName": "warn", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72233,167 +60802,171 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSignatureMissing", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSignatureMissingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 22 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongHashType", - "printedName": "remoteExtendedErrorWrongHashType", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLoggerSeverity?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongHashType", - "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteExtendedErrorWrongHashTypeyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 23 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteExtendedErrorHashFailed", - "printedName": "remoteExtendedErrorHashFailed", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHashFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO29remoteExtendedErrorHashFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 24 + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongSignatureType", - "printedName": "remoteExtendedErrorWrongSignatureType", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongSignatureType", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongSignatureTypeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 25 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDfuPackageType", + "printedName": "ZTDfuPackageType", + "children": [ { "kind": "Var", - "name": "remoteExtendedErrorVerificationFailed", - "printedName": "remoteExtendedErrorVerificationFailed", + "name": "APP", + "printedName": "APP", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72401,41 +60974,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorVerificationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorVerificationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 26 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorInsufficientSpace", - "printedName": "remoteExtendedErrorInsufficientSpace", + "name": "BL", + "printedName": "BL", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72443,41 +61011,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInsufficientSpace", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteExtendedErrorInsufficientSpaceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 27 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUSuccess", - "printedName": "remoteExperimentalButtonlessDFUSuccess", + "name": "SD", + "printedName": "SD", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72485,41 +61048,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO38remoteExperimentalButtonlessDFUSuccessyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 28 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUOpCodeNotSupported", - "printedName": "remoteExperimentalButtonlessDFUOpCodeNotSupported", + "name": "SD_BL", + "printedName": "SD_BL", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72527,41 +61085,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO49remoteExperimentalButtonlessDFUOpCodeNotSupportedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 29 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUOperationFailed", - "printedName": "remoteExperimentalButtonlessDFUOperationFailed", + "name": "SD_BL_APP", + "printedName": "SD_BL_APP", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72569,839 +61122,1322 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO46remoteExperimentalButtonlessDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 30 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteButtonlessDFUSuccess", - "printedName": "remoteButtonlessDFUSuccess", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDfuPackageType?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO26remoteButtonlessDFUSuccessyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 31 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteButtonlessDFUOpCodeNotSupported", - "printedName": "remoteButtonlessDFUOpCodeNotSupported", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteButtonlessDFUOpCodeNotSupportedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 32 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTHardwareCharacteristic", + "children": [ { "kind": "Var", - "name": "remoteButtonlessDFUOperationFailed", - "printedName": "remoteButtonlessDFUOperationFailed", + "name": "uuid", + "printedName": "uuid", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO34remoteButtonlessDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 33 + ] }, { "kind": "Var", - "name": "remoteButtonlessDFUInvalidAdvertisementName", - "printedName": "remoteButtonlessDFUInvalidAdvertisementName", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUInvalidAdvertisementName", - "mangledName": "$s9ZTCoreKit8DFUErrorO43remoteButtonlessDFUInvalidAdvertisementNameyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "Override" ], - "fixedbinaryorder": 34 + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteButtonlessDFUBusy", - "printedName": "remoteButtonlessDFUBusy", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageChunkData", + "printedName": "ZTMessageChunkData", + "children": [ + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "manual", + "printedName": "manual", "children": [ { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUBusy", - "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteButtonlessDFUBusyyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 35 - }, - { - "kind": "Var", - "name": "remoteButtonlessDFUNotBonded", - "printedName": "remoteButtonlessDFUNotBonded", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUNotBonded", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteButtonlessDFUNotBondedyA2CmF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl" ], - "fixedbinaryorder": 36 - }, - { - "kind": "Var", - "name": "fileNotSpecified", - "printedName": "fileNotSpecified", - "children": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileNotSpecified", - "mangledName": "$s9ZTCoreKit8DFUErrorO16fileNotSpecifiedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 37 + ] }, { "kind": "Var", - "name": "fileInvalid", - "printedName": "fileInvalid", + "name": "byte0", + "printedName": "byte0", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileInvalid", - "mangledName": "$s9ZTCoreKit8DFUErrorO11fileInvalidyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 38 + ] }, { "kind": "Var", - "name": "extendedInitPacketRequired", - "printedName": "extendedInitPacketRequired", + "name": "byte1", + "printedName": "byte1", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorExtendedInitPacketRequired", - "mangledName": "$s9ZTCoreKit8DFUErrorO26extendedInitPacketRequiredyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 39 - }, - { - "kind": "Var", - "name": "initPacketRequired", - "printedName": "initPacketRequired", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInitPacketRequired", - "mangledName": "$s9ZTCoreKit8DFUErrorO18initPacketRequiredyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 40 + ] }, { "kind": "Var", - "name": "failedToConnect", - "printedName": "failedToConnect", + "name": "byte2", + "printedName": "byte2", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFailedToConnect", - "mangledName": "$s9ZTCoreKit8DFUErrorO15failedToConnectyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 41 - }, - { - "kind": "Var", - "name": "deviceDisconnected", - "printedName": "deviceDisconnected", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceDisconnected", - "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceDisconnectedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 42 + ] }, { "kind": "Var", - "name": "bluetoothDisabled", - "printedName": "bluetoothDisabled", + "name": "byte3", + "printedName": "byte3", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBluetoothDisabled", - "mangledName": "$s9ZTCoreKit8DFUErrorO17bluetoothDisabledyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 43 - }, - { - "kind": "Var", - "name": "serviceDiscoveryFailed", - "printedName": "serviceDiscoveryFailed", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorServiceDiscoveryFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO22serviceDiscoveryFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 44 + ] }, { - "kind": "Var", - "name": "deviceNotSupported", - "printedName": "deviceNotSupported", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceNotSupportedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 45 + "init_kind": "Designated" }, { - "kind": "Var", - "name": "readingVersionFailed", - "printedName": "readingVersionFailed", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReadingVersionFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO20readingVersionFailedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } ], - "fixedbinaryorder": 46 + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "enablingControlPointFailed", - "printedName": "enablingControlPointFailed", + "name": "side", + "printedName": "side", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorEnablingControlPointFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO26enablingControlPointFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 47 + ] }, { "kind": "Var", - "name": "writingCharacteristicFailed", - "printedName": "writingCharacteristicFailed", + "name": "mode", + "printedName": "mode", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "length", + "printedName": "length", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorWritingCharacteristicFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO27writingCharacteristicFailedyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 48 + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "receivingNotificationFailed", - "printedName": "receivingNotificationFailed", + "name": "payload", + "printedName": "payload", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReceivingNotificationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO27receivingNotificationFailedyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], - "fixedbinaryorder": 49 + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoStatus", + "printedName": "ZTAlgoStatus", + "children": [ { "kind": "Var", - "name": "unsupportedResponse", - "printedName": "unsupportedResponse", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73409,41 +62445,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorUnsupportedResponse", - "mangledName": "$s9ZTCoreKit8DFUErrorO19unsupportedResponseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 50 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "bytesLost", - "printedName": "bytesLost", + "name": "modeId", + "printedName": "modeId", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73451,41 +62482,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBytesLost", - "mangledName": "$s9ZTCoreKit8DFUErrorO9bytesLostyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 51 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "crcError", - "printedName": "crcError", + "name": "precisionMode", + "printedName": "precisionMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73493,41 +62519,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorCrcError", - "mangledName": "$s9ZTCoreKit8DFUErrorO8crcErroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 52 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "invalidInternalState", - "printedName": "invalidInternalState", + "name": "numberOfSteps", + "printedName": "numberOfSteps", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73535,14 +62556,9 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInvalidInternalState", - "mangledName": "$s9ZTCoreKit8DFUErrorO20invalidInternalStateyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 53 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", @@ -73552,27 +62568,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUError?", + "printedName": "ZTCoreKit.ZTAlgoStatus?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -73584,14 +62600,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivp", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -73602,14 +62618,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivg", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -73618,15 +62634,14 @@ } ], "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUError", - "mangledName": "$s9ZTCoreKit8DFUErrorO", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "enumRawTypeName": "Int", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -73649,180 +62664,92 @@ "children": [ { "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUState", - "printedName": "DFUState", - "children": [ - { - "kind": "Var", - "name": "connecting", - "printedName": "connecting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateConnecting", - "mangledName": "$s9ZTCoreKit8DFUStateO10connectingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "starting", - "printedName": "starting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateStarting", - "mangledName": "$s9ZTCoreKit8DFUStateO8startingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "enablingDfuMode", - "printedName": "enablingDfuMode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, + "name": "RawValue", + "printedName": "RawValue", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateEnablingDfuMode", - "mangledName": "$s9ZTCoreKit8DFUStateO15enablingDfuModeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.log", + "printedName": "os.log", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTLogLevel", + "printedName": "ZTLogLevel", + "children": [ { "kind": "Var", - "name": "uploading", - "printedName": "uploading", + "name": "all", + "printedName": "all", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73830,41 +62757,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateUploading", - "mangledName": "$s9ZTCoreKit8DFUStateO9uploadingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO3allyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO3allyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 + "RawDocComment" + ] }, { "kind": "Var", - "name": "validating", - "printedName": "validating", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73872,41 +62797,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateValidating", - "mangledName": "$s9ZTCoreKit8DFUStateO10validatingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5debugyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5debugyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 + "RawDocComment" + ] }, { "kind": "Var", - "name": "disconnecting", - "printedName": "disconnecting", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73914,41 +62837,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateDisconnecting", - "mangledName": "$s9ZTCoreKit8DFUStateO13disconnectingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO4infoyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO4infoyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 + "RawDocComment" + ] }, { "kind": "Var", - "name": "completed", - "printedName": "completed", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73956,41 +62877,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateCompleted", - "mangledName": "$s9ZTCoreKit8DFUStateO9completedyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5erroryA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 6 + "RawDocComment" + ] }, { "kind": "Var", - "name": "aborted", - "printedName": "aborted", + "name": "fatal", + "printedName": "fatal", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73998,14 +62917,12 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateAborted", - "mangledName": "$s9ZTCoreKit8DFUStateO7abortedyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 7 + "RawDocComment" + ] }, { "kind": "Constructor", @@ -74015,27 +62932,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", + "printedName": "ZTCoreKit.ZTLogLevel?", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -74047,14 +62964,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivp", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -74065,14 +62982,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivg", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -74092,11 +63009,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvp", + "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "isFromExtension": true, "accessors": [ @@ -74113,8 +63031,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvg", + "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" @@ -74123,15 +63041,14 @@ } ], "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUState", - "mangledName": "$s9ZTCoreKit8DFUStateO", + "usr": "s:9ZTCoreKit10ZTLogLevelO", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "enumRawTypeName": "Int", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -74159,9 +63076,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } @@ -74180,500 +63097,166 @@ }, { "kind": "TypeDecl", - "name": "DFUProgressDelegate", - "printedName": "DFUProgressDelegate", - "children": [ - { - "kind": "Function", - "name": "dfuProgressDidChange", - "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate(im)dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avgnopQ0ySi_S2iS2dtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUProgressDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUServiceDelegate", - "printedName": "DFUServiceDelegate", - "children": [ - { - "kind": "Function", - "name": "dfuStateDidChange", - "printedName": "dfuStateDidChange(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuStateDidChangeTo:", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP17dfuStateDidChange2toyAA8DFUStateO_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "dfuStateDidChangeTo:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuError", - "printedName": "dfuError(_:didOccurWithMessage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuError:didOccurWithMessage:", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageSoftware", - "printedName": "ZTMessageSoftware", + "name": "ZTLogCategory", + "printedName": "ZTLogCategory", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "networkAgent", + "printedName": "networkAgent", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "modules", + "printedName": "modules", "children": [ { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "baseMajor", - "printedName": "baseMajor", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "baseMinor", - "printedName": "baseMinor", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } + "RawDocComment" ] }, { "kind": "Var", - "name": "baseBuild", - "printedName": "baseBuild", + "name": "sdk", + "printedName": "sdk", "children": [ { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "app", - "printedName": "app", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } + "RawDocComment" ] }, { - "kind": "Var", - "name": "appMajor", - "printedName": "appMajor", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLogCategory?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "appMinor", - "printedName": "appMinor", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "version", - "printedName": "version", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -74683,12 +63266,10 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -74703,9 +63284,10 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] @@ -74723,13 +63305,14 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", + "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -74744,94 +63327,67 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV", + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTLogCategoryO", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, @@ -74840,50 +63396,46 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTHexColorTransform", - "printedName": "ZTHexColorTransform", + "name": "ZTDictionaryTransform", + "printedName": "ZTDictionaryTransform", "children": [ { "kind": "Constructor", "name": "init", - "printedName": "init(prefixToJSON:alphaToJSON:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "ZTHexColorTransform", - "printedName": "ZTCoreKit.ZTHexColorTransform", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "ZTDictionaryTransform", + "printedName": "ZTCoreKit.ZTDictionaryTransform<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -74897,13 +63449,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIColor?", + "printedName": "[τ_0_0 : τ_0_1]?", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" @@ -74923,10 +63487,11 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -74940,13 +63505,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" @@ -74954,36 +63518,51 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIColor?", + "printedName": "[τ_0_0 : τ_0_1]?", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -74998,9 +63577,21 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ] }, @@ -75011,9 +63602,8 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ] } @@ -75025,8 +63615,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "ObjectiveC", + "printedName": "ObjectiveC", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -75045,40 +63635,65 @@ }, { "kind": "TypeDecl", - "name": "ZTActivityComment", - "printedName": "ZTActivityComment", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTMessageBootloaderInfo", "children": [ { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75087,108 +63702,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "timeZone", - "printedName": "timeZone", + "name": "bootloaderVersion", + "printedName": "bootloaderVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75197,108 +63743,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "appSupportVersion", + "printedName": "appSupportVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75307,108 +63784,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "softDeviceId", + "printedName": "softDeviceId", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75417,108 +63825,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "name": "dfuState", + "printedName": "dfuState", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75528,107 +63875,46 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75637,363 +63923,508 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DfuState", + "printedName": "DfuState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "inProgress", + "printedName": "inProgress", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "received", + "printedName": "received", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Var", + "name": "readyForCopy", + "printedName": "readyForCopy", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activation", + "printedName": "activation", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "done", + "printedName": "done", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "error", + "printedName": "error", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "mediaFiles", - "printedName": "mediaFiles", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "kind": "Var", + "name": "validationError", + "printedName": "validationError", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activationError", + "printedName": "activationError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" - } - ], - "usr": "s:Sa" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], + "implicit": true, + "throwing": true, "init_kind": "Designated" }, { "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -76002,25 +64433,23 @@ }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTActivityCommentC", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -76029,17 +64458,24 @@ "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -76053,34 +64489,36 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTSegmentData", - "printedName": "ZTSegmentData", + "name": "ZTMessageTime", + "printedName": "ZTMessageTime", "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -76097,22 +64535,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -76129,22 +64559,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvs", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -76161,8 +64583,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvM", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -76171,19 +64593,19 @@ }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "side", + "printedName": "side", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -76200,14 +64622,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -76224,14 +64646,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvs", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -76248,8 +64670,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16VvM", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -76257,147 +64679,61 @@ ] }, { - "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] + "init_kind": "Designated" }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -76406,1166 +64742,1267 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit13ZTMessageTimeV", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNotifyData", + "printedName": "ZTNotifyData", + "children": [ + { + "kind": "TypeDecl", + "name": "GroupID", + "printedName": "GroupID", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "common", + "printedName": "common", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "warm", + "printedName": "warm", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "Var", + "name": "running", + "printedName": "running", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "cycling", + "printedName": "cycling", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "safety", + "printedName": "safety", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "generic", + "printedName": "generic", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" } ], "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "timestampType", - "printedName": "timestampType", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SY", + "mangledName": "$sSY" } ] }, { - "kind": "Var", - "name": "bmTimestampType", - "printedName": "bmTimestampType", + "kind": "TypeDecl", + "name": "CommonMessageId", + "printedName": "CommonMessageId", "children": [ { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_GENERAL_STATES", + "printedName": "MSG_GENERAL_STATES", "children": [ { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_BATTERY_LEVEL", + "printedName": "MSG_BATTERY_LEVEL", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_MEMS", + "printedName": "MSG_MEMS", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetType", - "printedName": "packetType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_FLASH", + "printedName": "MSG_FLASH", "children": [ { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_TIME", + "printedName": "MSG_TIME", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_HARDWARE", + "printedName": "MSG_HARDWARE", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "originalTimestamp", - "printedName": "originalTimestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_SOFTWARE", + "printedName": "MSG_SOFTWARE", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_ACTIVITY_INFO", + "printedName": "MSG_ACTIVITY_INFO", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_ACTIVITY_METADATA", + "printedName": "MSG_ACTIVITY_METADATA", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetsNumber", - "printedName": "packetsNumber", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_RAWDATA_HEADER", + "printedName": "MSG_RAWDATA_HEADER", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_RAWDATA_FRAME", + "printedName": "MSG_RAWDATA_FRAME", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_BTLOADER_INFO", + "printedName": "MSG_BTLOADER_INFO", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "rawDescription", - "printedName": "rawDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_INACTIVITY_TIMEOUT", + "printedName": "MSG_INACTIVITY_TIMEOUT", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "MSG_CHUNK_SEND_STATUS", + "printedName": "MSG_CHUNK_SEND_STATUS", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_CHUNK_DATA", + "printedName": "MSG_CHUNK_DATA", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_CHUNK_CONFIG", + "printedName": "MSG_CHUNK_CONFIG", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_DEBUG", + "printedName": "MSG_DEBUG", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "retryCount", - "printedName": "retryCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivg", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivM", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CodingKeys", - "printedName": "CodingKeys", - "children": [ - { - "kind": "Var", - "name": "id", - "printedName": "id", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO2idyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO2idyA2EmF", - "moduleName": "ZTCoreKit" + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10activityIdyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10activityIdyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WarmMessageId", + "printedName": "WarmMessageId", + "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "MSG_HEATING_TEMP_1", + "printedName": "MSG_HEATING_TEMP_1", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77573,36 +66010,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO03rawD0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO03rawD0yA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "MSG_HEATING_TEMP_2", + "printedName": "MSG_HEATING_TEMP_2", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77610,36 +66047,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9timestampyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9timestampyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "MSG_HEATING_STEP_R_CNT", + "printedName": "MSG_HEATING_STEP_R_CNT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77647,36 +66084,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8durationyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8durationyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "MSG_HEATING_STEP_L_CNT", + "printedName": "MSG_HEATING_STEP_L_CNT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77684,36 +66121,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO6statusyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO6statusyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "packetType", - "printedName": "packetType", + "name": "MSG_HEATING_SETPOINT_R", + "printedName": "MSG_HEATING_SETPOINT_R", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77721,36 +66158,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10packetTypeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10packetTypeyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "timestampType", - "printedName": "timestampType", + "name": "MSG_HEATING_SETPOINT_L", + "printedName": "MSG_HEATING_SETPOINT_L", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77758,36 +66195,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO13timestampTypeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO13timestampTypeyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "originalTimestamp", - "printedName": "originalTimestamp", + "name": "MSG_GET_HEAT_TIMER", + "printedName": "MSG_GET_HEAT_TIMER", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77795,36 +66232,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO17originalTimestampyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO17originalTimestampyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "packetsNumber", - "printedName": "packetsNumber", + "name": "MSG_HEATING_DEBUG_R", + "printedName": "MSG_HEATING_DEBUG_R", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77832,36 +66269,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO13packetsNumberyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO13packetsNumberyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", + "name": "MSG_HEATING_DEBUG_L", + "printedName": "MSG_HEATING_DEBUG_L", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77869,94 +66306,58 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9fwVersionyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9fwVersionyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "retryCount", - "printedName": "retryCount", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId?", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10retryCountyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10retryCountyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO2eeoiySbAE_AEtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -77967,140 +66368,156 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RunningMessageId", + "printedName": "RunningMessageId", + "children": [ { "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", + "name": "UNKNOWN", + "printedName": "UNKNOWN", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId.Type) -> ZTCoreKit.ZTNotifyData.RunningMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", "name": "init", - "printedName": "init(stringValue:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys?", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId?", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueAESgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueAESgSS_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "intValue", - "printedName": "intValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -78111,70 +66528,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(intValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys?", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueAESgSi_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueAESgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -78192,311 +66566,59 @@ }, { "kind": "Conformance", - "name": "CodingKey", - "printedName": "CodingKey", - "usr": "s:s9CodingKeyP", - "mangledName": "$ss9CodingKeyP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4dataAC10Foundation0D0V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4dataAC10Foundation0D0V_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:activityId:fwversion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4data10activityId9fwversionAC10Foundation0D0V_S2SSgtcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4data10activityId9fwversionAC10Foundation0D0V_S2SSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Required", - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", - "children": [ - { - "kind": "Var", - "name": "new", - "printedName": "new", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO3newyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO3newyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sent", - "printedName": "sent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO4sentyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO4sentyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sending", - "printedName": "sending", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO7sendingyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO7sendingyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CyclingMessageId", + "printedName": "CyclingMessageId", + "children": [ { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "MSG_CADENCE", + "printedName": "MSG_CADENCE", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId.Type) -> ZTCoreKit.ZTNotifyData.CyclingMessageId", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" } ] } @@ -78504,8 +66626,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO5erroryA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO5erroryA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", "moduleName": "ZTCoreKit" }, { @@ -78516,27 +66638,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.Status?", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValueAESgs4Int8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValueAESgs4Int8V_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -78548,14 +66670,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -78566,14 +66688,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -78582,15 +66704,11 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], "isFromExtension": true, - "enumRawTypeName": "Int8", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -78618,63 +66736,49 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, { "kind": "TypeDecl", - "name": "TimestampType", - "printedName": "TimestampType", + "name": "SafetyMessageId", + "printedName": "SafetyMessageId", "children": [ { "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "name": "MSG_CALIBRATION_SAFETY", + "printedName": "MSG_CALIBRATION_SAFETY", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } ] } @@ -78682,36 +66786,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO7unknownyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "start", - "printedName": "start", + "name": "MSG_ALGO_RT_EVENT", + "printedName": "MSG_ALGO_RT_EVENT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } ] } @@ -78719,147 +66823,159 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5startyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5startyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "stop", - "printedName": "stop", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId?", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4stopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4stopyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "pause", - "printedName": "pause", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5pauseyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5pauseyA2EmF", - "moduleName": "ZTCoreKit" + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "resume", - "printedName": "resume", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6resumeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6resumeyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GenericMessageId", + "printedName": "GenericMessageId", + "children": [ { "kind": "Var", - "name": "reboot", - "printedName": "reboot", + "name": "MSG_ALGO_RT_EVENT", + "printedName": "MSG_ALGO_RT_EVENT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId.Type) -> ZTCoreKit.ZTNotifyData.GenericMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" } ] } @@ -78867,8 +66983,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6rebootyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6rebootyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", "moduleName": "ZTCoreKit" }, { @@ -78884,48 +67000,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -78944,8 +67020,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -78959,13 +67035,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType?", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId?", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" } ], "usr": "s:Sq" @@ -78978,8 +67054,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -78997,8 +67073,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -79015,8 +67091,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -79025,11 +67101,10 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], "isFromExtension": true, @@ -79070,1367 +67145,1761 @@ ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] - }, + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDeviceActualState", + "printedName": "ZTDeviceActualState", + "children": [ { - "kind": "TypeDecl", - "name": "BmTimestampType", - "printedName": "BmTimestampType", + "kind": "Var", + "name": "activityNone", + "printedName": "activityNone", "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO7unknownyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityStarting", + "printedName": "activityStarting", + "children": [ { - "kind": "Var", - "name": "shoeWearOn", - "printedName": "shoeWearOn", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO10shoeWearOnyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO10shoeWearOnyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "eraseMemory", + "printedName": "eraseMemory", + "children": [ { - "kind": "Var", - "name": "shoeWearOff", - "printedName": "shoeWearOff", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11shoeWearOffyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11shoeWearOffyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityRunning", + "printedName": "activityRunning", + "children": [ { - "kind": "Var", - "name": "walkingStart", - "printedName": "walkingStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12walkingStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12walkingStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityPaused", + "printedName": "activityPaused", + "children": [ { - "kind": "Var", - "name": "walkingStop", - "printedName": "walkingStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11walkingStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11walkingStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityStopping", + "printedName": "activityStopping", + "children": [ { - "kind": "Var", - "name": "runningStart", - "printedName": "runningStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12runningStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12runningStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityPendData", + "printedName": "activityPendData", + "children": [ { - "kind": "Var", - "name": "runningStop", - "printedName": "runningStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11runningStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11runningStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activitySendData", + "printedName": "activitySendData", + "children": [ { - "kind": "Var", - "name": "cyclingStart", - "printedName": "cyclingStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12cyclingStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12cyclingStartyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceActualState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "cyclingStop", - "printedName": "cyclingStop", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoState", + "printedName": "ZTAlgoState", + "children": [ + { + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11cyclingStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11cyclingStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walking", + "printedName": "walking", + "children": [ { - "kind": "Var", - "name": "transportStart", - "printedName": "transportStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO14transportStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO14transportStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pedaling", + "printedName": "pedaling", + "children": [ { - "kind": "Var", - "name": "transportStop", - "printedName": "transportStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "jump", + "printedName": "jump", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO13transportStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO13transportStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsUp", + "printedName": "stairsUp", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsDown", + "printedName": "stairsDown", + "children": [ { - "kind": "Var", - "name": "name", - "printedName": "name", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "standing", + "printedName": "standing", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType?", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "sitting", + "printedName": "sitting", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "kneeling", + "printedName": "kneeling", + "children": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeDecl", - "name": "PacketType", - "printedName": "PacketType", + "kind": "Var", + "name": "tiptoe", + "printedName": "tiptoe", "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO7unknownyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "vibration", + "printedName": "vibration", + "children": [ { - "kind": "Var", - "name": "quantification", - "printedName": "quantification", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14quantificationyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14quantificationyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "slip", + "printedName": "slip", + "children": [ { - "kind": "Var", - "name": "walkAnalysis", - "printedName": "walkAnalysis", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO12walkAnalysisyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO12walkAnalysisyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "incident", + "printedName": "incident", + "children": [ { - "kind": "Var", - "name": "runAnalysis", - "printedName": "runAnalysis", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11runAnalysisyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11runAnalysisyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "freewheel", + "printedName": "freewheel", + "children": [ { - "kind": "Var", - "name": "stairs", - "printedName": "stairs", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO6stairsyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO6stairsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" }, { - "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO7cyclingyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO7cyclingyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit11ZTAlgoStateO", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDfuDelegate", + "printedName": "ZTDfuDelegate", + "children": [ + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(firmwareDownloaded:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "jump", - "printedName": "jump", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO4jumpyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO4jumpyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(didFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "safety", - "printedName": "safety", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(didFail:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO6safetyyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO6safetyyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(progress:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "staticActivity", - "printedName": "staticActivity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14staticActivityyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14staticActivityyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(leftDidFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "debug", - "printedName": "debug", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO5debugyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO5debugyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(rightDidFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "debugTelemetry", - "printedName": "debugTelemetry", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14debugTelemetryyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14debugTelemetryyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageActivity", + "printedName": "ZTMessageActivity", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" }, { - "kind": "Var", - "name": "debugProba", - "printedName": "debugProba", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO10debugProbayA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO10debugProbayA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isRight", + "printedName": "isRight", + "children": [ { - "kind": "Var", - "name": "bmTimestampPacket", - "printedName": "bmTimestampPacket", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO011bmTimestampE0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO011bmTimestampE0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLeft", + "printedName": "isLeft", + "children": [ { - "kind": "Var", - "name": "fwTimestampPacket", - "printedName": "fwTimestampPacket", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO011fwTimestampE0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO011fwTimestampE0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selectedMode", + "printedName": "selectedMode", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeInterval", + "printedName": "timeInterval", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "lastSegmentId", - "printedName": "lastSegmentId(activityId:)", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, { "kind": "TypeNominal", "name": "String", @@ -80438,255 +68907,576 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13lastSegmentId08activityG0SiSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13lastSegmentId08activityG0SiSS_tFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "segmentsCount", - "printedName": "segmentsCount(activityId:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13segmentsCount10activityIdSiSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13segmentsCount10activityIdSiSS_tFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "loadUnsent", - "printedName": "loadUnsent(activityId:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadUnsent10activityIdSayACGSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadUnsent10activityIdSayACGSS_tFZ", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTMessageActivityV", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:)", + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityIdSayACGSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityIdSayACGSS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:startId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId05startH0SayACGSS_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId05startH0SayACGSS_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllPackets", - "printedName": "loadAllPackets(activityId:startId:lastId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14loadAllPackets10activityId05startI004lastI0SayACGSS_s6UInt16VSgAKtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14loadAllPackets10activityId05startI004lastI0SayACGSS_s6UInt16VSgAKtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllIds", - "printedName": "loadAllIds(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.Int]", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -80695,56 +69485,59 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadAllIds10activityId05startI003endI0SaySiGSS_s6UInt16VAJSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadAllIds10activityId05startI003endI0SaySiGSS_s6UInt16VAJSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "loadAllPacketsIds", - "printedName": "loadAllPacketsIds(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -80753,470 +69546,393 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17loadAllPacketsIds10activityId05startJ003endJ0Says6UInt16VGSS_A2ISgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17loadAllPacketsIds10activityId05startJ003endJ0Says6UInt16VGSS_A2ISgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "loadPrevious", - "printedName": "loadPrevious(activityId:chunkId:originalTimestamp:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12loadPrevious10activityId05chunkH017originalTimestampACSgSSSg_s6UInt16Vs5Int64VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12loadPrevious10activityId05chunkH017originalTimestampACSgSSSg_s6UInt16Vs5Int64VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadPacket", - "printedName": "loadPacket(activityId:id:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadPacket10activityId2idACSgSSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadPacket10activityId2idACSgSSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadLastFwVersionEvent", - "printedName": "loadLastFwVersionEvent(activityId:chunkId:startId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC22loadLastFwVersionEvent10activityId05chunkK005startK0ACSgSSSg_s6UInt16VAKSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC22loadLastFwVersionEvent10activityId05chunkK005startK0ACSgSSSg_s6UInt16VAKSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllChunks", - "printedName": "loadAllChunks(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTSegmentData>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:lastChunkId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId09lastChunkH0SayACGSS_s6UInt16VSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId09lastChunkH0SayACGSS_s6UInt16VSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:firstChunkId:lastChunkId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId010firstChunkH004lastjH0SayACGSS_s6UInt16VSgAKtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId010firstChunkH004lastjH0SayACGSS_s6UInt16VSgAKtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "clear", - "printedName": "clear(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC5clear10activityIdySSSg_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC5clear10activityIdySSSg_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "getMissedChunk", - "printedName": "getMissedChunk(activity:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" - } - ], - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14getMissedChunk8activitys6UInt16VSgAA10ZTActivityCSg_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14getMissedChunk8activitys6UInt16VSgAA10ZTActivityCSg_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "getMaxMissedChunk", - "printedName": "getMaxMissedChunk(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81225,50 +69941,59 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17getMaxMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17getMaxMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "getMissedPackets", - "printedName": "getMissedPackets(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt16]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81277,149 +70002,193 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC16getMissedPackets10activityId05startI003endI0Says6UInt16VGSgSS_A2ISgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC16getMissedPackets10activityId05startI003endI0Says6UInt16VGSgSS_A2ISgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "getMinMissedChunk", - "printedName": "getMinMissedChunk(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17getMinMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17getMinMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "getMinMissedPacketId", - "printedName": "getMinMissedPacketId(activityId:startId:lastId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC20getMinMissedPacketId08activityI005startI004lastI0s6UInt16VSgSS_AiJtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC20getMinMissedPacketId08activityI005startI004lastI0s6UInt16VSgSS_AiJtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "updateSegmentsTimestamp", - "printedName": "updateSegmentsTimestamp(activityId:startId:anchorTime:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81428,77 +70197,67 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC23updateSegmentsTimestamp10activityId05startI010anchorTimeySS_s6UInt16Vs5Int64VSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC23updateSegmentsTimestamp10activityId05startI010anchorTimeySS_s6UInt16Vs5Int64VSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "checkMissedChunks", - "printedName": "checkMissedChunks(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17checkMissedChunks10activityIdSbSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17checkMissedChunks10activityIdSbSS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Function", - "name": "hasMissedChunks", - "printedName": "hasMissedChunks(activityId:startIndex:endIndex:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81507,796 +70266,944 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15hasMissedChunks10activityId10startIndex03endK0SbSS_s6UInt16VSgAJtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15hasMissedChunks10activityId10startIndex03endK0SbSS_s6UInt16VSgAJtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "checkPacketToRemove", - "printedName": "checkPacketToRemove(activityId:packetId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0.Object]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC19checkPacketToRemove10activityId06packetJ0ySSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC19checkPacketToRemove10activityId06packetJ0ySSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "hasPreviousChunk", - "printedName": "hasPreviousChunk(activityId:currentIndex:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC16hasPreviousChunk10activityId12currentIndexSbSS_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC16hasPreviousChunk10activityId12currentIndexSbSS_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "isChunkSaved", - "printedName": "isChunkSaved(activityId:chunkId:startId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0.Object]]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12isChunkSaved10activityId05chunkI005startI0SbSSSg_s6UInt16VAJSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12isChunkSaved10activityId05chunkI005startI0SbSSSg_s6UInt16VAJSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "isSaved", - "printedName": "isSaved(activityId:chunkId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7isSaved10activityId05chunkH005startH003endH0SbSSSg_s6UInt16VAKSgALtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7isSaved10activityId05chunkH005startH003endH0SbSSSg_s6UInt16VAKSgALtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sa" }, { - "kind": "Function", - "name": "isChunkEmpty", - "printedName": "isChunkEmpty(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12isChunkEmpty10activityId05chunkI0SbSSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12isChunkEmpty10activityId05chunkI0SbSSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sa" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "save", - "printedName": "save()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4saveyyF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4saveyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "saveWithResult", - "printedName": "saveWithResult(_:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14saveWithResultyS2bF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14saveWithResultyS2bF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "forceSegmentsUpload", - "printedName": "forceSegmentsUpload(activityId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC19forceSegmentsUpload10activityIdySS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC19forceSegmentsUpload10activityIdySS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "updateSegment", - "printedName": "updateSegment(_:segment:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13updateSegment_7segmentySSSg_ACtF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13updateSegment_7segmentySSSg_ACtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTSegmentDataC", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC", + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" - ] + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTActivitySummaryStatus", + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", "children": [ { - "kind": "Var", - "name": "started", - "printedName": "started", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0.Object]]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "complete", - "printedName": "complete", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0.Object]]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "processing", - "printedName": "processing", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "errored", - "printedName": "errored", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:Sh" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0.Object>?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sh" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO", + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0.Object>?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sh" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTActivitySummary", - "printedName": "ZTActivitySummary", + "name": "ZTUserShoe", + "printedName": "ZTUserShoe", "children": [ { "kind": "Var", @@ -82305,14 +71212,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82329,14 +71244,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82353,14 +71276,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82377,8 +71308,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82387,19 +71318,27 @@ }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82415,14 +71354,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82439,14 +71386,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82463,8 +71418,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82473,19 +71428,40 @@ }, { "kind": "Var", - "name": "activityIdentifier", - "printedName": "activityIdentifier", + "name": "attributes", + "printedName": "attributes", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82501,14 +71477,35 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82525,14 +71522,35 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82549,8 +71567,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82559,27 +71577,27 @@ }, { "kind": "Var", - "name": "start", - "printedName": "start", + "name": "firmware", + "printedName": "firmware", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82596,21 +71614,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82628,21 +71646,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82659,8 +71677,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82669,8 +71687,8 @@ }, { "kind": "Var", - "name": "end", - "printedName": "end", + "name": "organizationId", + "printedName": "organizationId", "children": [ { "kind": "TypeNominal", @@ -82688,8 +71706,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82719,8 +71737,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82751,8 +71769,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82769,8 +71787,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82779,27 +71797,27 @@ }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "createdAt", + "printedName": "createdAt", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82816,21 +71834,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82848,21 +71866,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82879,8 +71897,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82889,27 +71907,27 @@ }, { "kind": "Var", - "name": "tz", - "printedName": "tz", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82926,21 +71944,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82958,21 +71976,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82989,8 +72007,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82998,183 +72016,409 @@ ] }, { - "kind": "Var", - "name": "startDate", - "printedName": "startDate", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTUserShoe?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTUserShoe", + "printedName": "ZTCoreKit.ZTUserShoe", + "usr": "s:9ZTCoreKit10ZTUserShoeC" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Firmware", + "printedName": "Firmware", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "arch", + "printedName": "arch", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "endDate", - "printedName": "endDate", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", @@ -83190,212 +72434,188 @@ "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummary?", - "children": [ + }, { "kind": "TypeNominal", - "name": "ZTActivitySummary", - "printedName": "ZTCoreKit.ZTActivitySummary", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC", "moduleName": "ZTCoreKit", "declAttributes": [ - "Required", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] } ], "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC", + "usr": "s:9ZTCoreKit10ZTUserShoeC", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" @@ -83427,31 +72647,51 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "ZTDateFormatterTransform", - "printedName": "ZTDateFormatterTransform", + "name": "ZTButtonlessDfuCharacteristic", + "printedName": "ZTButtonlessDfuCharacteristic", "children": [ { "kind": "Var", - "name": "dateFormatter", - "printedName": "dateFormatter", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "HasStorage", + "HasInitialValue", "Final", - "AccessControl" + "HasStorage", + "AccessControl", + "RawDocComment" ], "isLet": true, "hasStorage": true, @@ -83463,15 +72703,16 @@ "children": [ { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, "declAttributes": [ "Final" @@ -83481,184 +72722,138 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(dateFormatter:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "ZTDateFormatterTransform", - "printedName": "ZTCoreKit.ZTDateFormatterTransform", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC" - }, - { - "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTButtonlessDfuCharacteristic", + "printedName": "ZTCoreKit.ZTButtonlessDfuCharacteristic", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "isOpen": true, + "overriding": true, "declAttributes": [ - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "isOpen": true, + "overriding": true, "declAttributes": [ - "AccessControl" + "AccessControl", + "Override", + "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" ] }, { @@ -83666,23 +72861,6 @@ "name": "CoreBluetooth", "printedName": "CoreBluetooth", "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -83698,401 +72876,157 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTBleManager", - "printedName": "ZTBleManager", + "name": "ZTSamplingMode", + "printedName": "ZTSamplingMode", "children": [ { "kind": "Var", - "name": "advertisingServices", - "printedName": "advertisingServices", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } ] }, { "kind": "Var", - "name": "managerState", - "printedName": "managerState", + "name": "run", + "printedName": "run", "children": [ { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" }, { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "instance", - "printedName": "instance", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvpZ", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO3runyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO3runyA2CmF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvgZ", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } ] }, { "kind": "Var", - "name": "centralManager", - "printedName": "centralManager", + "name": "walk", + "printedName": "walk", "children": [ { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "ZTCBCentralManagerProtocol", - "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + }, { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCBCentralManagerProtocol", - "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddress", - "printedName": "macAddress", + "name": "parameters", + "printedName": "parameters", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -84102,62 +73036,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", + "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "deviceInfo", - "printedName": "deviceInfo", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "ZTCoreKit.ZTSamplingMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } ], - "hasStorage": true, + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84166,333 +73115,399 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTSamplingModeO", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTEnvironment", + "printedName": "ZTEnvironment", + "children": [ + { + "kind": "Var", + "name": "dev", + "printedName": "dev", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO3devyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO3devyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "serviceTypes", - "printedName": "serviceTypes", + "name": "staging", + "printedName": "staging", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ] } - ], - "usr": "s:SD" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "production", + "printedName": "production", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:SD" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "product", - "printedName": "product", + "name": "zcdev", + "printedName": "zcdev", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zcstaging", + "printedName": "zcstaging", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zcproduction", + "printedName": "zcproduction", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "connectedDevice", - "printedName": "connectedDevice", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivp", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84501,188 +73516,199 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivg", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "foundPeripherals", - "printedName": "foundPeripherals", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "[CoreBluetooth.CBPeripheral]?", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTEnvironmentO", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTModuleSide", + "printedName": "ZTModuleSide", + "children": [ + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTModuleSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTModuleSideO4leftyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO4leftyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "right", + "printedName": "right", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "[CoreBluetooth.CBPeripheral]?", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTModuleSide.Type", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "usr": "s:Sa" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTModuleSideO5rightyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO5rightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "scanning", - "printedName": "scanning", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTModuleSide?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "isDfuMode", - "printedName": "isDfuMode", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84691,1174 +73717,1126 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTModuleSideO", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "onBluetoothStateChange", - "printedName": "onBluetoothStateChange", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "decodeData", + "printedName": "decodeData(_:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", + "mangledName": "$s9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encodeData", + "printedName": "encodeData(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", + "mangledName": "$s9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUError", + "printedName": "DFUError", + "children": [ + { + "kind": "Var", + "name": "remoteLegacyDFUSuccess", + "printedName": "remoteLegacyDFUSuccess", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteLegacyDFUSuccessyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { "kind": "Var", - "name": "onDeviceStateChange", - "printedName": "onDeviceStateChange", + "name": "remoteLegacyDFUInvalidState", + "printedName": "remoteLegacyDFUInvalidState", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUInvalidState", + "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUInvalidStateyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "remoteLegacyDFUNotSupported", + "printedName": "remoteLegacyDFUNotSupported", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUNotSupportedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 }, { "kind": "Var", - "name": "onDeviceDiscovered", - "printedName": "onDeviceDiscovered", + "name": "remoteLegacyDFUDataExceedsLimit", + "printedName": "remoteLegacyDFUDataExceedsLimit", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUDataExceedsLimit", + "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteLegacyDFUDataExceedsLimityA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "remoteLegacyDFUCrcError", + "printedName": "remoteLegacyDFUCrcError", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUCrcError", + "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteLegacyDFUCrcErroryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "onDeviceConnectionFailed", - "printedName": "onDeviceConnectionFailed", + "name": "remoteLegacyDFUOperationFailed", + "printedName": "remoteLegacyDFUOperationFailed", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteLegacyDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "remoteSecureDFUSuccess", + "printedName": "remoteSecureDFUSuccess", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteSecureDFUSuccessyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 }, { "kind": "Var", - "name": "onScanFinished", - "printedName": "onScanFinished", + "name": "remoteSecureDFUOpCodeNotSupported", + "printedName": "remoteSecureDFUOpCodeNotSupported", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteSecureDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "remoteSecureDFUInvalidParameter", + "printedName": "remoteSecureDFUInvalidParameter", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidParameter", + "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteSecureDFUInvalidParameteryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 }, { "kind": "Var", - "name": "onReconnectFailed", - "printedName": "onReconnectFailed", + "name": "remoteSecureDFUInsufficientResources", + "printedName": "remoteSecureDFUInsufficientResources", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInsufficientResources", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUInsufficientResourcesyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "remoteSecureDFUInvalidObject", + "printedName": "remoteSecureDFUInvalidObject", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidObject", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUInvalidObjectyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 }, { "kind": "Var", - "name": "onGeneralStateUpdated", - "printedName": "onGeneralStateUpdated", + "name": "remoteSecureDFUSignatureMismatch", + "printedName": "remoteSecureDFUSignatureMismatch", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSignatureMismatch", + "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteSecureDFUSignatureMismatchyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "remoteSecureDFUUnsupportedType", + "printedName": "remoteSecureDFUUnsupportedType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUUnsupportedType", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUUnsupportedTypeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 12 }, { "kind": "Var", - "name": "onCommandAck", - "printedName": "onCommandAck", + "name": "remoteSecureDFUOperationNotPermitted", + "printedName": "remoteSecureDFUOperationNotPermitted", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationNotPermitted", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUOperationNotPermittedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "remoteSecureDFUOperationFailed", + "printedName": "remoteSecureDFUOperationFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager(im)init", - "mangledName": "$s9ZTCoreKit12ZTBleManagerCACycfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" + "fixedbinaryorder": 14 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:willRestoreState:)", + "kind": "Var", + "name": "remoteSecureDFUExtendedError", + "printedName": "remoteSecureDFUExtendedError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:SD" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:willRestoreState:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16willRestoreStateySo09CBCentralD0C_SDySSypGtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUExtendedError", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUExtendedErroryA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:willRestoreState:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 15 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:connectionEventDidOccur:for:)", + "kind": "Var", + "name": "remoteExtendedErrorWrongCommandFormat", + "printedName": "remoteExtendedErrorWrongCommandFormat", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBConnectionEvent", - "printedName": "CoreBluetooth.CBConnectionEvent", - "usr": "c:@E@CBConnectionEvent" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:connectionEventDidOccur:forPeripheral:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23connectionEventDidOccur3forySo09CBCentralD0C_So012CBConnectionG0VSo12CBPeripheralCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongCommandFormat", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongCommandFormatyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:connectionEventDidOccur:forPeripheral:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 16 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didDiscover:advertisementData:rssi:)", + "kind": "Var", + "name": "remoteExtendedErrorUnknownCommand", + "printedName": "remoteExtendedErrorUnknownCommand", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDiscoverPeripheral:advertisementData:RSSI:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_11didDiscover17advertisementData4rssiySo09CBCentralD0C_So12CBPeripheralCSDySSypGSo8NSNumberCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorUnknownCommand", + "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteExtendedErrorUnknownCommandyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didDiscoverPeripheral:advertisementData:RSSI:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 17 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didFailToConnect:error:)", + "kind": "Var", + "name": "remoteExtendedErrorInitCommandInvalid", + "printedName": "remoteExtendedErrorInitCommandInvalid", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didFailToConnectPeripheral:error:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16didFailToConnect5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInitCommandInvalid", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorInitCommandInvalidyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didFailToConnectPeripheral:error:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 18 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didConnect:)", + "kind": "Var", + "name": "remoteExtendedErrorFwVersionFailure", + "printedName": "remoteExtendedErrorFwVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didConnectPeripheral:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_10didConnectySo09CBCentralD0C_So12CBPeripheralCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorFwVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorFwVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didConnectPeripheral:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 19 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didDisconnectPeripheral:error:)", + "kind": "Var", + "name": "remoteExtendedErrorHwVersionFailure", + "printedName": "remoteExtendedErrorHwVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDisconnectPeripheral:error:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23didDisconnectPeripheral5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHwVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorHwVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didDisconnectPeripheral:error:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 20 }, { - "kind": "Function", - "name": "centralManagerDidUpdateState", - "printedName": "centralManagerDidUpdateState(_:)", + "kind": "Var", + "name": "remoteExtendedErrorSdVersionFailure", + "printedName": "remoteExtendedErrorSdVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManagerDidUpdateState:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD14DidUpdateStateyySo09CBCentralD0CF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSdVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSdVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManagerDidUpdateState:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "fixedbinaryorder": 21 }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoCommand", - "printedName": "ZTAlgoCommand", - "children": [ { "kind": "Var", - "name": "getStatus", - "printedName": "getStatus", + "name": "remoteExtendedErrorSignatureMissing", + "printedName": "remoteExtendedErrorSignatureMissing", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85866,39 +74844,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSignatureMissing", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSignatureMissingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 22 }, { "kind": "Var", - "name": "startNewChunk", - "printedName": "startNewChunk", + "name": "remoteExtendedErrorWrongHashType", + "printedName": "remoteExtendedErrorWrongHashType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85906,39 +74886,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongHashType", + "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteExtendedErrorWrongHashTypeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 23 }, { "kind": "Var", - "name": "changeProductMode", - "printedName": "changeProductMode", + "name": "remoteExtendedErrorHashFailed", + "printedName": "remoteExtendedErrorHashFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85946,39 +74928,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHashFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO29remoteExtendedErrorHashFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 24 }, { "kind": "Var", - "name": "setPrecisionMode", - "printedName": "setPrecisionMode", + "name": "remoteExtendedErrorWrongSignatureType", + "printedName": "remoteExtendedErrorWrongSignatureType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85986,39 +74970,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongSignatureType", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongSignatureTypeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 25 }, { "kind": "Var", - "name": "setMinimumNumberOfStrides", - "printedName": "setMinimumNumberOfStrides", + "name": "remoteExtendedErrorVerificationFailed", + "printedName": "remoteExtendedErrorVerificationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86026,39 +75012,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorVerificationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorVerificationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 26 }, { "kind": "Var", - "name": "enableStreamingOfValues", - "printedName": "enableStreamingOfValues", + "name": "remoteExtendedErrorInsufficientSpace", + "printedName": "remoteExtendedErrorInsufficientSpace", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86066,39 +75054,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInsufficientSpace", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteExtendedErrorInsufficientSpaceyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 27 }, { "kind": "Var", - "name": "setDisconnectionDelay", - "printedName": "setDisconnectionDelay", + "name": "remoteExperimentalButtonlessDFUSuccess", + "printedName": "remoteExperimentalButtonlessDFUSuccess", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86106,39 +75096,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO38remoteExperimentalButtonlessDFUSuccessyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 28 }, { "kind": "Var", - "name": "setUserInfo", - "printedName": "setUserInfo", + "name": "remoteExperimentalButtonlessDFUOpCodeNotSupported", + "printedName": "remoteExperimentalButtonlessDFUOpCodeNotSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86146,39 +75138,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO49remoteExperimentalButtonlessDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 29 }, { "kind": "Var", - "name": "setDailyTimestamp", - "printedName": "setDailyTimestamp", + "name": "remoteExperimentalButtonlessDFUOperationFailed", + "printedName": "remoteExperimentalButtonlessDFUOperationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86186,39 +75180,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO46remoteExperimentalButtonlessDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 30 }, { "kind": "Var", - "name": "getPositionOfPods", - "printedName": "getPositionOfPods", + "name": "remoteButtonlessDFUSuccess", + "printedName": "remoteButtonlessDFUSuccess", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86226,39 +75222,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO26remoteButtonlessDFUSuccessyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 31 }, { "kind": "Var", - "name": "enableSpecificPacket", - "printedName": "enableSpecificPacket", + "name": "remoteButtonlessDFUOpCodeNotSupported", + "printedName": "remoteButtonlessDFUOpCodeNotSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86266,39 +75264,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteButtonlessDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 32 }, { "kind": "Var", - "name": "holdRealtimeStreaming", - "printedName": "holdRealtimeStreaming", + "name": "remoteButtonlessDFUOperationFailed", + "printedName": "remoteButtonlessDFUOperationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86306,39 +75306,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO34remoteButtonlessDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 33 }, { "kind": "Var", - "name": "getSingleTimeMetrics", - "printedName": "getSingleTimeMetrics", + "name": "remoteButtonlessDFUInvalidAdvertisementName", + "printedName": "remoteButtonlessDFUInvalidAdvertisementName", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86346,39 +75348,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUInvalidAdvertisementName", + "mangledName": "$s9ZTCoreKit8DFUErrorO43remoteButtonlessDFUInvalidAdvertisementNameyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 34 }, { "kind": "Var", - "name": "calibrateGravity", - "printedName": "calibrateGravity", + "name": "remoteButtonlessDFUBusy", + "printedName": "remoteButtonlessDFUBusy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86386,195 +75390,125 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUBusy", + "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteButtonlessDFUBusyyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 35 }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "remoteButtonlessDFUNotBonded", + "printedName": "remoteButtonlessDFUNotBonded", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUNotBonded", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteButtonlessDFUNotBondedyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 36 }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "fileNotSpecified", + "printedName": "fileNotSpecified", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoMode", - "printedName": "ZTAlgoMode", - "children": [ + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileNotSpecified", + "mangledName": "$s9ZTCoreKit8DFUErrorO16fileNotSpecifiedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 37 + }, { "kind": "Var", - "name": "monitoring", - "printedName": "monitoring", + "name": "fileInvalid", + "printedName": "fileInvalid", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86582,36 +75516,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileInvalid", + "mangledName": "$s9ZTCoreKit8DFUErrorO11fileInvalidyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 38 }, { "kind": "Var", - "name": "gaming", - "printedName": "gaming", + "name": "extendedInitPacketRequired", + "printedName": "extendedInitPacketRequired", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86619,621 +75558,419 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorExtendedInitPacketRequired", + "mangledName": "$s9ZTCoreKit8DFUErrorO26extendedInitPacketRequiredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 39 }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "initPacketRequired", + "printedName": "initPacketRequired", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInitPacketRequired", + "mangledName": "$s9ZTCoreKit8DFUErrorO18initPacketRequiredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 40 }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "failedToConnect", + "printedName": "failedToConnect", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFailedToConnect", + "mangledName": "$s9ZTCoreKit8DFUErrorO15failedToConnectyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 41 }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "deviceDisconnected", + "printedName": "deviceDisconnected", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTAlgoModeO", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceDisconnected", + "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceDisconnectedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 42 }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageActivity", - "printedName": "ZTMessageActivity", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "bluetoothDisabled", + "printedName": "bluetoothDisabled", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBluetoothDisabled", + "mangledName": "$s9ZTCoreKit8DFUErrorO17bluetoothDisabledyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" + "fixedbinaryorder": 43 }, { "kind": "Var", - "name": "isRight", - "printedName": "isRight", + "name": "serviceDiscoveryFailed", + "printedName": "serviceDiscoveryFailed", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isLeft", - "printedName": "isLeft", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorServiceDiscoveryFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO22serviceDiscoveryFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "fixedbinaryorder": 44 }, { "kind": "Var", - "name": "selectedMode", - "printedName": "selectedMode", + "name": "deviceNotSupported", + "printedName": "deviceNotSupported", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceNotSupportedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 45 }, { "kind": "Var", - "name": "timeInterval", - "printedName": "timeInterval", + "name": "readingVersionFailed", + "printedName": "readingVersionFailed", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReadingVersionFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO20readingVersionFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 46 + }, + { + "kind": "Var", + "name": "enablingControlPointFailed", + "printedName": "enablingControlPointFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorEnablingControlPointFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO26enablingControlPointFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 47 + }, + { + "kind": "Var", + "name": "writingCharacteristicFailed", + "printedName": "writingCharacteristicFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorWritingCharacteristicFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO27writingCharacteristicFailedyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } + "declAttributes": [ + "RawDocComment", + "ObjC" ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTMessageActivityV", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "fixedbinaryorder": 48 }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSamplingMode", - "printedName": "ZTSamplingMode", - "children": [ { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "receivingNotificationFailed", + "printedName": "receivingNotificationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87241,39 +75978,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReceivingNotificationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO27receivingNotificationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 49 }, { "kind": "Var", - "name": "run", - "printedName": "run", + "name": "unsupportedResponse", + "printedName": "unsupportedResponse", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87281,39 +76020,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO3runyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO3runyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorUnsupportedResponse", + "mangledName": "$s9ZTCoreKit8DFUErrorO19unsupportedResponseyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 50 }, { "kind": "Var", - "name": "walk", - "printedName": "walk", + "name": "bytesLost", + "printedName": "bytesLost", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87321,68 +76062,98 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBytesLost", + "mangledName": "$s9ZTCoreKit8DFUErrorO9bytesLostyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 51 }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "crcError", + "printedName": "crcError", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorCrcError", + "mangledName": "$s9ZTCoreKit8DFUErrorO8crcErroryA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 52 + }, + { + "kind": "Var", + "name": "invalidInternalState", + "printedName": "invalidInternalState", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInvalidInternalState", + "mangledName": "$s9ZTCoreKit8DFUErrorO20invalidInternalStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 53 }, { "kind": "Constructor", @@ -87392,27 +76163,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSamplingMode?", + "printedName": "ZTCoreKit.DFUError?", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -87424,14 +76195,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -87442,14 +76213,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -87458,14 +76229,15 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTSamplingModeO", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO", + "usr": "c:@M@ZTCoreKit@E@DFUError", + "mangledName": "$s9ZTCoreKit8DFUErrorO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "Int", "conformances": [ { "kind": "Conformance", @@ -87493,83 +76265,49 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "ZTDFUState", - "printedName": "ZTDFUState", + "name": "DFUState", + "printedName": "DFUState", "children": [ { "kind": "Var", - "name": "started", - "printedName": "started", + "name": "connecting", + "printedName": "connecting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87577,36 +76315,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO7startedyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO7startedyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateConnecting", + "mangledName": "$s9ZTCoreKit8DFUStateO10connectingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { "kind": "Var", - "name": "startedLeft", - "printedName": "startedLeft", + "name": "starting", + "printedName": "starting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87614,36 +76357,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateStarting", + "mangledName": "$s9ZTCoreKit8DFUStateO8startingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 }, { "kind": "Var", - "name": "completedLeft", - "printedName": "completedLeft", + "name": "enablingDfuMode", + "printedName": "enablingDfuMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87651,36 +76399,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateEnablingDfuMode", + "mangledName": "$s9ZTCoreKit8DFUStateO15enablingDfuModeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 }, { "kind": "Var", - "name": "startedRight", - "printedName": "startedRight", + "name": "uploading", + "printedName": "uploading", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87688,36 +76441,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateUploading", + "mangledName": "$s9ZTCoreKit8DFUStateO9uploadingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 }, { "kind": "Var", - "name": "completedRight", - "printedName": "completedRight", + "name": "validating", + "printedName": "validating", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87725,36 +76483,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateValidating", + "mangledName": "$s9ZTCoreKit8DFUStateO10validatingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "completed", - "printedName": "completed", + "name": "disconnecting", + "printedName": "disconnecting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87762,36 +76525,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO9completedyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO9completedyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateDisconnecting", + "mangledName": "$s9ZTCoreKit8DFUStateO13disconnectingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "completed", + "printedName": "completed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87799,49 +76567,56 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO5erroryA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateCompleted", + "mangledName": "$s9ZTCoreKit8DFUStateO9completedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "aborted", + "printedName": "aborted", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateAborted", + "mangledName": "$s9ZTCoreKit8DFUStateO7abortedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 }, { "kind": "Constructor", @@ -87851,13 +76626,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDFUState?", + "printedName": "ZTCoreKit.DFUState?", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ], "usr": "s:Sq" @@ -87870,8 +76645,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -87889,8 +76664,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivp", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -87907,21 +76682,64 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivg", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTDFUStateO", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO", + "usr": "c:@M@ZTCoreKit@E@DFUState", + "mangledName": "$s9ZTCoreKit8DFUStateO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "enumRawTypeName": "Int", @@ -87961,2280 +76779,2760 @@ ], "usr": "s:SY", "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "DFUProgressDelegate", + "printedName": "DFUProgressDelegate", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "dfuProgressDidChange", + "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate(im)dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avgnopQ0ySi_S2iS2dtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUProgressDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "TypeDecl", + "name": "DFUServiceDelegate", + "printedName": "DFUServiceDelegate", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "dfuStateDidChange", + "printedName": "dfuStateDidChange(to:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuStateDidChangeTo:", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP17dfuStateDidChange2toyAA8DFUStateO_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "dfuStateDidChangeTo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Function", + "name": "dfuError", + "printedName": "dfuError(_:didOccurWithMessage:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuError:didOccurWithMessage:", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTMessageChunkSendStatus", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Var", + "name": "errorOutOfRange", + "printedName": "errorOutOfRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorSendFailed", + "printedName": "errorSendFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorUnexpected", + "printedName": "errorUnexpected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorNotFound", + "printedName": "errorNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", - "children": [ + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sa" + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Var", + "name": "bytes", + "printedName": "bytes", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[τ_0_0.Object]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Var", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", + "kind": "Var", + "name": "chunkId", + "printedName": "chunkId", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "Optional", + "printedName": "Swift.UInt16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt16?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt16?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Struct", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "TypeDecl", + "name": "ZTTransformOf", + "printedName": "ZTTransformOf", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Constructor", + "name": "init", + "printedName": "init(fromJSON:toJSON:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "ZTTransformOf", + "printedName": "ZTCoreKit.ZTTransformOf<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:9ZTCoreKit13ZTTransformOfC" + }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1?) -> τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + } + ] }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?) -> τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTTransformOfC", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "ZTEnumTransform", + "printedName": "ZTEnumTransform", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "ZTEnumTransform", + "printedName": "ZTCoreKit.ZTEnumTransform<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit15ZTEnumTransformC" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit15ZTEnumTransformCACyxGycfc", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformCACyxGycfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_0.RawValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.RawValue" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit15ZTEnumTransformC", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", "name": "DependentMember", - "printedName": "τ_0_0.Object" + "printedName": "τ_0_0.RawValue" } - ], - "usr": "s:Sa" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTISO8601DateTransform", + "printedName": "ZTISO8601DateTransform", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" + "name": "ZTISO8601DateTransform", + "printedName": "ZTCoreKit.ZTISO8601DateTransform", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" } ], - "usr": "s:SD" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTISO8601DateTransform", + "printedName": "ZTCoreKit.ZTISO8601DateTransform", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "superclassNames": [ + "ZTCoreKit.ZTDateFormatterTransform" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0.Object]]?", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDFUState", + "printedName": "ZTDFUState", + "children": [ + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:SD" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO7startedyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO7startedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "startedLeft", + "printedName": "startedLeft", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0.Object]]?", + "kind": "Var", + "name": "completedLeft", + "printedName": "completedLeft", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "startedRight", + "printedName": "startedRight", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "completedRight", + "printedName": "completedRight", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "completed", + "printedName": "completed", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO9completedyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO9completedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "error", + "printedName": "error", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } ], - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO5erroryA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDFUState?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } ], - "usr": "s:Sa" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTDFUStateO", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + "enumRawTypeName": "Int", + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:SY", + "mangledName": "$sSY" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTFirmwareRevision", + "printedName": "ZTFirmwareRevision", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Var", + "name": "fwSystemVersion", + "printedName": "fwSystemVersion", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Var", + "name": "productType", + "printedName": "productType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "bmVersion", + "printedName": "bmVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0.Object]]?", + "kind": "Var", + "name": "date", + "printedName": "date", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0.Object]]?", + "kind": "Var", + "name": "versions", + "printedName": "versions", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFwBmVersion?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "ZTFwBmVersion", + "printedName": "ZTCoreKit.ZTFwBmVersion", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFwBmVersion?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTFwBmVersion", + "printedName": "ZTCoreKit.ZTFwBmVersion", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(code:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sh" + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "kind": "Function", + "name": ">=", + "printedName": ">=(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } ], - "usr": "s:Sh" + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "fwSystemMajorVersion", + "printedName": "fwSystemMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0.Object>?", + "kind": "Var", + "name": "fwSystemMinorVersion", + "printedName": "fwSystemMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "fwSystemBuildVersion", + "printedName": "fwSystemBuildVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0.Object>?", + "kind": "Var", + "name": "bmMajorVersion", + "printedName": "bmMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "bmMinorVersion", + "printedName": "bmMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } ] }, { "kind": "TypeDecl", - "name": "ZTMediaFile", - "printedName": "ZTMediaFile", + "name": "ZTFwBmVersion", + "printedName": "ZTFwBmVersion", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "fwSystemMajorVersion", + "printedName": "fwSystemMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -90245,22 +79543,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90277,22 +79567,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90309,8 +79591,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90319,30 +79601,21 @@ }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "fwSystemMinorVersion", + "printedName": "fwSystemMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90355,22 +79628,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90387,22 +79652,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90419,8 +79676,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90429,30 +79686,21 @@ }, { "kind": "Var", - "name": "mimeType", - "printedName": "mimeType", + "name": "fwSystemBuildVersion", + "printedName": "fwSystemBuildVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90465,22 +79713,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90497,22 +79737,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90529,8 +79761,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90539,30 +79771,21 @@ }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "bmMajorVersion", + "printedName": "bmMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90575,22 +79798,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90607,22 +79822,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90639,8 +79846,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90649,30 +79856,21 @@ }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "bmMinorVersion", + "printedName": "bmMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90685,22 +79883,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90717,22 +79907,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90749,44 +79931,120 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] - }, + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCoreDataStack", + "printedName": "ZTCoreDataStack", + "children": [ { "kind": "Var", - "name": "mfableId", - "printedName": "mfableId", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCoreDataStack", + "printedName": "ZTCoreKit.ZTCoreDataStack", + "usr": "s:9ZTCoreKit0A9DataStackC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A9DataStackC6sharedACvpZ", + "mangledName": "$s9ZTCoreKit0A9DataStackC6sharedACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCoreDataStack", + "printedName": "ZTCoreKit.ZTCoreDataStack", + "usr": "s:9ZTCoreKit0A9DataStackC" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A9DataStackC6sharedACvgZ", + "mangledName": "$s9ZTCoreKit0A9DataStackC6sharedACvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvp", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Lazy", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -90795,22 +80053,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvg", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90827,22 +80077,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvs", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90859,44 +80101,143 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvM", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "oneTimeBackgroundContext", + "printedName": "oneTimeBackgroundContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC24oneTimeBackgroundContextSo015NSManagedObjectH0CyF", + "mangledName": "$s9ZTCoreKit0A9DataStackC24oneTimeBackgroundContextSo015NSManagedObjectH0CyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveOneTimeBackgroundContext", + "printedName": "saveOneTimeBackgroundContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC28saveOneTimeBackgroundContextyySo015NSManagedObjectI0CKF", + "mangledName": "$s9ZTCoreKit0A9DataStackC28saveOneTimeBackgroundContextyySo015NSManagedObjectI0CKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveContext", + "printedName": "saveContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC11saveContextyyKF", + "mangledName": "$s9ZTCoreKit0A9DataStackC11saveContextyyKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit0A9DataStackC", + "mangledName": "$s9ZTCoreKit0A9DataStackC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "children": [ { "kind": "Var", - "name": "mfableType", - "printedName": "mfableType", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -90906,23 +80247,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -90938,23 +80282,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -90969,42 +80316,89 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMediaFile", + "printedName": "ZTMediaFile", + "children": [ { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -91016,21 +80410,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -91048,21 +80442,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -91079,8 +80473,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -91089,27 +80483,27 @@ }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -91126,21 +80520,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -91158,21 +80552,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -91189,234 +80583,41 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMediaFile?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit11ZTMediaFileC", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapContext", - "printedName": "ZTMapContext", - "declKind": "Protocol", - "usr": "s:9ZTCoreKit12ZTMapContextP", - "mangledName": "$s9ZTCoreKit12ZTMapContextP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMap", - "printedName": "ZTMap", - "children": [ - { - "kind": "Var", - "name": "mappingType", - "printedName": "mappingType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "JSON", - "printedName": "JSON", + "name": "mimeType", + "printedName": "mimeType", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvp", - "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91428,113 +80629,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvg", - "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isKeyPresent", - "printedName": "isKeyPresent", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "currentValue", - "printedName": "currentValue", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91547,33 +80740,81 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "currentKey", - "printedName": "currentKey", + "name": "url", + "printedName": "url", "children": [ { "kind": "TypeNominal", @@ -91591,14 +80832,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91624,93 +80863,90 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "nestedKeyDelimiter", - "printedName": "nestedKeyDelimiter", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", - "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", - "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "context", - "printedName": "context", + "name": "mfableId", + "printedName": "mfableId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -91724,26 +80960,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -91759,26 +80992,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -91793,36 +81023,40 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shouldIncludeNilValues", - "printedName": "shouldIncludeNilValues", + "name": "mfableType", + "printedName": "mfableType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -91835,19 +81069,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -91862,19 +81101,24 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -91889,40 +81133,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "toObject", - "printedName": "toObject", + "name": "createdAt", + "printedName": "createdAt", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -91932,126 +81179,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(mappingType:JSON:toObject:context:shouldIncludeNilValues:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" }, { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapCyACSScip", - "mangledName": "$s9ZTCoreKit5ZTMapCyACSScip", + "declKind": "Var", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -92060,465 +81289,235 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapCyACSScig", - "mangledName": "$s9ZTCoreKit5ZTMapCyACSScig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:delimiter:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:delimiter:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMediaFile?", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:ignoreNil:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "ZTMap", "printedName": "ZTCoreKit.ZTMap", "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:delimiter:ignoreNil:)", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", + "declKind": "Func", + "usr": "s:9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit11ZTMediaFileC", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:ignoreNil:)", + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTPairedSolesCharacteristic", + "printedName": "ZTPairedSolesCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", + "declKind": "Var", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", - "AccessControl" + "HasStorage", + "AccessControl", + "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "declAttributes": [ "Final" ], @@ -92527,122 +81526,181 @@ ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:delimiter:ignoreNil:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", + "declKind": "Var", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPairedSolesCharacteristic", + "printedName": "ZTCoreKit.ZTPairedSolesCharacteristic", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], + "init_kind": "Designated" + }, { "kind": "Function", - "name": "value", - "printedName": "value()", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCodableTransform", + "printedName": "ZTCodableTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCodableTransform", + "printedName": "ZTCoreKit.ZTCodableTransform<τ_0_0>", "children": [ { "kind": "TypeNominal", @@ -92650,1656 +81708,1966 @@ "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit18ZTCodableTransformC" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5valuexSgylF", - "mangledName": "$s9ZTCoreKit5ZTMapC5valuexSgylF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTCodableTransformCACyxGycfc", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformCACyxGycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", + "usr": "s:9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTCodableTransformC", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "AssociatedType", + "name": "Object", + "printedName": "Object", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit15ZTTransformTypeP6ObjectQa", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP6ObjectQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "JSON", + "printedName": "JSON", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit15ZTTransformTypeP4JSONQa", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP4JSONQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", + "usr": "s:9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", "moduleName": "ZTCoreKit", "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "τ_0_0.JSON?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DependentMember", + "printedName": "τ_0_0.JSON" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNSDecimalNumberTransform", + "printedName": "ZTNSDecimalNumberTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "name": "ZTNSDecimalNumberTransform", + "printedName": "ZTCoreKit.ZTNSDecimalNumberTransform", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "Optional", + "printedName": "Foundation.NSDecimalNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.NSDecimalNumber?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" + } + ] }, { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "DFUUuidType", + "printedName": "DFUUuidType", + "children": [ + { + "kind": "Var", + "name": "legacyService", + "printedName": "legacyService", + "children": [ { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyServiceyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "legacyControlPoint", + "printedName": "legacyControlPoint", + "children": [ { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyControlPoint", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO18legacyControlPointyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "legacyPacket", + "printedName": "legacyPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyPacket", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12legacyPacketyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "legacyVersion", + "printedName": "legacyVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyVersion", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyVersionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "secureService", + "printedName": "secureService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureServiceyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 4 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "secureControl", + "printedName": "secureControl", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureControl", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureControlyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 5 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "securePacket", + "printedName": "securePacket", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecurePacket", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12securePacketyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 6 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessService", + "printedName": "buttonlessService", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO17buttonlessServiceyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 7 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessCharacteristic", + "printedName": "buttonlessCharacteristic", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessCharacteristic", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO24buttonlessCharacteristicyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 8 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessWithoutBondSharing", + "printedName": "buttonlessWithoutBondSharing", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithoutBondSharing", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO28buttonlessWithoutBondSharingyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 9 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessWithBondSharing", + "printedName": "buttonlessWithBondSharing", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithBondSharing", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO25buttonlessWithBondSharingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.DFUUuidType?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUUuid", + "printedName": "DFUUuid", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)uuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ "Final", + "HasStorage", + "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)uuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)type", + "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)type", + "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(withUUID:forType:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" }, { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)initWithUUID:forType:", + "mangledName": "$s9ZTCoreKit7DFUUuidC8withUUID7forTypeACSo6CBUUIDC_AA0cG0Otcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "objc_name": "initWithUUID:forType:", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)init", + "mangledName": "$s9ZTCoreKit7DFUUuidCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUUuidHelper", + "printedName": "DFUUuidHelper", + "children": [ + { + "kind": "Var", + "name": "legacyDFUService", + "printedName": "legacyDFUService", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUControlPoint", + "printedName": "legacyDFUControlPoint", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUPacket", + "printedName": "legacyDFUPacket", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUVersion", + "printedName": "legacyDFUVersion", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUVersion", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUVersion", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUService", + "printedName": "secureDFUService", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUControlPoint", + "printedName": "secureDFUControlPoint", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUPacket", + "printedName": "secureDFUPacket", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buttonlessExperimentalService", + "printedName": "buttonlessExperimentalService", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buttonlessExperimentalCharacteristic", + "printedName": "buttonlessExperimentalCharacteristic", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalCharacteristic", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalCharacteristic", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:using:)", + "kind": "Var", + "name": "buttonlessWithoutBonds", + "printedName": "buttonlessWithoutBonds", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithoutBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithoutBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", + "kind": "Var", + "name": "buttonlessWithBonds", + "printedName": "buttonlessWithBonds", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)init", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "overriding": true, + "objc_name": "init", "declAttributes": [ - "Final", + "Dynamic", + "ObjC", + "Override", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(customUuids:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[ZTCoreKit.DFUUuid]", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)initWithCustomUuids:", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC11customUuidsACSayAA0C0CG_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "objc_name": "initWithCustomUuids:", "declAttributes": [ - "Final", + "Convenience", + "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Convenience" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit5ZTMapC", - "mangledName": "$s9ZTCoreKit5ZTMapC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", + "ObjC", "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -94318,310 +83686,305 @@ }, { "kind": "Import", - "name": "CoreFoundation", - "printedName": "CoreFoundation", + "name": "os.log", + "printedName": "os.log", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTEntry", - "printedName": "ZTEntry", + "name": "ZTLogger", + "printedName": "ZTLogger", "children": [ { - "kind": "TypeDecl", - "name": "EntryType", - "printedName": "EntryType", + "kind": "Var", + "name": "instance", + "printedName": "instance", "children": [ { - "kind": "Var", - "name": "file", - "printedName": "file", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO4fileyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO4fileyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "kind": "TypeNominal", + "name": "ZTLogger", + "printedName": "ZTCoreKit.ZTLogger", + "usr": "s:9ZTCoreKit8ZTLoggerC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvpZ", + "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "directory", - "printedName": "directory", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTLogger", + "printedName": "ZTCoreKit.ZTLogger", + "usr": "s:9ZTCoreKit8ZTLoggerC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO9directoryyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO9directoryyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvgZ", + "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "ztDebugPrint", + "printedName": "ztDebugPrint(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "symlink", - "printedName": "symlink", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO7symlinkyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO7symlinkyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debug", + "printedName": "debug(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry.EntryType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueAESgSi_tcfc", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueAESgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "info", + "printedName": "info(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sa" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "Int", - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "path", - "printedName": "path(using:)", + "name": "fatal", + "printedName": "fatal(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" }, { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTEntryV4path5usingS2S10FoundationE8EncodingV_tF", - "mangledName": "$s9ZTCoreKit7ZTEntryV4path5usingS2S10FoundationE8EncodingV_tF", + "usr": "s:9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTLoggerC", + "mangledName": "$s9ZTCoreKit8ZTLoggerC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerLine", + "printedName": "ZTLoggerLine", + "children": [ { "kind": "Var", - "name": "path", - "printedName": "path", + "name": "notification", + "printedName": "notification", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV4pathSSvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV4pathSSvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94630,52 +83993,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV4pathSSvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV4pathSSvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "fileAttributes", - "printedName": "fileAttributes", + "name": "ble", + "printedName": "ble", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.FileAttributeKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "FileAttributeKey", - "printedName": "Foundation.FileAttributeKey", - "usr": "c:@T@NSFileAttributeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94684,52 +84041,44 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.FileAttributeKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "FileAttributeKey", - "printedName": "Foundation.FileAttributeKey", - "usr": "c:@T@NSFileAttributeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "checksum", - "printedName": "checksum", + "name": "date", + "printedName": "date", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV8checksums6UInt32Vvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV8checksums6UInt32Vvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94738,39 +84087,85 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV8checksums6UInt32Vvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV8checksums6UInt32Vvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "message", + "printedName": "message", "children": [ { "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94779,39 +84174,43 @@ "children": [ { "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "compressedSize", - "printedName": "compressedSize", + "name": "level", + "printedName": "level", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV14compressedSizeSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV14compressedSizeSivp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94820,39 +84219,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV14compressedSizeSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV14compressedSizeSivg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "uncompressedSize", - "printedName": "uncompressedSize", + "name": "category", + "printedName": "category", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV16uncompressedSizeSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV16uncompressedSizeSivp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94861,57 +84264,75 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV16uncompressedSizeSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV16uncompressedSizeSivg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTLoggerLine", + "printedName": "ZTCoreKit.ZTLoggerLine", + "usr": "s:9ZTCoreKit12ZTLoggerLineV" }, { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTEntryV2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit7ZTEntryV2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit7ZTEntryV", - "mangledName": "$s9ZTCoreKit7ZTEntryV", + "usr": "s:9ZTCoreKit12ZTLoggerLineV", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -94920,17 +84341,24 @@ "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -94939,456 +84367,540 @@ }, { "kind": "TypeDecl", - "name": "ZTMediaFileTemplate", - "printedName": "ZTMediaFileTemplate", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "DFUPeripheralSelectorDelegate", "children": [ { - "kind": "Var", - "name": "name", - "printedName": "name", + "kind": "Function", + "name": "select", + "printedName": "select(_:advertisementData:RSSI:hint:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : AnyObject]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)select:advertisementData:RSSI:hint:", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Function", + "name": "filterBy", + "printedName": "filterBy(hint:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)filterByHint:", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP8filterBy4hintSaySo6CBUUIDCGSgAG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "filterByHint:", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "ObjC", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTAlgoAcknowledgmentStatus", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "busy", + "printedName": "busy", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "invalidParam", + "printedName": "invalidParam", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "mimeType", - "printedName": "mimeType", + "name": "invalidState", + "printedName": "invalidState", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "fwResForbidden", + "printedName": "fwResForbidden", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] + } + ] + } ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "notSupported", + "printedName": "notSupported", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknownCommand", + "printedName": "unknownCommand", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "commandInProgress", + "printedName": "commandInProgress", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "noPeerResponse", + "printedName": "noPeerResponse", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "url", - "printedName": "url", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } ], - "hasStorage": true, + "declKind": "Var", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -95397,248 +84909,315 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityMode", + "printedName": "ZTActivityMode", + "children": [ + { + "kind": "Var", + "name": "safety", + "printedName": "safety", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "walking", + "printedName": "walking", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cycling", + "printedName": "cycling", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:fileName:mimeType:description:)", + "kind": "Var", + "name": "mobility", + "printedName": "mobility", "children": [ { - "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvp", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -95647,109 +85226,146 @@ "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvg", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Convenience", - "RawDocComment" - ], - "init_kind": "Convenience" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMediaFileTemplate?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Convenience", - "Required" - ], - "init_kind": "Convenience" + "implicit": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTActivityModeO", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true, + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -95758,126 +85374,226 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTPlisted", - "printedName": "ZTPlisted", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTActivitySummaryStatus", "children": [ { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "started", + "printedName": "started", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV3keySSvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3keySSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "complete", + "printedName": "complete", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV3keySSvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3keySSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "plist", - "printedName": "plist", + "name": "processing", + "printedName": "processing", "children": [ { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errored", + "printedName": "errored", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV12defaultValuexvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12defaultValuexvp", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -95886,86 +85602,97 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12defaultValuexvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12defaultValuexvg", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:plist:defaultValue:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTPlisted", - "printedName": "ZTCoreKit.ZTPlisted<τ_0_0>", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "usr": "s:9ZTCoreKit9ZTPlistedV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTPlistedV3key5plist12defaultValueACyxGSS_AA7ZTPlistCxtcfc", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3key5plist12defaultValueACyxGSS_AA7ZTPlistCxtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivitySummary", + "printedName": "ZTActivitySummary", + "children": [ { "kind": "Var", - "name": "wrappedValue", - "printedName": "wrappedValue", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -95974,16 +85701,16 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "accessorKind": "get" }, { @@ -95998,16 +85725,16 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvs", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "accessorKind": "set" }, { @@ -96022,66 +85749,29 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvM", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit9ZTPlistedV", - "mangledName": "$s9ZTCoreKit9ZTPlistedV", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "PropertyWrapper" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapError", - "printedName": "ZTMapError", - "children": [ + }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96097,22 +85787,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96129,22 +85811,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96161,8 +85835,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96171,26 +85845,19 @@ }, { "kind": "Var", - "name": "currentValue", - "printedName": "currentValue", + "name": "activityIdentifier", + "printedName": "activityIdentifier", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96206,21 +85873,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96237,21 +85897,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96268,8 +85921,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96278,8 +85931,8 @@ }, { "kind": "Var", - "name": "reason", - "printedName": "reason", + "name": "start", + "printedName": "start", "children": [ { "kind": "TypeNominal", @@ -96297,8 +85950,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96328,8 +85981,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96360,8 +86013,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96378,8 +86031,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96388,27 +86041,27 @@ }, { "kind": "Var", - "name": "file", - "printedName": "file", + "name": "end", + "printedName": "end", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96425,21 +86078,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96457,21 +86110,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96488,8 +86141,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96498,27 +86151,27 @@ }, { "kind": "Var", - "name": "function", - "printedName": "function", + "name": "duration", + "printedName": "duration", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96535,21 +86188,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96567,21 +86220,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96598,8 +86251,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96608,27 +86261,27 @@ }, { "kind": "Var", - "name": "line", - "printedName": "line", + "name": "tz", + "printedName": "tz", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96645,21 +86298,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96677,21 +86330,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96708,8 +86361,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96717,132 +86370,35 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:currentValue:reason:file:function:line:)", + "kind": "Var", + "name": "startDate", + "printedName": "startDate", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMapError", - "printedName": "ZTCoreKit.ZTMapError", - "usr": "s:9ZTCoreKit10ZTMapErrorV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.StaticString?", - "children": [ - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.StaticString?", - "children": [ - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -96851,533 +86407,108 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit10ZTMapErrorV", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "zlib", - "printedName": "zlib", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPeriod", - "printedName": "ZTPeriod", - "children": [ - { - "kind": "Var", - "name": "day", - "printedName": "day", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO3dayyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO3dayyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "week", - "printedName": "week", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO4weekyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO4weekyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "month", - "printedName": "month", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO5monthyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO5monthyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "year", - "printedName": "year", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO4yearyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO4yearyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTPeriod?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit8ZTPeriodO", - "mangledName": "$s9ZTCoreKit8ZTPeriodO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageGeneralState", - "printedName": "ZTMessageGeneralState", - "children": [ - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "byte1", - "printedName": "byte1", + "name": "endDate", + "printedName": "endDate", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -97387,111 +86518,107 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte2", - "printedName": "byte2", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "byte3", - "printedName": "byte3", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -97501,92 +86628,117 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(from:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummary?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummary", + "printedName": "ZTCoreKit.ZTActivitySummary", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "declAttributes": [ + "Required", + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", @@ -97595,36 +86747,95 @@ }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCBPeripheralManagerProtocol", + "printedName": "ZTCBPeripheralManagerProtocol", + "children": [ { "kind": "Var", - "name": "activityStartedRight", - "printedName": "activityStartedRight", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97633,76 +86844,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "activityStartedLeft", - "printedName": "activityStartedLeft", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvs", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvM", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "pairIsConnected", - "printedName": "pairIsConnected", + "name": "state", + "printedName": "state", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97711,24 +86951,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "memsHasError", - "printedName": "memsHasError", + "name": "isAdvertising", + "printedName": "isAdvertising", "children": [ { "kind": "TypeNominal", @@ -97738,10 +86981,10 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97756,135 +86999,313 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "firmwareDifferent", - "printedName": "firmwareDifferent", + "kind": "Function", + "name": "startAdvertising", + "printedName": "startAdvertising(_:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP16startAdvertisingyySDySSypGSgF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP16startAdvertisingyySDySSypGSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "actualState", - "printedName": "actualState", + "kind": "Function", + "name": "stopAdvertising", + "printedName": "stopAdvertising()", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP15stopAdvertisingyyF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP15stopAdvertisingyyF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDesiredConnectionLatency", + "printedName": "setDesiredConnectionLatency(_:for:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerConnectionLatency", + "printedName": "CoreBluetooth.CBPeripheralManagerConnectionLatency", + "usr": "c:@E@CBPeripheralManagerConnectionLatency" + }, + { + "kind": "TypeNominal", + "name": "CBCentral", + "printedName": "CoreBluetooth.CBCentral", + "usr": "c:objc(cs)CBCentral" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP27setDesiredConnectionLatency_3forySo012CBPeripheraldhI0V_So9CBCentralCtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP27setDesiredConnectionLatency_3forySo012CBPeripheraldhI0V_So9CBCentralCtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "previousState", - "printedName": "previousState", + "kind": "Function", + "name": "add", + "printedName": "add(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBMutableService", + "printedName": "CoreBluetooth.CBMutableService", + "usr": "c:objc(cs)CBMutableService" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP3addyySo16CBMutableServiceCF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP3addyySo16CBMutableServiceCF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBMutableService", + "printedName": "CoreBluetooth.CBMutableService", + "usr": "c:objc(cs)CBMutableService" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP6removeyySo16CBMutableServiceCF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP6removeyySo16CBMutableServiceCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeAllServices", + "printedName": "removeAllServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP17removeAllServicesyyF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP17removeAllServicesyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "respond", + "printedName": "respond(to:withResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBATTRequest", + "printedName": "CoreBluetooth.CBATTRequest", + "usr": "c:objc(cs)CBATTRequest" + }, + { + "kind": "TypeNominal", + "name": "Code", + "printedName": "CoreBluetooth.CBATTError.Code", + "usr": "c:@E@CBATTError" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP7respond2to10withResultySo12CBATTRequestC_So10CBATTErrorVtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP7respond2to10withResultySo12CBATTRequestC_So10CBATTErrorVtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateValue", + "printedName": "updateValue(_:for:onSubscribedCentrals:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBMutableCharacteristic", + "printedName": "CoreBluetooth.CBMutableCharacteristic", + "usr": "c:objc(cs)CBMutableCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBCentral]?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Array", + "printedName": "[CoreBluetooth.CBCentral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentral", + "printedName": "CoreBluetooth.CBCentral", + "usr": "c:objc(cs)CBCentral" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] - }, + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP11updateValue_3for20onSubscribedCentralsSb10Foundation4DataV_So23CBMutableCharacteristicCSaySo9CBCentralCGSgtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP11updateValue_3for20onSubscribedCentralsSb10Foundation4DataV_So23CBMutableCharacteristicCSaySo9CBCentralCGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPrimaryService", + "printedName": "ZTPrimaryService", + "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -97894,13 +87315,15 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "Final", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -97915,83 +87338,26 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "static": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUPeripheralSelector", - "printedName": "DFUPeripheralSelector", - "children": [ - { - "kind": "Function", - "name": "select", - "printedName": "select(_:advertisementData:RSSI:hint:)", + "kind": "Var", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : AnyObject]", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", @@ -98001,141 +87367,208 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)select:advertisementData:RSSI:hint:", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "objc_name": "select:advertisementData:RSSI:hint:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "filterBy", - "printedName": "filterBy(hint:)", - "children": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sa" + "usr": "s:SD" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)filterByHint:", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC8filterBy4hintSaySo6CBUUIDCGSgAG_tF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "objc_name": "filterByHint:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelector", - "printedName": "ZTCoreKit.DFUPeripheralSelector", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector" + "name": "ZTPrimaryService", + "printedName": "ZTCoreKit.ZTPrimaryService", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)init", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorCACycfc", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "Required" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ObjectiveC.NSObject" + "ZTCoreKit.ZTService" ], "conformances": [ { "kind": "Conformance", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP" + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, { "kind": "Conformance", @@ -98143,48 +87576,6 @@ "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -98307,14 +87698,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -98331,14 +87722,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -98355,14 +87746,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvs", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -98379,8 +87770,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16VvM", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -98394,14 +87785,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -98418,14 +87809,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -98442,14 +87833,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvs", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -98466,8 +87857,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16VvM", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -98481,14 +87872,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -98502,14 +87893,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -98565,1008 +87956,165 @@ "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "endTime", - "printedName": "endTime", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCodableTransform", - "printedName": "ZTCodableTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCodableTransform", - "printedName": "ZTCoreKit.ZTCodableTransform<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit18ZTCodableTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTCodableTransformCACyxGycfc", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformCACyxGycfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTCodableTransformC", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTURLTransform", - "printedName": "ZTURLTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(shouldEncodeURLString:allowedCharacterSet:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTURLTransform", - "printedName": "ZTCoreKit.ZTURLTransform", - "usr": "s:9ZTCoreKit14ZTURLTransformC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CharacterSet", - "printedName": "Foundation.CharacterSet", - "hasDefaultArg": true, - "usr": "s:10Foundation12CharacterSetV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit14ZTURLTransformC", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBleManagerState", - "printedName": "ZTBleManagerState", - "children": [ - { - "kind": "Var", - "name": "off", - "printedName": "off", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "on", - "printedName": "on", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "idle", - "printedName": "idle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "scanning", - "printedName": "scanning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "unauthorized", - "printedName": "unauthorized", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "resetting", - "printedName": "resetting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "name": "endTime", + "printedName": "endTime", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "init_kind": "Designated" }, { "kind": "Var", @@ -99581,11 +88129,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -99601,88 +88150,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" }, { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -99691,23 +88195,23 @@ }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO", + "declKind": "Struct", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -99716,17 +88220,17 @@ "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", @@ -99739,144 +88243,98 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTUserShoe", - "printedName": "ZTUserShoe", + "name": "ZTHexColorTransform", + "printedName": "ZTHexColorTransform", "children": [ { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Constructor", + "name": "init", + "printedName": "init(prefixToJSON:alphaToJSON:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTHexColorTransform", + "printedName": "ZTCoreKit.ZTHexColorTransform", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", @@ -99891,134 +88349,123 @@ } ], "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] - }, + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTReachability", + "printedName": "ZTReachability", + "children": [ { "kind": "Var", - "name": "attributes", - "printedName": "attributes", + "name": "currentAdapterMode", + "printedName": "currentAdapterMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100034,35 +88481,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100079,35 +88505,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100124,8 +88529,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100134,27 +88539,19 @@ }, { "kind": "Var", - "name": "firmware", - "printedName": "firmware", + "name": "currentConnectionStatus", + "printedName": "currentConnectionStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100170,22 +88567,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100202,22 +88591,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100234,8 +88615,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100244,27 +88625,39 @@ }, { "kind": "Var", - "name": "organizationId", - "printedName": "organizationId", + "name": "onConnectionReachable", + "printedName": "onConnectionReachable", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100281,21 +88674,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100313,21 +88718,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100344,8 +88761,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100354,27 +88771,39 @@ }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onConnectionUnReachable", + "printedName": "onConnectionUnReachable", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100391,21 +88820,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100423,21 +88864,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100454,8 +88907,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100464,27 +88917,19 @@ }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "managerStarted", + "printedName": "managerStarted", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100500,22 +88945,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100532,22 +88969,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100564,333 +88993,356 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUserShoe", - "printedName": "ZTCoreKit.ZTUserShoe", - "usr": "s:9ZTCoreKit10ZTUserShoeC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, { "kind": "TypeDecl", - "name": "Firmware", - "printedName": "Firmware", + "name": "Adapter", + "printedName": "Adapter", "children": [ { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "all", + "printedName": "all", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wiredEthernet", + "printedName": "wiredEthernet", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "arch", - "printedName": "arch", + "name": "loopback", + "printedName": "loopback", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "version", - "printedName": "version", + "kind": "Function", + "name": "getInterfaceType", + "printedName": "getInterfaceType()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "InterfaceType", + "printedName": "Network.NWInterface.InterfaceType", + "usr": "s:7Network11NWInterfaceV13InterfaceTypeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -100899,108 +89351,227 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "online", + "printedName": "online", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> (ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(adapter: ZTCoreKit.ZTReachability.Adapter)", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Connection.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "offline", + "printedName": "offline", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> ZTCoreKit.ZTReachability.Connection", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -101009,144 +89580,57 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -101154,44 +89638,95 @@ "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(adapter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startManager", + "printedName": "startManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC12startManageryyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC12startManageryyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopManager", + "printedName": "stopManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTUserShoeC", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC", + "usr": "s:9ZTCoreKit14ZTReachabilityC", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } + "AccessControl" ] }, { @@ -101206,204 +89741,330 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" + ] + }, + { + "kind": "Var", + "name": "ztActivityKey", + "printedName": "ztActivityKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ztActivityKeySSvp", + "mangledName": "$s9ZTCoreKit13ztActivityKeySSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ztActivityKeySSvg", + "mangledName": "$s9ZTCoreKit13ztActivityKeySSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] }, { "kind": "TypeDecl", - "name": "ZTLoggerComponent", - "printedName": "ZTLoggerComponent", + "name": "ZTActivity", + "printedName": "ZTActivity", "children": [ { "kind": "Var", - "name": "api", - "printedName": "api", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)id", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)id", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "app", - "printedName": "app", + "name": "activityIdentifier", + "printedName": "activityIdentifier", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)activityIdentifier", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)activityIdentifier", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setActivityIdentifier:", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "sdk", - "printedName": "sdk", + "name": "appId", + "printedName": "appId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)appId", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "firmware", - "printedName": "firmware", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)appId", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLoggerComponent?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setAppId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", @@ -101413,10 +90074,16 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)activityType", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], "accessors": [ { "kind": "Accessor", @@ -101431,265 +90098,348 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)activityType", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setActivityType:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTLoggerSeverity", - "printedName": "ZTLoggerSeverity", - "children": [ + ] + }, { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "startDate", + "printedName": "startDate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)startDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)startDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStartDate:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "info", - "printedName": "info", + "name": "endDate", + "printedName": "endDate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)endDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warn", - "printedName": "warn", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)endDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setEndDate:", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLoggerSeverity?", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)startTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)startTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStartTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "endTimestamp", + "printedName": "endTimestamp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)endTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], "accessors": [ { "kind": "Accessor", @@ -101698,53 +90448,61 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)endTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setEndTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "tz", + "printedName": "tz", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -101752,260 +90510,122 @@ "printedName": "Swift.String", "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappingType", - "printedName": "ZTMappingType", - "children": [ - { - "kind": "Var", - "name": "fromJSON", - "printedName": "fromJSON", - "children": [ + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)tz", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMappingType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "toJSON", - "printedName": "toJSON", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)tz", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMappingType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setTz:", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTMappingTypeO", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapper", - "printedName": "ZTMapper", - "children": [ { "kind": "Var", - "name": "context", - "printedName": "context", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)status", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -102015,27 +90635,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)status", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" }, @@ -102052,78 +90671,62 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStatus:", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shouldIncludeNilValues", - "printedName": "shouldIncludeNilValues", + "name": "packets", + "printedName": "packets", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)packets", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -102132,20 +90735,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)packets", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" }, @@ -102161,1853 +90771,2030 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setPackets:", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "metaDataRawValue", + "printedName": "metaDataRawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)metaDataRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)metaDataRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setMetaDataRawValue:", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], - "accessorKind": "_modify" + "accessorKind": "set" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(context:shouldIncludeNilValues:)", + "kind": "Var", + "name": "metaData", + "printedName": "metaData", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMapper", - "printedName": "ZTCoreKit.ZTMapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTMapperC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", - "mangledName": "$s9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:toObject:)", + "name": "metaData", + "printedName": "metaData(_:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDatayyAA25ZTMessageActivityMetadataVSgF", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDatayyAA25ZTMessageActivityMetadataVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:toObject:)", + "kind": "Var", + "name": "stopReasonRawValue", + "printedName": "stopReasonRawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)stopReasonRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:toObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)stopReasonRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStopReasonRawValue:", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:)", + "kind": "Var", + "name": "stopReason", + "printedName": "stopReason", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "stopReason", + "printedName": "stopReason(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonyyAA0c8LastStopE0OSgF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonyyAA0c8LastStopE0OSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:)", + "kind": "Var", + "name": "isRawDataMode", + "printedName": "isRawDataMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isRawDataMode", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isRawDataMode", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsRawDataMode:", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAutomatic", + "printedName": "isAutomatic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isAutomatic", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isAutomatic", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsAutomatic:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "forceStop", + "printedName": "forceStop", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)forceStop", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)forceStop", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setForceStop:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isInterrupted", + "printedName": "isInterrupted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isInterrupted", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONArray:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isInterrupted", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsInterrupted:", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "firstChunkId", + "printedName": "firstChunkId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)firstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)firstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setFirstChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "lastChunkId", + "printedName": "lastChunkId", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)lastChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)lastChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setLastChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "chunkCount", + "printedName": "chunkCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)chunkCount", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)chunkCount", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setChunkCount:", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "anchorTimestamp", + "printedName": "anchorTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)anchorTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:toDictionary:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)anchorTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setAnchorTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "customActivityStartTimestamp", + "printedName": "customActivityStartTimestamp", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)customActivityStartTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)customActivityStartTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setCustomActivityStartTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "customActivityFirstChunkId", + "printedName": "customActivityFirstChunkId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)customActivityFirstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:toDictionary:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)customActivityFirstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setCustomActivityFirstChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)fwVersion", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)fwVersion", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSON:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setFwVersion:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shoesSerial", + "printedName": "shoesSerial", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)shoesSerial", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArrayOfArrays", - "printedName": "mapArrayOfArrays(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)shoesSerial", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "parseJSONStringIntoDictionary", - "printedName": "parseJSONStringIntoDictionary(JSONString:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setShoesSerial:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "parseJSONString", - "printedName": "parseJSONString(JSONString:)", + "kind": "Var", + "name": "duration", + "printedName": "duration", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(entity:insertInto:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "NSEntityDescription", + "printedName": "CoreData.NSEntityDescription", + "usr": "c:objc(cs)NSEntityDescription" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "CoreData.NSManagedObjectContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)initWithEntity:insertIntoManagedObjectContext:", + "mangledName": "$s9ZTCoreKit10ZTActivityC6entity10insertIntoACSo19NSEntityDescriptionC_So22NSManagedObjectContextCSgtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", + "overriding": true, + "objc_name": "initWithEntity:insertIntoManagedObjectContext:", "declAttributes": [ - "Final" + "Dynamic", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONArray:)", + "name": "loadAll", + "printedName": "loadAll(firstChunkId:lastChunkId:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[τ_0_0]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONString:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA8ZTPacketCGs5Int16VSg_ALtF", + "mangledName": "$s9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA8ZTPacketCGs5Int16VSg_ALtF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONObject:)", + "name": "lastSavedChunkId", + "printedName": "lastSavedChunkId(startId:lastId:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s5Int16VAHSg_AItF", + "mangledName": "$s9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s5Int16VAHSg_AItF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONString:)", + "name": "addToCache", + "printedName": "addToCache(_:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC10addToCacheyyAA8ZTPacketCF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10addToCacheyyAA8ZTPacketCF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:)", + "name": "uploadCache", + "printedName": "uploadCache(completion:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } - ], - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveCachedPackets", + "printedName": "saveCachedPackets()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:)", + "name": "upload", + "printedName": "upload(_:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC6uploadyySayxGYaKAA16ZTPacketCachableRzlF", + "mangledName": "$s9ZTCoreKit10ZTActivityC6uploadyySayxGYaKAA16ZTPacketCachableRzlF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final" + "AccessControl" ], - "isFromExtension": true, "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSONObject:)", + "name": "fetchRequest", + "printedName": "fetchRequest()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "NSFetchRequest", + "printedName": "CoreData.NSFetchRequest", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" - }, + "usr": "c:objc(cs)NSFetchRequest" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC12fetchRequestSo07NSFetchE0CyACGyFZ", + "mangledName": "$s9ZTCoreKit10ZTActivityC12fetchRequestSo07NSFetchE0CyACGyFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl", + "NonObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPacketIds", + "printedName": "getPacketIds()", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC12getPacketIdsSays5Int16VGyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC12getPacketIdsSays5Int16VGyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSON:)", + "name": "setPackets", + "printedName": "setPackets(ids:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC10setPackets3idsSays5Int16VGAH_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10setPackets3idsSays5Int16VGAH_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "DiscardableResult" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapArrayOfArrays", - "printedName": "mapArrayOfArrays(JSONObject:)", + "name": "addPacket", + "printedName": "addPacket(id:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[[τ_0_0]]", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC9addPacket2idSays5Int16VGAG_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC9addPacket2idSays5Int16VGAG_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl", + "DiscardableResult" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "map", - "printedName": "map(JSONfile:)", + "name": "getActulState", + "printedName": "getActulState()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC13getActulStateAA014ZTDeviceActualF0OyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC13getActulStateAA014ZTDeviceActualF0OyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(actualState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", + "usr": "s:9ZTCoreKit10ZTActivityC6update11actualStateyAA014ZTDeviceActualF0O_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC6update11actualStateyAA014ZTDeviceActualF0O_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity", + "mangledName": "$s9ZTCoreKit10ZTActivityC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "ZTActivity", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSManagedObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreData.NSManagedObject", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTActivityCachable", + "printedName": "ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP" }, { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONfile:)", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ObservableObject", + "printedName": "ObservableObject", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeWitness", + "name": "ObjectWillChangePublisher", + "printedName": "ObjectWillChangePublisher", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ObservableObjectPublisher", + "printedName": "Combine.ObservableObjectPublisher", + "usr": "s:7Combine25ObservableObjectPublisherC" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:7Combine16ObservableObjectP", + "mangledName": "$s7Combine16ObservableObjectP" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTManufacturerNameCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -104015,434 +92802,767 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", - "mangledName": "$s9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", + "declKind": "Var", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "overriding": true, + "isOpen": true, "declAttributes": [ - "Final", "AccessControl", - "RawDocComment" + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "toJSONDictionary", - "printedName": "toJSONDictionary(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPacket", + "printedName": "ZTPacket", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC3keySSvpZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC3keySSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC3keySSvgZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC3keySSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)id", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)id", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setId:", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)createdAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONDictionaryOfArrays", - "printedName": "toJSONDictionaryOfArrays(_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)createdAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setCreatedAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "fulfilledAt", + "printedName": "fulfilledAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)fulfilledAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)fulfilledAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setFulfilledAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] }, { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", + "kind": "Var", + "name": "scheduledDeleted", + "printedName": "scheduledDeleted", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)scheduledDeleted", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)scheduledDeleted", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setScheduledDeleted:", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sentAt", + "printedName": "sentAt", + "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)sentAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)sentAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setSentAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "toJSONData", - "printedName": "toJSONData(_:options:)", + "kind": "Var", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", @@ -104457,730 +93577,634 @@ } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "WritingOptions", - "printedName": "Foundation.JSONSerialization.WritingOptions", - "usr": "c:@E@NSJSONWritingOptions" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)rawData", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)rawData", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONObject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setRawData:", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "activity", + "printedName": "activity", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)activity", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONArray:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONSet", - "printedName": "toJSONSet(_:)", - "children": [ + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)activity", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setActivity:", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" ], - "usr": "s:Sh" + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", + "kind": "Var", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTMapperC", - "mangledName": "$s9ZTCoreKit8ZTMapperC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTMessageChunkSendStatus", - "children": [ - { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "success", - "printedName": "success", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "errorOutOfRange", - "printedName": "errorOutOfRange", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvs", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvs", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "errorSendFailed", - "printedName": "errorSendFailed", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvM", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { - "kind": "Var", - "name": "errorUnexpected", - "printedName": "errorUnexpected", + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)timestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)timestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "errorNotFound", - "printedName": "errorNotFound", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setTimestamp:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)duration", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)duration", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setDuration:", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" - }, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "statusRawValue", + "printedName": "statusRawValue", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)statusRawValue", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)statusRawValue", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setStatusRawValue:", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvs", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvs", + "moduleName": "ZTCoreKit", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "bytes", - "printedName": "bytes", + "name": "timestampType", + "printedName": "timestampType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105189,59 +94213,80 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovs", + "moduleName": "ZTCoreKit", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0OvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "bmTimestampType", + "printedName": "bmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105250,24 +94295,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -105282,24 +94318,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovs", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "set" }, { @@ -105314,8 +94341,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -105324,35 +94351,24 @@ }, { "kind": "Var", - "name": "chunkId", - "printedName": "chunkId", + "name": "packetType", + "printedName": "packetType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105361,24 +94377,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -105393,24 +94400,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovs", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "set" }, { @@ -105425,8 +94423,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -105434,60 +94432,104 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "originalTimestamp", + "printedName": "originalTimestamp", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)originalTimestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)originalTimestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setOriginalTimestamp:", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "packetsNumber", + "printedName": "packetsNumber", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)packetsNumber", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], "accessors": [ { @@ -105497,100 +94539,56 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)packetsNumber", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setPacketsNumber:", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTButtonlessDfuCharacteristic", - "printedName": "ZTButtonlessDfuCharacteristic", - "children": [ + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "rawDescription", + "printedName": "rawDescription", "children": [ { "kind": "TypeNominal", @@ -105600,19 +94598,13 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTPacketC14rawDescriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC14rawDescriptionSSvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105627,49 +94619,44 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTPacketC14rawDescriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC14rawDescriptionSSvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "fwVersion", + "printedName": "fwVersion", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)fwVersion", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105679,561 +94666,1012 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)fwVersion", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setFwVersion:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", "children": [ { "kind": "TypeNominal", - "name": "ZTButtonlessDfuCharacteristic", - "printedName": "ZTCoreKit.ZTButtonlessDfuCharacteristic", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)retryCount", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Dynamic", "AccessControl", - "Required", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)retryCount", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setRetryCount:", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivityLastStopReason", - "printedName": "ZTActivityLastStopReason", - "children": [ + ] + }, { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO2idyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO2idyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityId", + "printedName": "activityId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10activityIdyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10activityIdyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "rawData", + "printedName": "rawData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO7rawDatayA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO7rawDatayA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9timestampyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9timestampyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8durationyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8durationyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO6statusyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO6statusyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "packetType", + "printedName": "packetType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10packetTypeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10packetTypeyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timestampType", + "printedName": "timestampType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO13timestampTypeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO13timestampTypeyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "originalTimestamp", + "printedName": "originalTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO17originalTimestampyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO17originalTimestampyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "packetsNumber", + "printedName": "packetsNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO13packetsNumberyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO13packetsNumberyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9fwVersionyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9fwVersionyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10retryCountyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10retryCountyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ] + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "userRequest", - "printedName": "userRequest", - "children": [ + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "memoryFull", - "printedName": "memoryFull", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ] + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "inactivity", - "printedName": "inactivity", - "children": [ + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "intValue", + "printedName": "intValue", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTISO8601DateTransform", - "printedName": "ZTISO8601DateTransform", - "children": [ { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "ZTISO8601DateTransform", - "printedName": "ZTCoreKit.ZTISO8601DateTransform", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformCACycfc", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "usr": "s:9ZTCoreKit8ZTPacketC4dataAC10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4dataAC10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "init_kind": "Designated" }, { "kind": "Constructor", "name": "init", - "printedName": "init(dateFormatter:)", + "printedName": "init(entity:insertInto:)", "children": [ { "kind": "TypeNominal", - "name": "ZTISO8601DateTransform", - "printedName": "ZTCoreKit.ZTISO8601DateTransform", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" }, { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "NSEntityDescription", + "printedName": "CoreData.NSEntityDescription", + "usr": "c:objc(cs)NSEntityDescription" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreData.NSManagedObjectContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "usr": "s:Sq" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)initWithEntity:insertIntoManagedObjectContext:", + "mangledName": "$s9ZTCoreKit8ZTPacketC6entity10insertIntoACSo19NSEntityDescriptionC_So22NSManagedObjectContextCSgtcfc", "moduleName": "ZTCoreKit", "overriding": true, - "implicit": true, + "objc_name": "initWithEntity:insertIntoManagedObjectContext:", "declAttributes": [ - "Override" + "Dynamic", + "ObjC", + "Override", + "AccessControl" ], "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "superclassNames": [ - "ZTCoreKit.ZTDateFormatterTransform" - ], - "conformances": [ + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:activity:fwVersion:context:name:)", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -106241,34 +95679,16 @@ "printedName": "Swift.String", "usr": "s:SS" } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPrimaryService", - "printedName": "ZTPrimaryService", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + }, { "kind": "TypeNominal", "name": "String", @@ -106276,358 +95696,227 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC4data8activity9fwVersion7context4nameAC10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgSo22NSManagedObjectContextCSStcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4data8activity9fwVersion7context4nameAC10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgSo22NSManagedObjectContextCSStcfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", "AccessControl", + "Required", "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", + "Required", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Function", + "name": "saveWithResult", + "printedName": "saveWithResult(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPrimaryService", - "printedName": "ZTCoreKit.ZTPrimaryService", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14saveWithResultyS2bF", + "mangledName": "$s9ZTCoreKit8ZTPacketC14saveWithResultyS2bF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, + "isOpen": true, "declAttributes": [ - "Required" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappableResponseSerializer", - "printedName": "ZTMappableResponseSerializer", - "children": [ - { - "kind": "Var", - "name": "emptyResponseCodes", - "printedName": "emptyResponseCodes", + "kind": "Function", + "name": "updateSegmentsTimestamp", + "printedName": "updateSegmentsTimestamp(activityId:startId:anchorTime:)", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC23updateSegmentsTimestamp10activityId05startH010anchorTimeySS_s5Int16Vs5Int64VSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC23updateSegmentsTimestamp10activityId05startH010anchorTimeySS_s5Int16Vs5Int64VSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ "Final", - "HasStorage", "AccessControl", - "RawDocComment" + "Available" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateSegment", + "printedName": "updateSegment(_:segment:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sh" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13updateSegment_7segmentySSSg_ACtF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13updateSegment_7segmentySSSg_ACtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "keyPath", - "printedName": "keyPath", + "kind": "Function", + "name": "updateSegments", + "printedName": "updateSegments(ids:status:activityId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, { "kind": "TypeNominal", "name": "Optional", @@ -106643,1764 +95932,1768 @@ "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14updateSegments3ids6status10activityIdySays5Int16VG_AC6StatusOSSSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14updateSegments3ids6status10activityIdySays5Int16VG_AC6StatusOSSSgtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "Final", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "new", + "printedName": "new", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvg", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO3newyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO3newyA2EmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, "declAttributes": [ - "Final" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readyToSend", + "printedName": "readyToSend", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "context", - "printedName": "context", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO11readyToSendyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO11readyToSendyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Var", + "name": "sending", + "printedName": "sending", "children": [ { - "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO7sendingyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO7sendingyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "sent", + "printedName": "sent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO4sentyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO4sentyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO5erroryA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO5erroryA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "ZTCoreKit.ZTPacket.Status?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValueAESgs5Int16V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValueAESgs5Int16V_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "object", - "printedName": "object", - "children": [ + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "Int16", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { - "kind": "Var", - "name": "serializeCallback", - "printedName": "serializeCallback", + "kind": "TypeDecl", + "name": "TimestampType", + "printedName": "TimestampType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> τ_0_0", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO5startyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO5startyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stop", + "printedName": "stop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4stopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4stopyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pause", + "printedName": "pause", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO5pauseyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO5pauseyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "resume", + "printedName": "resume", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> τ_0_0", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ] } ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "serialize", - "printedName": "serialize(request:response:data:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO6resumeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO6resumeyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Var", + "name": "reboot", + "printedName": "reboot", "children": [ { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO6rebootyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO6rebootyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.TimestampType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC9serialize7request8response4data5errorx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAI4DataVSgs5Error_pSgtKF", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC9serialize7request8response4data5errorx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAI4DataVSgs5Error_pSgtKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTMappableArrayResponseSerializer", - "printedName": "ZTMappableArrayResponseSerializer", - "children": [ - { - "kind": "Var", - "name": "emptyResponseCodes", - "printedName": "emptyResponseCodes", - "children": [ + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sh" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sh" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { - "kind": "Var", - "name": "keyPath", - "printedName": "keyPath", + "kind": "TypeDecl", + "name": "BmTimestampType", + "printedName": "BmTimestampType", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "shoeWearOn", + "printedName": "shoeWearOn", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "context", - "printedName": "context", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO10shoeWearOnyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO10shoeWearOnyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Var", + "name": "shoeWearOff", + "printedName": "shoeWearOff", "children": [ { - "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11shoeWearOffyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11shoeWearOffyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "walkingStart", + "printedName": "walkingStart", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "serializeCallback", - "printedName": "serializeCallback", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12walkingStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12walkingStartyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [τ_0_0]", + "kind": "Var", + "name": "walkingStop", + "printedName": "walkingStop", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sa" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11walkingStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11walkingStopyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "runningStart", + "printedName": "runningStart", + "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } - ], - "usr": "s:Sq" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12runningStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12runningStartyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "runningStop", + "printedName": "runningStop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11runningStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11runningStopyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "cyclingStart", + "printedName": "cyclingStart", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [τ_0_0]", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ] } ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "serialize", - "printedName": "serialize(request:response:data:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12cyclingStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12cyclingStartyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Var", + "name": "cyclingStop", + "printedName": "cyclingStop", "children": [ { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11cyclingStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11cyclingStopyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "kind": "Var", + "name": "transportStart", + "printedName": "transportStart", "children": [ { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO14transportStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO14transportStartyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "transportStop", + "printedName": "transportStop", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO13transportStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO13transportStopyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC9serialize7request8response4data5errorSayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAJ4DataVSgs5Error_pSgtKF", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC9serialize7request8response4data5errorSayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAJ4DataVSgs5Error_pSgtKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTEnumTransform", - "printedName": "ZTEnumTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEnumTransform", - "printedName": "ZTCoreKit.ZTEnumTransform<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ], - "usr": "s:9ZTCoreKit15ZTEnumTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTEnumTransformCACyxGycfc", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformCACyxGycfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.RawValue?", + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.RawValue" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit15ZTEnumTransformC", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.RawValue" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTReachability", - "printedName": "ZTReachability", - "children": [ - { - "kind": "Var", - "name": "currentAdapterMode", - "printedName": "currentAdapterMode", - "children": [ - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType?", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentConnectionStatus", - "printedName": "currentConnectionStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { - "kind": "Var", - "name": "onConnectionReachable", - "printedName": "onConnectionReachable", + "kind": "TypeDecl", + "name": "PacketType", + "printedName": "PacketType", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Var", + "name": "maxDataValue", + "printedName": "maxDataValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvpZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvgZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "onConnectionUnReachable", - "printedName": "onConnectionUnReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Var", + "name": "quantification", + "printedName": "quantification", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14quantificationyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14quantificationyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "walkAnalysis", + "printedName": "walkAnalysis", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12walkAnalysisyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12walkAnalysisyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "runAnalysis", + "printedName": "runAnalysis", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "managerStarted", - "printedName": "managerStarted", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11runAnalysisyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11runAnalysisyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "stairs", + "printedName": "stairs", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO6stairsyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO6stairsyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "cycling", + "printedName": "cycling", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO7cyclingyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO7cyclingyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Adapter", - "printedName": "Adapter", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO4jumpyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO4jumpyA2EmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "all", - "printedName": "all", + "name": "safety", + "printedName": "safety", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108408,36 +97701,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO6safetyyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO6safetyyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "wifi", - "printedName": "wifi", + "name": "staticActivity", + "printedName": "staticActivity", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108445,36 +97738,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14staticActivityyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14staticActivityyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cellular", - "printedName": "cellular", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108482,36 +97775,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO5debugyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO5debugyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "wiredEthernet", - "printedName": "wiredEthernet", + "name": "debugTelemetry", + "printedName": "debugTelemetry", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108519,36 +97812,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14debugTelemetryyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14debugTelemetryyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "loopback", - "printedName": "loopback", + "name": "debugProba", + "printedName": "debugProba", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108556,36 +97849,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO10debugProbayA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO10debugProbayA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "other", - "printedName": "other", + "name": "bmTimestampPacket", + "printedName": "bmTimestampPacket", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108593,36 +97886,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO011bmTimestampD0yA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO011bmTimestampD0yA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "none", - "printedName": "none", + "name": "fwTimestampPacket", + "printedName": "fwTimestampPacket", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108630,9 +97926,12 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO011fwTimestampD0yA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO011fwTimestampD0yA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", @@ -108647,8 +97946,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -108667,49 +97966,61 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "getInterfaceType", - "printedName": "getInterfaceType()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "InterfaceType", - "printedName": "Network.NWInterface.InterfaceType", - "usr": "s:7Network11NWInterfaceV13InterfaceTypeO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.PacketType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -108720,212 +98031,481 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "lastSegmentId", + "printedName": "lastSegmentId(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13lastSegmentId08activityF0SiSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13lastSegmentId08activityF0SiSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "segmentsCount", + "printedName": "segmentsCount(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13segmentsCount10activityIdSiSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13segmentsCount10activityIdSiSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadUnsent", + "printedName": "loadUnsent(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadUnsent10activityIdSayACGSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadUnsent10activityIdSayACGSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sa" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityIdSayACGSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityIdSayACGSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:startId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId05startG0SayACGSS_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId05startG0SayACGSS_s5Int16VtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAllPackets", + "printedName": "loadAllPackets(activityId:startId:lastId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14loadAllPackets10activityId05startH004lastH0SayACGSS_s5Int16VSgAKtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14loadAllPackets10activityId05startH004lastH0SayACGSS_s5Int16VSgAKtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAllIds", + "printedName": "loadAllIds(activityId:startId:endId:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadAllIds10activityId05startH003endH0SaySiGSS_s5Int16VAJSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadAllIds10activityId05startH003endH0SaySiGSS_s5Int16VAJSgtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", + "kind": "Function", + "name": "loadAllPacketsIds", + "printedName": "loadAllPacketsIds(activityId:startId:endId:)", "children": [ { - "kind": "Var", - "name": "online", - "printedName": "online", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> (ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(adapter: ZTCoreKit.ZTReachability.Adapter)", - "children": [ - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sa" }, { - "kind": "Var", - "name": "offline", - "printedName": "offline", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", - "moduleName": "ZTCoreKit" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC17loadAllPacketsIds10activityId05startI003endI0Says5Int16VGSS_A2ISgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17loadAllPacketsIds10activityId05startI003endI0Says5Int16VGSS_A2ISgtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadPrevious", + "printedName": "loadPrevious(activityId:chunkId:originalTimestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -108934,624 +98514,701 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "usr": "s:Sq" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC12loadPrevious10activityId05chunkG017originalTimestampACSgSSSg_s5Int16Vs5Int64VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12loadPrevious10activityId05chunkG017originalTimestampACSgSSSg_s5Int16Vs5Int64VtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadPacket", + "printedName": "loadPacket(activityId:id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadPacket10activityId2idACSgSSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadPacket10activityId2idACSgSSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadLastFwVersionEvent", + "printedName": "loadLastFwVersionEvent(activityId:chunkId:startId:)", + "children": [ { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(adapter:)", - "children": [ { "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" }, { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], "hasDefaultArg": true, - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC22loadLastFwVersionEvent10activityId05chunkJ005startJ0ACSgSSSg_s5Int16VAKSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC22loadLastFwVersionEvent10activityId05chunkJ005startJ0ACSgSSSg_s5Int16VAKSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "startManager", - "printedName": "startManager()", + "name": "loadAllChunks", + "printedName": "loadAllChunks(activityId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC12startManageryyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC12startManageryyF", + "usr": "s:9ZTCoreKit8ZTPacketC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacket>", + "sugared_genericSig": "", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "stopManager", - "printedName": "stopManager()", + "name": "loadAll", + "printedName": "loadAll(activityId:lastChunkId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC11stopManageryyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId09lastChunkG0SayACGSS_s5Int16VSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId09lastChunkG0SayACGSS_s5Int16VSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit14ZTReachabilityC", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDateDefaultTransform", - "printedName": "ZTDateDefaultTransform", - "children": [ + }, { - "kind": "TypeDecl", - "name": "Unit", - "printedName": "Unit", + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:firstChunkId:lastChunkId:)", "children": [ { - "kind": "Var", - "name": "seconds", - "printedName": "seconds", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sa" }, { - "kind": "Var", - "name": "milliseconds", - "printedName": "milliseconds", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit?", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId010firstChunkG004lastiG0SayACGSS_s5Int16VSgAKtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId010firstChunkG004lastiG0SayACGSS_s5Int16VSgAKtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC5clear10activityIdySSSg_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC5clear10activityIdySSSg_tFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "enumRawTypeName": "Double", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMissedChunk", + "printedName": "getMissedChunk(activity:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] + "kind": "TypeNominal", + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14getMissedChunk8activitys5Int16VSgAA10ZTActivityCSg_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14getMissedChunk8activitys5Int16VSgAA10ZTActivityCSg_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(unit:)", + "kind": "Function", + "name": "getMaxMissedChunk", + "printedName": "getMaxMissedChunk(activityId:chunkId:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDateDefaultTransform", - "printedName": "ZTCoreKit.ZTDateDefaultTransform", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC" + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC17getMaxMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17getMaxMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "name": "getMissedPackets", + "printedName": "getMissedPackets(activityId:startId:endId:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "[Swift.Int16]?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "usr": "s:9ZTCoreKit8ZTPacketC16getMissedPackets10activityId05startH003endH0Says5Int16VGSgSS_A2ISgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC16getMissedPackets10activityId05startH003endH0Says5Int16VGSgSS_A2ISgtFZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "name": "getMinMissedChunk", + "printedName": "getMinMissedChunk(activityId:chunkId:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "usr": "s:9ZTCoreKit8ZTPacketC17getMinMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17getMinMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Function", + "name": "getMinMissedPacketId", + "printedName": "getMinMissedPacketId(activityId:startId:lastId:)", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "children": [ + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC20getMinMissedPacketId08activityH005startH004lastH0s5Int16VSgSS_AiJtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC20getMinMissedPacketId08activityH005startH004lastH0s5Int16VSgSS_AiJtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "name": "checkMissedChunks", + "printedName": "checkMissedChunks(activityId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit8ZTPacketC17checkMissedChunks10activityIdSbSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17checkMissedChunks10activityIdSbSS_tFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "Mutating", + "Final", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "Mutating" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "hasMissedChunks", + "printedName": "hasMissedChunks(activityId:startIndex:endIndex:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", + "usr": "s:9ZTCoreKit8ZTPacketC15hasMissedChunks10activityId10startIndex03endJ0SbSS_s5Int16VSgAJtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC15hasMissedChunks10activityId10startIndex03endJ0SbSS_s5Int16VSgAJtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], "isFromExtension": true, @@ -109559,9 +99216,14 @@ }, { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(prettyPrint:)", + "name": "checkPacketToRemove", + "printedName": "checkPacketToRemove(activityId:packetId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", @@ -109578,276 +99240,363 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", + "usr": "s:9ZTCoreKit8ZTPacketC19checkPacketToRemove10activityId06packetI0ySSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC19checkPacketToRemove10activityId06packetI0ySSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappable", - "printedName": "ZTMappable", - "children": [ + }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Function", + "name": "hasPreviousChunk", + "printedName": "hasPreviousChunk(activityId:currentIndex:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC16hasPreviousChunk10activityId12currentIndexSbSS_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC16hasPreviousChunk10activityId12currentIndexSbSS_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", + "kind": "Function", + "name": "isChunkSaved", + "printedName": "isChunkSaved(activityId:chunkId:startId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC12isChunkSaved10activityId05chunkH005startH0SbSSSg_s5Int16VAJSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12isChunkSaved10activityId05chunkH005startH0SbSSSg_s5Int16VAJSgtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "Final" ], "isFromExtension": true, - "init_kind": "Convenience" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSON:context:)", + "kind": "Function", + "name": "isSaved", + "printedName": "isSaved(activityId:chunkId:startId:endId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7isSaved10activityId05chunkG005startG003endG0SbSSSg_s5Int16VAKSgALtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7isSaved10activityId05chunkG005startG003endG0SbSSSg_s5Int16VAKSgALtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "Final" ], "isFromExtension": true, - "init_kind": "Convenience" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTStaticMappable", - "printedName": "ZTStaticMappable", - "children": [ + "funcSelfKind": "NonMutating" + }, { "kind": "Function", - "name": "objectForMapping", - "printedName": "objectForMapping(map:)", + "name": "isChunkEmpty", + "printedName": "isChunkEmpty(activityId:chunkId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTBaseMappable)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBaseMappable", - "printedName": "any ZTCoreKit.ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", - "mangledName": "$s9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", + "usr": "s:9ZTCoreKit8ZTPacketC12isChunkEmpty10activityId05chunkH0SbSSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12isChunkEmpty10activityId05chunkH0SbSSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTStaticMappable>", - "sugared_genericSig": "", "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "Final" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit16ZTStaticMappableP", - "mangledName": "$s9ZTCoreKit16ZTStaticMappableP", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket", + "mangledName": "$s9ZTCoreKit8ZTPacketC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, + "objc_name": "ZTPacket", "declAttributes": [ - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSManagedObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreData.NSManagedObject", + "ObjectiveC.NSObject" ], "conformances": [ { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" + }, + { + "kind": "Conformance", + "name": "ZTPacketCachable", + "printedName": "ZTPacketCachable", + "children": [ + { + "kind": "TypeWitness", + "name": "Activity", + "printedName": "Activity", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" + } + ] + } + ], + "usr": "s:9ZTCoreKit16ZTPacketCachableP", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ObservableObject", + "printedName": "ObservableObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectWillChangePublisher", + "printedName": "ObjectWillChangePublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableObjectPublisher", + "printedName": "Combine.ObservableObjectPublisher", + "usr": "s:7Combine25ObservableObjectPublisherC" + } + ] + } + ], + "usr": "s:7Combine16ObservableObjectP", + "mangledName": "$s7Combine16ObservableObjectP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -109863,12 +99612,12 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" ] }, { @@ -111622,13 +101371,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "hasDefaultArg": true, @@ -111637,18 +101386,18 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTSegmentData]?", + "printedName": "[ZTCoreKit.ZTPacket]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -111693,8 +101442,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_SiSgSayAA13ZTSegmentDataCGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_SiSgSayAA13ZTSegmentDataCGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_s5Int16VSgSayAA8ZTPacketCGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_s5Int16VSgSayAA8ZTPacketCGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -111721,9 +101470,9 @@ }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" }, { "kind": "TypeNominal", @@ -111790,8 +101539,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA13ZTSegmentDataCSDySSypGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA13ZTSegmentDataCSDySSypGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA8ZTPacketCSDySSypGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA8ZTPacketCSDySSypGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -111819,13 +101568,13 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -111895,8 +101644,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA13ZTSegmentDataCGSDySSypGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA13ZTSegmentDataCGSDySSypGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA8ZTPacketCGSDySSypGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA8ZTPacketCGSDySSypGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112139,18 +101888,18 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTSegmentData]?", + "printedName": "[ZTCoreKit.ZTPacket]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -112207,19 +101956,801 @@ } ] } - ] + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA8ZTPacketCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA8ZTPacketCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((τ_0_0?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAppAttributes", + "printedName": "getAppAttributes(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDataArray", + "printedName": "getDataArray(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postData", + "printedName": "postData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA13ZTSegmentDataCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA13ZTSegmentDataCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", @@ -112229,8 +102760,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postData", + "printedName": "postData(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112272,64 +102803,55 @@ "usr": "s:Sq" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((τ_0_0?, (any Swift.Error)?) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(τ_0_0?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", "moduleName": "ZTCoreKit", "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", "sugared_genericSig": "", @@ -112342,8 +102864,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postDataGenericResult", + "printedName": "postDataGenericResult(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112358,36 +102880,120 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postDataResult", + "printedName": "postDataResult(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> ()", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112397,7 +103003,7 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?)", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", @@ -112426,20 +103032,6 @@ ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -112460,8 +103052,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112472,8 +103064,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postDataResultArray", + "printedName": "postDataResultArray(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112488,31 +103080,22 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeFunc", @@ -112584,8 +103167,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112596,18 +103179,52 @@ }, { "kind": "Function", - "name": "getAppAttributes", - "printedName": "getAppAttributes(completion:)", + "name": "deleteData", + "printedName": "deleteData(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112616,58 +103233,24 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112678,18 +103261,43 @@ }, { "kind": "Function", - "name": "checkFirmwareUpdate", - "printedName": "checkFirmwareUpdate(completion:)", + "name": "addActivityData", + "printedName": "addActivityData(activityId:timestamp:data:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112698,37 +103306,24 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112739,18 +103334,43 @@ }, { "kind": "Function", - "name": "checkFirmwareUpdate", - "printedName": "checkFirmwareUpdate(completion:)", + "name": "updateActivityAttributes", + "printedName": "updateActivityAttributes(activityId:attributes:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112759,28 +103379,62 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updatePushNotificationToken", + "printedName": "updatePushNotificationToken(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", @@ -112798,12 +103452,14 @@ } ] } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112814,8 +103470,8 @@ }, { "kind": "Function", - "name": "getDataArray", - "printedName": "getDataArray(path:parameters:completion:)", + "name": "deleteUser", + "printedName": "deleteUser(completion:)", "children": [ { "kind": "TypeNominal", @@ -112823,43 +103479,69 @@ "printedName": "()" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:SD" + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "existUser", + "printedName": "existUser(attribute:value:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?, Swift.Bool?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112869,39 +103551,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "printedName": "((any Swift.Error)?, Swift.Bool?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.String : Any]]?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" @@ -112909,13 +103570,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" @@ -112926,8 +103587,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112938,8 +103599,8 @@ }, { "kind": "Function", - "name": "postData", - "printedName": "postData(path:parameters:completion:)", + "name": "suborgExist", + "printedName": "suborgExist(code:completion:)", "children": [ { "kind": "TypeNominal", @@ -112952,29 +103613,10 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", @@ -112983,24 +103625,16 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", + "mangledName": "$s9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113011,8 +103645,8 @@ }, { "kind": "Function", - "name": "postData", - "printedName": "postData(path:parameters:completion:)", + "name": "trackEvent", + "printedName": "trackEvent(name:data:timestamp:attributes:)", "children": [ { "kind": "TypeNominal", @@ -113053,10 +103687,151 @@ "hasDefaultArg": true, "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "mangledName": "$s9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "log", + "printedName": "log(severity:component:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + }, + { + "kind": "TypeNominal", + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "mangledName": "$s9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addActivityComment", + "printedName": "addActivityComment(activityId:text:mediaFileTemplates:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[ZTCoreKit.ZTMediaFileTemplate]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFileTemplate]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113066,17 +103841,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(τ_0_0?, (any Swift.Error)?)", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "ZTCoreKit.ZTActivityComment?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" } ], "usr": "s:Sq" @@ -113101,11 +103877,9 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", @@ -113115,8 +103889,8 @@ }, { "kind": "Function", - "name": "postDataGenericResult", - "printedName": "postDataGenericResult(path:parameters:completion:)", + "name": "saveActivityComment", + "printedName": "saveActivityComment(commentId:text:completion:)", "children": [ { "kind": "TypeNominal", @@ -113131,27 +103905,68 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActivityComments", + "printedName": "getActivityComments(activityId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Any?, (any Swift.Error)?) -> ()", + "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113161,17 +103976,26 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(Any?, (any Swift.Error)?)", + "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "[ZTCoreKit.ZTActivityComment]?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Array", + "printedName": "[ZTCoreKit.ZTActivityComment]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" @@ -113196,8 +104020,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113208,8 +104032,8 @@ }, { "kind": "Function", - "name": "postDataResult", - "printedName": "postDataResult(path:parameters:completion:)", + "name": "getActivityComment", + "printedName": "getActivityComment(commentId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113222,29 +104046,10 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113254,31 +104059,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "ZTCoreKit.ZTActivityComment?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" } ], "usr": "s:Sq" @@ -113303,8 +104095,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113315,8 +104107,8 @@ }, { "kind": "Function", - "name": "postDataResultArray", - "printedName": "postDataResultArray(path:parameters:completion:)", + "name": "getActivityRealtimeData", + "printedName": "getActivityRealtimeData(activityId:fields:completion:)", "children": [ { "kind": "TypeNominal", @@ -113331,27 +104123,22 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sa" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113361,39 +104148,31 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.String : Any]]?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sa" + "usr": "s:SD" } ], "usr": "s:Sq" @@ -113418,8 +104197,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113430,8 +104209,8 @@ }, { "kind": "Function", - "name": "deleteData", - "printedName": "deleteData(path:parameters:completion:)", + "name": "addMediaFileToActivityComment", + "printedName": "addMediaFileToActivityComment(commentId:mediaFileTemplate:completion:)", "children": [ { "kind": "TypeNominal", @@ -113446,31 +104225,9 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" }, { "kind": "TypeFunc", @@ -113500,8 +104257,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113512,8 +104269,8 @@ }, { "kind": "Function", - "name": "addActivityData", - "printedName": "addActivityData(activityId:timestamp:data:completion:)", + "name": "deleteActivityComment", + "printedName": "deleteActivityComment(commentId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113526,25 +104283,6 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - }, { "kind": "TypeFunc", "name": "Function", @@ -113573,8 +104311,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113585,8 +104323,8 @@ }, { "kind": "Function", - "name": "updateActivityAttributes", - "printedName": "updateActivityAttributes(activityId:attributes:completion:)", + "name": "deleteMediaFile", + "printedName": "deleteMediaFile(mediaFileId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113599,25 +104337,6 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", @@ -113646,8 +104365,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113658,8 +104377,8 @@ }, { "kind": "Function", - "name": "updatePushNotificationToken", - "printedName": "updatePushNotificationToken(_:completion:)", + "name": "uploadActivityRawData", + "printedName": "uploadActivityRawData(activityId:filePath:completion:)", "children": [ { "kind": "TypeNominal", @@ -113674,55 +104393,51 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "deleteUser", - "printedName": "deleteUser(completion:)", + "name": "getAchievements", + "printedName": "getAchievements(completion:)", "children": [ { "kind": "TypeNominal", @@ -113732,7 +104447,7 @@ { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113741,24 +104456,53 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Tuple", + "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Optional", + "printedName": "[ZTCoreKit.ZTAchievement]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTAchievement]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAchievement", + "printedName": "ZTCoreKit.ZTAchievement", + "usr": "s:9ZTCoreKit13ZTAchievementC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "usr": "s:9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113769,8 +104513,8 @@ }, { "kind": "Function", - "name": "existUser", - "printedName": "existUser(attribute:value:completion:)", + "name": "complianceTestRetry", + "printedName": "complianceTestRetry(timeout:attempts:statusCode:completion:)", "children": [ { "kind": "TypeNominal", @@ -113779,20 +104523,26 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?, Swift.Bool?) -> ()", + "printedName": "(Foundation.Data?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113802,18 +104552,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "((any Swift.Error)?, Swift.Bool?)", + "printedName": "(Foundation.Data?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" @@ -113821,13 +104571,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" @@ -113838,8 +104588,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113850,8 +104600,8 @@ }, { "kind": "Function", - "name": "suborgExist", - "printedName": "suborgExist(code:completion:)", + "name": "startListenMessages", + "printedName": "startListenMessages(onMessageReceived:onDataReceived:)", "children": [ { "kind": "TypeNominal", @@ -113859,15 +104609,35 @@ "printedName": "()" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "printedName": "(Foundation.Data?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113876,16 +104646,24 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", - "mangledName": "$s9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", + "usr": "s:9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113896,86 +104674,63 @@ }, { "kind": "Function", - "name": "trackEvent", - "printedName": "trackEvent(name:data:timestamp:attributes:)", + "name": "stopListenMessages", + "printedName": "stopListenMessages()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "mangledName": "$s9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLogFilesList", + "printedName": "getLogFilesList(date:)", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "[Foundation.URL]?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Array", + "printedName": "[Foundation.URL]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "usr": "s:Sa" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "hasDefaultArg": true, @@ -113983,8 +104738,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", - "mangledName": "$s9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "usr": "s:9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113995,38 +104750,18 @@ }, { "kind": "Function", - "name": "log", - "printedName": "log(severity:component:message:)", + "name": "resendSavedRequests", + "printedName": "resendSavedRequests()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", - "mangledName": "$s9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "usr": "s:9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", + "mangledName": "$s9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -114034,114 +104769,434 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit5ZTApiC", + "mangledName": "$s9ZTCoreKit5ZTApiC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCBPeripheralProtocol", + "printedName": "ZTCBPeripheralProtocol", + "children": [ { - "kind": "Function", - "name": "addActivityComment", - "printedName": "addActivityComment(activityId:text:mediaFileTemplates:completion:)", + "kind": "Var", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFileTemplate]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFileTemplate]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rssi", + "printedName": "rssi", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } ], "usr": "s:Sq" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Optional", + "printedName": "Foundation.NSNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralState", + "printedName": "CoreBluetooth.CBPeripheralState", + "usr": "c:@E@CBPeripheralState" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", + "name": "CBPeripheralState", + "printedName": "CoreBluetooth.CBPeripheralState", + "usr": "c:@E@CBPeripheralState" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "services", + "printedName": "services", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBService]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" - }, + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBService]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "usr": "s:Sq" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "saveActivityComment", - "printedName": "saveActivityComment(commentId:text:completion:)", + "name": "discoverServices", + "printedName": "discoverServices(_:)", "children": [ { "kind": "TypeNominal", @@ -114150,58 +105205,156 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "discoverCharacteristics", + "printedName": "discoverCharacteristics(_:for:)", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeValue", + "printedName": "writeValue(_:for:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristicWriteType", + "printedName": "CoreBluetooth.CBCharacteristicWriteType", + "usr": "c:@E@CBCharacteristicWriteType" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "getActivityComments", - "printedName": "getActivityComments(activityId:completion:)", + "name": "setNotifyValue", + "printedName": "setNotifyValue(_:for:)", "children": [ { "kind": "TypeNominal", @@ -114210,81 +105363,55 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTActivityComment]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTActivityComment]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "children": [ { "kind": "Function", - "name": "getActivityComment", - "printedName": "getActivityComment(commentId:completion:)", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", @@ -114293,89 +105420,71 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "getActivityRealtimeData", - "printedName": "getActivityRealtimeData(activityId:fields:completion:)", + "name": "toJSONString", + "printedName": "toJSONString(prettyPrint:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -114384,149 +105493,98 @@ "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMappable", + "printedName": "ZTMappable", + "children": [ { - "kind": "Function", - "name": "addMediaFileToActivityComment", - "printedName": "addMediaFileToActivityComment(commentId:mediaFileTemplate:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "protocolReq": true, "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "deleteActivityComment", - "printedName": "deleteActivityComment(commentId:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -114535,579 +105593,541 @@ "usr": "s:SS" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "init_kind": "Convenience" }, { - "kind": "Function", - "name": "deleteMediaFile", - "printedName": "deleteMediaFile(mediaFileId:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSON:context:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, + "isFromExtension": true, + "init_kind": "Convenience" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTStaticMappable", + "printedName": "ZTStaticMappable", + "children": [ { "kind": "Function", - "name": "uploadActivityRawData", - "printedName": "uploadActivityRawData(activityId:filePath:completion:)", + "name": "objectForMapping", + "printedName": "objectForMapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTBaseMappable)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ZTBaseMappable", + "printedName": "any ZTCoreKit.ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", + "usr": "s:9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", + "mangledName": "$s9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTStaticMappable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, "declAttributes": [ - "Final", - "AccessControl" + "RawDocComment" ], + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit16ZTStaticMappableP", + "mangledName": "$s9ZTCoreKit16ZTStaticMappableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "Function", - "name": "getAchievements", - "printedName": "getAchievements(completion:)", + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTRealtimeMessage", + "printedName": "ZTRealtimeMessage", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Side", + "printedName": "Side", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTAchievement]?", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTAchievement]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAchievement", - "printedName": "ZTCoreKit.ZTAchievement", - "usr": "s:9ZTCoreKit13ZTAchievementC" - } - ], - "usr": "s:Sa" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "complianceTestRetry", - "printedName": "complianceTestRetry(timeout:attempts:statusCode:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "right", + "printedName": "right", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "both", + "printedName": "both", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startListenMessages", - "printedName": "startListenMessages(onMessageReceived:onDataReceived:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> ()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data?) -> ()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopListenMessages", - "printedName": "stopListenMessages()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18stopListenMessagesyyF", - "mangledName": "$s9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLogFilesList", - "printedName": "getLogFilesList(date:)", - "children": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "senderSide", + "printedName": "senderSide", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resendSavedRequests", - "printedName": "resendSavedRequests()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", - "mangledName": "$s9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit5ZTApiC", - "mangledName": "$s9ZTCoreKit5ZTApiC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTCore", - "printedName": "ZTCore", - "children": [ - { - "kind": "Var", - "name": "version", - "printedName": "version", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C7versionSSvpZ", - "mangledName": "$s9ZTCoreKit0A0C7versionSSvpZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115116,48 +106136,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C7versionSSvgZ", - "mangledName": "$s9ZTCoreKit0A0C7versionSSvgZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "zcVersion", - "printedName": "zcVersion", + "name": "concernedSide", + "printedName": "concernedSide", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvp", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115166,97 +106193,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvg", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvs", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvM", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shared", - "printedName": "shared", + "name": "eventType", + "printedName": "eventType", "children": [ { "kind": "TypeNominal", - "name": "ZTCore", - "printedName": "ZTCoreKit.ZTCore", - "usr": "s:9ZTCoreKit0A0C" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C6sharedACvpZ", - "mangledName": "$s9ZTCoreKit0A0C6sharedACvpZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115265,49 +106250,55 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTCore", - "printedName": "ZTCoreKit.ZTCore", - "usr": "s:9ZTCoreKit0A0C" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C6sharedACvgZ", - "mangledName": "$s9ZTCoreKit0A0C6sharedACvgZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "bleManager", - "printedName": "bleManager", + "name": "content", + "printedName": "content", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", - "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115316,99 +106307,88 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", - "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "settings", - "printedName": "settings", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", - "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "name": "ZTRealtimeMessage", + "printedName": "ZTCoreKit.ZTRealtimeMessage", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", - "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sa" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { "kind": "Var", - "name": "appUserId", - "printedName": "appUserId", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], @@ -115421,61 +106401,54 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastCommand", - "printedName": "lastCommand", + "name": "acknowledgment", + "printedName": "acknowledgment", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115485,118 +106458,111 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "realtimeEvent", + "printedName": "realtimeEvent", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastCommandResponses", - "printedName": "lastCommandResponses", + "name": "realtimeMetrics", + "printedName": "realtimeMetrics", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115605,269 +106571,321 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "lastActivityId", - "printedName": "lastActivityId", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "algoMode", + "printedName": "algoMode", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "leftModuleCommandStatus", - "printedName": "leftModuleCommandStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", - "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "precisionMode", + "printedName": "precisionMode", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", - "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connectedDevice", - "printedName": "connectedDevice", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "consecutiveSteps", + "printedName": "consecutiveSteps", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastDeviceSerialNumber", - "printedName": "lastDeviceSerialNumber", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -115876,29 +106894,19 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -115907,91 +106915,181 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "lastDeviceQRCode", - "printedName": "lastDeviceQRCode", + "kind": "TypeDecl", + "name": "Acknowledgment", + "printedName": "Acknowledgment", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "command", + "printedName": "command", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastQRCode", - "printedName": "lastQRCode", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -116000,29 +107098,19 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -116031,916 +107119,702 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDfuInProgress", - "printedName": "isDfuInProgress", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvp", - "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvg", - "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "dfuDelegate", - "printedName": "dfuDelegate", + "kind": "TypeDecl", + "name": "Metrics", + "printedName": "Metrics", "children": [ { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "printedName": "ZTCoreKit.ZTActivityType?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuDelegate", - "printedName": "any ZTCoreKit.ZTDfuDelegate", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "metricId", + "printedName": "metricId", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuDelegate", - "printedName": "any ZTCoreKit.ZTDfuDelegate", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "metric", + "printedName": "metric", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "firmwareDfuState", - "printedName": "firmwareDfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", - "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", - "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentDfuState", - "printedName": "currentDfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "onDfuStateUpdated", - "printedName": "onDfuStateUpdated", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } + "AccessControl", + "RawDocComment" ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "init_kind": "Designated" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", - "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", - "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "onDfuUploadProgress", - "printedName": "onDfuUploadProgress", + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Float?", + "printedName": "Swift.UInt32?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", - "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Float?", + "printedName": "Swift.UInt32?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", - "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinishedLeft", - "printedName": "onDfuFinishedLeft", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "eventType", + "printedName": "eventType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinishedRight", - "printedName": "onDfuFinishedRight", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "motionId", + "printedName": "motionId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinished", - "printedName": "onDfuFinished", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "intensity", + "printedName": "intensity", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuCopied", - "printedName": "onDfuCopied", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "arguments", + "printedName": "arguments", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setup", - "printedName": "setup(apiKey:secret:appId:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearUser", - "printedName": "clearUser()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C9clearUseryyF", - "mangledName": "$s9ZTCoreKit0A0C9clearUseryyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateOrganization", - "printedName": "updateOrganization(code:appType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -116949,1352 +107823,1812 @@ "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", - "mangledName": "$s9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(for:timeout:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "EventType", + "printedName": "EventType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "motion", + "printedName": "motion", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "transition", + "printedName": "transition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } - ], - "usr": "s:Sq" + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", - "moduleName": "ZTCoreKit", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(for:timeout:deviceDiscovered:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" - } + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "MotionId", + "printedName": "MotionId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepForward", + "printedName": "stepForward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepBackward", + "printedName": "stepBackward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSideLeft", + "printedName": "stepSideLeft", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSideRight", + "printedName": "stepSideRight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepUp", + "printedName": "stepUp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepDown", + "printedName": "stepDown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(macAddress:timeout:deviceDiscovered:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "MotionIntensity", + "printedName": "MotionIntensity", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "undefined", + "printedName": "undefined", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Var", + "name": "low", + "printedName": "low", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopScan", - "printedName": "stopScan()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C8stopScanyyF", - "mangledName": "$s9ZTCoreKit0A0C8stopScanyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connectWithDevice", - "printedName": "connectWithDevice(_:timeout:isDfu:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Var", + "name": "medium", + "printedName": "medium", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(withCode:timeout:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", - "mangledName": "$s9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connectWithCode", - "printedName": "connectWithCode(_:timeout:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Var", + "name": "high", + "printedName": "high", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceInfo", - "printedName": "getDeviceInfo(code:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "tryReconnect", - "printedName": "tryReconnect(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "mangledName": "$s9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "checkConnectedDevice", - "printedName": "checkConnectedDevice(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "mangledName": "$s9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "Function", - "name": "setDeepSleepMode", - "printedName": "setDeepSleepMode()", + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDefaults", + "printedName": "ZTDefaults", + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTDefaultsC", + "mangledName": "$s9ZTCoreKit10ZTDefaultsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "ZTDefaultsKey", + "printedName": "ZTDefaultsKey", + "children": [ + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C16setDeepSleepModeyyKF", - "mangledName": "$s9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "AccessControl", - "RawDocComment" + "HasStorage", + "AccessControl" ], - "throwing": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "initiateBackgroundDFU", - "printedName": "initiateBackgroundDFU(isRestartRequired:isManualMode:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", - "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:9ZTCoreKit10ZTDefaultsC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTDefaults" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTTextCharacteristic", + "printedName": "ZTTextCharacteristic", + "children": [ { - "kind": "Function", - "name": "initiateBackgroundDFU", - "printedName": "initiateBackgroundDFU(path:isManualMode:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTTextCharacteristic", + "printedName": "ZTCoreKit.ZTTextCharacteristic", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", - "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "isFirmwareUpdateRequired", - "printedName": "isFirmwareUpdateRequired(firmwareRevision:completion:)", + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", - "mangledName": "$s9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityComment", + "printedName": "ZTActivityComment", + "children": [ { - "kind": "Function", - "name": "updateFirmware", - "printedName": "updateFirmware(packageType:isButtonless:)", + "kind": "Var", + "name": "id", + "printedName": "id", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDfuPackageType?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", - "mangledName": "$s9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateFirmware", - "printedName": "updateFirmware(path:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C14updateFirmware4pathySS_tF", - "mangledName": "$s9ZTCoreKit0A0C14updateFirmware4pathySS_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "dfuStateDidChange", - "printedName": "dfuStateDidChange(to:)", + "kind": "Var", + "name": "timeZone", + "printedName": "timeZone", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", - "mangledName": "$s9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuStateDidChangeTo:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuError", - "printedName": "dfuError(_:didOccurWithMessage:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", - "mangledName": "$s9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuError:didOccurWithMessage:", "declAttributes": [ - "Final", - "ObjC", + "HasInitialValue", + "HasStorage", "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuProgressDidChange", - "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", - "mangledName": "$s9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logWith", - "printedName": "logWith(_:message:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", - "mangledName": "$s9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", - "moduleName": "ZTCoreKit", - "objc_name": "logWith:message:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "checkDfuState", - "printedName": "checkDfuState()", + "kind": "Var", + "name": "activityId", + "printedName": "activityId", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C13checkDfuStateyyF", - "mangledName": "$s9ZTCoreKit0A0C13checkDfuStateyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isPendingEmbeddedActivity", - "printedName": "isPendingEmbeddedActivity(completion:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -118303,60 +109637,108 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", - "mangledName": "$s9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "pushPendingEmbeddedActivities", - "printedName": "pushPendingEmbeddedActivities(completion:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError?) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -118366,161 +109748,74 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", - "mangledName": "$s9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit0A0C", - "mangledName": "$s9ZTCoreKit0A0C", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DFUServiceDelegate", - "printedName": "DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP" - }, - { - "kind": "Conformance", - "name": "DFUProgressDelegate", - "printedName": "DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP" + ] }, - { - "kind": "Conformance", - "name": "LoggerDelegate", - "printedName": "LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTControlPointDfuCharacteristic", - "printedName": "ZTControlPointDfuCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -118530,52 +109825,113 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "mediaFiles", + "printedName": "mediaFiles", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "[ZTCoreKit.ZTMediaFile]?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -118588,56 +109944,123 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "[ZTCoreKit.ZTMediaFile]?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[ZTCoreKit.ZTMediaFile]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(service:characteristic:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTControlPointDfuCharacteristic", - "printedName": "ZTCoreKit.ZTControlPointDfuCharacteristic", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityComment?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "usr": "s:9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", "Required", @@ -118647,90 +110070,55 @@ }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", + "usr": "s:9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTJSONParameterEncoder", - "printedName": "ZTJSONParameterEncoder", - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTJSONParameterEncoderC", - "mangledName": "$s9ZTCoreKit22ZTJSONParameterEncoderC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTURLEncodedFormParameterEncoder", - "printedName": "ZTURLEncodedFormParameterEncoder", - "declKind": "Class", - "usr": "s:9ZTCoreKit32ZTURLEncodedFormParameterEncoderC", - "mangledName": "$s9ZTCoreKit32ZTURLEncodedFormParameterEncoderC", + "usr": "s:9ZTCoreKit17ZTActivityCommentC", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" + }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } ] }, { @@ -118745,8 +110133,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -118765,302 +110153,619 @@ }, { "kind": "TypeDecl", - "name": "ZTSettings", - "printedName": "ZTSettings", + "name": "ZTAlgoCommand", + "printedName": "ZTAlgoCommand", "children": [ { "kind": "Var", - "name": "shared", - "printedName": "shared", + "name": "getStatus", + "printedName": "getStatus", "children": [ { - "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvpZ", - "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvpZ", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "startNewChunk", + "printedName": "startNewChunk", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "changeProductMode", + "printedName": "changeProductMode", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvgZ", - "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "version", - "printedName": "version", + "name": "setPrecisionMode", + "printedName": "setPrecisionMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setMinimumNumberOfStrides", + "printedName": "setMinimumNumberOfStrides", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enableStreamingOfValues", + "printedName": "enableStreamingOfValues", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setDisconnectionDelay", + "printedName": "setDisconnectionDelay", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setUserInfo", + "printedName": "setUserInfo", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setDailyTimestamp", + "printedName": "setDailyTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "getPositionOfPods", + "printedName": "getPositionOfPods", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enableSpecificPacket", + "printedName": "enableSpecificPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "holdRealtimeStreaming", + "printedName": "holdRealtimeStreaming", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "getSingleTimeMetrics", + "printedName": "getSingleTimeMetrics", "children": [ { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "calibrateGravity", + "printedName": "calibrateGravity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" }, { "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "environment", - "printedName": "environment", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -119069,289 +110774,356 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTRealtimeMessageEventType", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "autoConnect", - "printedName": "autoConnect", + "name": "acknowledgment", + "printedName": "acknowledgment", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "realTimeEvent", + "printedName": "realTimeEvent", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "realTimeMetrics", + "printedName": "realTimeMetrics", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "enableEventLogging", - "printedName": "enableEventLogging", + "name": "warning", + "printedName": "warning", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "shouldObtaineMissedChunks", - "printedName": "shouldObtaineMissedChunks", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -119360,1759 +111132,2720 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTError", + "printedName": "ZTError", + "children": [ { "kind": "Var", - "name": "enableRawDataCheck", - "printedName": "enableRawDataCheck", + "name": "scanning", + "printedName": "scanning", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.ScanningError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "ble", + "printedName": "ble", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.BleError)", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "network", + "printedName": "network", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.NetworkError)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "shouldAutoResendData", - "printedName": "shouldAutoResendData", + "name": "store", + "printedName": "store", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.StoreError)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(errorDescription: Swift.String?, error: (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "activityDataSyncThreshold", - "printedName": "activityDataSyncThreshold", + "name": "decoding", + "printedName": "decoding", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.DecodableError)", + "children": [ + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activity", + "printedName": "activity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.ActivityError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.DfuError)", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "enableBackgroundDFU", - "printedName": "enableBackgroundDFU", + "kind": "TypeDecl", + "name": "Enums", + "printedName": "Enums", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "ScanningError", + "printedName": "ScanningError", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "cameraPermission", + "printedName": "cameraPermission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrongCode", + "printedName": "wrongCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "notLinkedUser", + "printedName": "notLinkedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "BleError", + "printedName": "BleError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "invalidState", + "printedName": "invalidState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "resetting", + "printedName": "resetting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "poweredOff", + "printedName": "poweredOff", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "notConnected", + "printedName": "notConnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableBackgroundDataStreaming", - "printedName": "enableBackgroundDataStreaming", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "notConnectedLeft", + "printedName": "notConnectedLeft", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "activityIsRunning", + "printedName": "activityIsRunning", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "busy", + "printedName": "busy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityChunkStoreForFreeMemory", - "printedName": "activityChunkStoreForFreeMemory", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "commandError", + "printedName": "commandError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityChunkRetryLimit", - "printedName": "activityChunkRetryLimit", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "checkFirmwareUpdatePeriod", - "printedName": "checkFirmwareUpdatePeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "FirmwareError", + "printedName": "FirmwareError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "differentFirmware", + "printedName": "differentFirmware", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "memsError", + "printedName": "memsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableAnalyticsData", - "printedName": "enableAnalyticsData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "leftNoConnected", + "printedName": "leftNoConnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "restartRequired", + "printedName": "restartRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "recoverFromDfu", + "printedName": "recoverFromDfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "minimumFwVersion", + "printedName": "minimumFwVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "autorestartBackgroundDfu", - "printedName": "autorestartBackgroundDfu", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "updateRequired", + "printedName": "updateRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "wrongProductType", + "printedName": "wrongProductType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "firstChunkIdIsGreater", + "printedName": "firstChunkIdIsGreater", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "getChunksOnApplicationDidBecomeActive", - "printedName": "getChunksOnApplicationDidBecomeActive", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "startTimeZero", + "printedName": "startTimeZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enablePacketsDataLogging", - "printedName": "enablePacketsDataLogging", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cachedPacketsBatchUploadSize", - "printedName": "cachedPacketsBatchUploadSize", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "DfuError", + "printedName": "DfuError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "noLeftModule", + "printedName": "noLeftModule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "noUpdate", + "printedName": "noUpdate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chunkDuration", - "printedName": "chunkDuration", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ + "kind": "Var", + "name": "wrongFile", + "printedName": "wrongFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "noStart", + "printedName": "noStart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "aborted", + "printedName": "aborted", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "abortedRight", + "printedName": "abortedRight", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "clear", - "printedName": "clear()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTSettingsC5clearyyF", - "mangledName": "$s9ZTCoreKit10ZTSettingsC5clearyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTSettingsC", - "mangledName": "$s9ZTCoreKit10ZTSettingsC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTClosureEventMonitor", - "printedName": "ZTClosureEventMonitor", - "children": [ - { - "kind": "Var", - "name": "sessionDidBecomeInvalidWithError", - "printedName": "sessionDidBecomeInvalidWithError", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "abortedLeft", + "printedName": "abortedLeft", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "lowBattery", + "printedName": "lowBattery", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "inProgress", + "printedName": "inProgress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "updateRequired", + "printedName": "updateRequired", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrongProductType", + "printedName": "wrongProductType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidReceiveChallenge", - "printedName": "taskDidReceiveChallenge", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", @@ -121121,2419 +113854,2080 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "StoreError", + "printedName": "StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", + "kind": "Var", + "name": "missing", + "printedName": "missing", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", + "kind": "Var", + "name": "invalid", + "printedName": "invalid", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Any?)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrong", + "printedName": "wrong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidSendBodyData", - "printedName": "taskDidSendBodyData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "ActivityError", + "printedName": "ActivityError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "notStarted", + "printedName": "notStarted", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "notStartedLeft", + "printedName": "notStartedLeft", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskNeedNewBodyStream", - "printedName": "taskNeedNewBodyStream", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "kind": "Var", + "name": "notStopped", + "printedName": "notStopped", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "modeNotSetActivityIsRunning", + "printedName": "modeNotSetActivityIsRunning", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskWillPerformHTTPRedirection", - "printedName": "taskWillPerformHTTPRedirection", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "kind": "Var", + "name": "previousNotStopped", + "printedName": "previousNotStopped", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", + "kind": "Var", + "name": "previousRestoring", + "printedName": "previousRestoring", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", + "kind": "Var", + "name": "noUserParametersSet", + "printedName": "noUserParametersSet", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidFinishCollectingMetrics", - "printedName": "taskDidFinishCollectingMetrics", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "kind": "Var", + "name": "rawDataFlowIsRunning", + "printedName": "rawDataFlowIsRunning", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", + "kind": "Var", + "name": "invalidMobilityScanResults", + "printedName": "invalidMobilityScanResults", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", + "kind": "Var", + "name": "outsideActivityDetected", + "printedName": "outsideActivityDetected", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidComplete", - "printedName": "taskDidComplete", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "anomalyDetected", + "printedName": "anomalyDetected", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "mobility", + "printedName": "mobility", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + }, + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvg", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "NetworkError", + "printedName": "NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "userLinkError", + "printedName": "userLinkError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskIsWaitingForConnectivity", - "printedName": "taskIsWaitingForConnectivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "kind": "Var", + "name": "inaccessible", + "printedName": "inaccessible", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "urlError", + "printedName": "urlError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "URLError", + "printedName": "Foundation.URLError", + "usr": "s:10Foundation8URLErrorV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "generalError", + "printedName": "generalError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "dataTaskDidReceiveData", - "printedName": "dataTaskDidReceiveData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "kind": "Var", + "name": "noResponse", + "printedName": "noResponse", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", + "kind": "Var", + "name": "invalidResponseType", + "printedName": "invalidResponseType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", + "kind": "Var", + "name": "noResponseData", + "printedName": "noResponseData", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "HTTPURLResponse", + "printedName": "Foundation.HTTPURLResponse", + "usr": "c:objc(cs)NSHTTPURLResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "dataTaskWillCacheResponse", - "printedName": "dataTaskWillCacheResponse", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "kind": "Var", + "name": "endpointError", + "printedName": "endpointError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPURLResponse", + "printedName": "Foundation.HTTPURLResponse", + "usr": "c:objc(cs)NSHTTPURLResponse" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", + "kind": "Var", + "name": "custom", + "printedName": "custom", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "Tuple", + "printedName": "(errorCode: Swift.Int?, errorDescription: Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvs", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "downloadTaskDidFinishDownloadingToURL", - "printedName": "downloadTaskDidFinishDownloadingToURL", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "TypeDecl", + "name": "DecodableError", + "printedName": "DecodableError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "kind": "Var", + "name": "invalidKeyPath", + "printedName": "invalidKeyPath", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "Var", + "name": "emptyKeyPath", + "printedName": "emptyKeyPath", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "Var", + "name": "invalidJSON", + "printedName": "invalidJSON", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "downloadTaskDidWriteData", - "printedName": "downloadTaskDidWriteData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + }, + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvs", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "downloadTaskDidResumeAtOffset", - "printedName": "downloadTaskDidResumeAtOffset", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", + "printedName": "(any Swift.Error)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvp", + "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -123543,208 +115937,30 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", + "printedName": "(any Swift.Error)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvg", + "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Function", - "name": "binary", - "printedName": "binary(with:toLength:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE6binary4with8toLengthS2S_SitF", - "mangledName": "$sSS9ZTCoreKitE6binary4with8toLengthS2S_SitF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "fromBase64", - "printedName": "fromBase64", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { "kind": "TypeNominal", @@ -123762,9 +115978,13 @@ } ], "declKind": "Var", - "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvp", - "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvp", + "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "isFromExtension": true, "accessors": [ { @@ -123788,18 +116008,63 @@ } ], "declKind": "Accessor", - "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvg", - "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvg", + "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ { "kind": "Var", - "name": "toBase64", - "printedName": "toBase64", + "name": "hex", + "printedName": "hex", "children": [ { "kind": "TypeNominal", @@ -123809,8 +116074,8 @@ } ], "declKind": "Var", - "usr": "s:SS9ZTCoreKitE8toBase64SSvp", - "mangledName": "$sSS9ZTCoreKitE8toBase64SSvp", + "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvp", + "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvp", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessors": [ @@ -123827,9 +116092,11 @@ } ], "declKind": "Accessor", - "usr": "s:SS9ZTCoreKitE8toBase64SSvg", - "mangledName": "$sSS9ZTCoreKitE8toBase64SSvg", + "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvg", + "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 == Swift.UInt8>", + "sugared_genericSig": "", "isFromExtension": true, "accessorKind": "get" } @@ -123837,250 +116104,328 @@ }, { "kind": "Function", - "name": "substring", - "printedName": "substring(from:to:)", + "name": "has", + "printedName": "has(peripheral:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE9substring4from2toSSSi_SitF", - "mangledName": "$sSS9ZTCoreKitE9substring4from2toSSSi_SitF", + "usr": "s:Sa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", + "mangledName": "$sSa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "substring", - "printedName": "substring(range:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "_NSRange", - "printedName": "Foundation._NSRange", - "usr": "c:@S@_NSRange" - } + "genericSig": "<τ_0_0 where τ_0_0 : CoreBluetooth.CBPeripheral>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", - "mangledName": "$sSS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", - "moduleName": "ZTCoreKit", "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "matches", - "printedName": "matches(regex:)", + "name": "chunked", + "printedName": "chunked(into:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE7matches5regexSaySSGSS_tF", - "mangledName": "$sSS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "usr": "s:Sa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", + "mangledName": "$sSa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "random", - "printedName": "random(length:)", + "name": "stringify", + "printedName": "stringify()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE6random6lengthSSSi_tFZ", - "mangledName": "$sSS9ZTCoreKitE6random6lengthSSSi_tFZ", + "usr": "s:Sa9ZTCoreKitSSRszlE9stringifySSyF", + "mangledName": "$sSa9ZTCoreKitSSRszlE9stringifySSyF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 == Swift.String>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "split", - "printedName": "split(usingRegex:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", - "mangledName": "$sSS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "serialNumber", - "printedName": "serialNumber()", - "children": [ + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE12serialNumberSSyF", - "mangledName": "$sSS9ZTCoreKitE12serialNumberSSyF", + "declKind": "Constructor", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "fileName", - "printedName": "fileName()", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONArray:context:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE8fileNameSSyF", - "mangledName": "$sSS9ZTCoreKitE8fileNameSSyF", + "declKind": "Constructor", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "incrementedMacAddress", - "printedName": "incrementedMacAddress()", + "name": "toJSON", + "printedName": "toJSON()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE21incrementedMacAddressSSyF", - "mangledName": "$sSS9ZTCoreKitE21incrementedMacAddressSSyF", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "toJSONString", + "printedName": "toJSONString(prettyPrint:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", - "mangledName": "$sSS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", + "usr": "s:Sa", + "mangledName": "$sSa", "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ "EagerMove", "Frozen" @@ -124089,174 +116434,168 @@ "conformances": [ { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" }, { "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", + "name": "_Buffer", + "printedName": "_Buffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" } ] } ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" }, { "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", "children": [ { "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" } ] } ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + "usr": "s:Sk", + "mangledName": "$sSk" }, { "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", + "name": "MutableCollection", + "printedName": "MutableCollection", "children": [ { "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" }, { "kind": "Conformance", @@ -124270,9 +116609,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124283,9 +116621,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] }, @@ -124296,9 +116634,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] }, @@ -124309,17 +116654,17 @@ "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:SI" + "usr": "s:Sn" } ] } @@ -124339,9 +116684,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124352,9 +116696,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] }, @@ -124365,9 +116709,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" } ] }, @@ -124378,9 +116737,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] }, @@ -124391,17 +116757,17 @@ "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:SI" + "usr": "s:Sn" } ] } @@ -124421,9 +116787,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124434,9 +116799,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" } ] } @@ -124446,158 +116826,477 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" }, { "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] - }, + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" } ] - }, + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ { "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", "children": [ { "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" } ] - }, + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ { "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" } ] } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" }, { "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "name": "DataProtocol", + "printedName": "DataProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", + "name": "Regions", + "printedName": "Regions", "children": [ { "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" } ] } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" }, { "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "name": "AlamofireExtended", + "printedName": "AlamofireExtended", "children": [ { "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "name": "ExtendedType", + "printedName": "ExtendedType", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ] } ], - "usr": "s:Sm", - "mangledName": "$sSm" + "usr": "s:9Alamofire0A8ExtendedP", + "mangledName": "$s9Alamofire0A8ExtendedP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBCentralManager", + "printedName": "CBCentralManager", + "children": [ + { + "kind": "Function", + "name": "retrievePeripheral", + "printedName": "retrievePeripheral(withIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" + "kind": "Function", + "name": "retrieveConnectedPeripherals", + "printedName": "retrieveConnectedPeripherals(withServices:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any ZTCoreKit.ZTCBPeripheralProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Function", + "name": "connect", + "printedName": "connect(_:options:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelPeripheralConnection", + "printedName": "cancelPeripheralConnection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)CBCentralManager", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBCentralManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBManager", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBManager", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", @@ -124608,10 +117307,38 @@ }, { "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ZTCBCentralManagerProtocol", + "printedName": "ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP" } ] }, @@ -124620,6 +117347,84 @@ "name": "Data", "printedName": "Data", "children": [ + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvg", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "macAddress", @@ -125072,397 +117877,82 @@ } ], "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Mutating", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "append", - "printedName": "append(unsignedLong:bigEndian:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Mutating", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "dataObject", - "printedName": "dataObject(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subdata", - "printedName": "subdata(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeExpression, τ_0_0.Bound == Swift.Int>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "object", - "printedName": "object(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "crc32", - "printedName": "crc32(checksum:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE5crc328checksums6UInt32VAH_tF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE5crc328checksums6UInt32VAH_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "compress", - "printedName": "compress(size:bufferSize:provider:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "typeAttributes": [ - "noescape" - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE8compress4size10bufferSize8provider8consumers6UInt32VSi_SiACSi_SitKXEyACKXEtKFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE8compress4size10bufferSize8provider8consumers6UInt32VSi_SiACSi_SitKXEyACKXEtKFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decompress", - "printedName": "decompress(size:bufferSize:skipCRC32:provider:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "typeAttributes": [ - "noescape" - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE10decompress4size10bufferSize9skipCRC328provider8consumers6UInt32VSi_SiSbACSi_SitKXEyACKXEtKFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE10decompress4size10bufferSize9skipCRC328provider8consumers6UInt32VSi_SiSbACSi_SitKXEyACKXEtKFZ", + "usr": "s:10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "AccessControl", + "Mutating", "RawDocComment" ], "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, { - "kind": "Var", - "name": "hexString", - "printedName": "hexString", + "kind": "Function", + "name": "append", + "printedName": "append(unsignedLong:bigEndian:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvp", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", "moduleName": "ZTCoreKit", "declAttributes": [ + "Mutating", "RawDocComment" ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "dataObject", + "printedName": "dataObject(at:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvg", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } - ] + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "subdata", + "printedName": "subdata(in:)", "children": [ { "kind": "TypeNominal", @@ -125472,25 +117962,42 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeExpression, τ_0_0.Bound == Swift.Int>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "object", + "printedName": "object(at:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "usr": "s:10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "isFromExtension": true, "funcSelfKind": "NonMutating" } @@ -125782,936 +118289,27 @@ "kind": "TypeNominal", "name": "Int", "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvp", - "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvg", - "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Numeric>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:Sj", - "mangledName": "$sSj", - "moduleName": "Swift", - "genericSig": "<τ_0_0 : Swift.AdditiveArithmetic, τ_0_0 : Swift.ExpressibleByIntegerLiteral, τ_0_0.Magnitude : Swift.Comparable, τ_0_0.Magnitude : Swift.Numeric>", - "sugared_genericSig": "", - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UserDefaults", - "printedName": "UserDefaults", - "children": [ - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", @@ -126719,74 +118317,47 @@ "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sn" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", "children": [ { "kind": "TypeNominal", @@ -126795,106 +118366,166 @@ "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - }, + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt8", + "printedName": "UInt8", + "children": [ + { + "kind": "Var", + "name": "bits", + "printedName": "bits", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sa" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", + "declKind": "Var", + "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvp", + "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], "isFromExtension": true, "accessors": [ { @@ -126904,1258 +118535,1252 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvg", + "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "hexValue", + "printedName": "hexValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvp", + "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvg", + "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, - "accessorKind": "set" - }, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:s5UInt8V", + "mangledName": "$ss5UInt8V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Words", + "printedName": "Swift.UInt8.Words", + "usr": "s:s5UInt8V5WordsV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sz", + "mangledName": "$sSz" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + ] } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD2Storage", + "printedName": "Swift.UInt8.SIMD2Storage", + "usr": "s:s5UInt8V12SIMD2StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD4Storage", + "printedName": "Swift.UInt8.SIMD4Storage", + "usr": "s:s5UInt8V12SIMD4StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" + "name": "SIMD8Storage", + "printedName": "Swift.UInt8.SIMD8Storage", + "usr": "s:s5UInt8V12SIMD8StorageV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" + "name": "SIMD16Storage", + "printedName": "Swift.UInt8.SIMD16Storage", + "usr": "s:s5UInt8V13SIMD16StorageV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD32Storage", + "printedName": "Swift.UInt8.SIMD32Storage", + "usr": "s:s5UInt8V13SIMD32StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, + "name": "SIMD64Storage", + "printedName": "Swift.UInt8.SIMD64Storage", + "usr": "s:s5UInt8V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "usr": "s:10Starscream13MyWSArrayTypeP", + "mangledName": "$s10Starscream13MyWSArrayTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt16", + "printedName": "UInt16", + "children": [ + { + "kind": "Function", + "name": "toByteArray", + "printedName": "toByteArray(size:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "declKind": "Func", + "usr": "s:s6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "mangledName": "$ss6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:s6UInt16V", + "mangledName": "$ss6UInt16V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Words", + "printedName": "Swift.UInt16.Words", + "usr": "s:s6UInt16V5WordsV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD2Storage", + "printedName": "Swift.UInt16.SIMD2Storage", + "usr": "s:s6UInt16V12SIMD2StorageV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD4Storage", + "printedName": "Swift.UInt16.SIMD4Storage", + "usr": "s:s6UInt16V12SIMD4StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD8Storage", + "printedName": "Swift.UInt16.SIMD8Storage", + "usr": "s:s6UInt16V12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, + "name": "SIMD16Storage", + "printedName": "Swift.UInt16.SIMD16Storage", + "usr": "s:s6UInt16V13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD32Storage", + "printedName": "Swift.UInt16.SIMD32Storage", + "usr": "s:s6UInt16V13SIMD32StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD64Storage", + "printedName": "Swift.UInt16.SIMD64Storage", + "usr": "s:s6UInt16V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt32", + "printedName": "UInt32", + "children": [ + { + "kind": "Function", + "name": "toByteArray", + "printedName": "toByteArray(size:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "declKind": "Func", + "usr": "s:s6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "mangledName": "$ss6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:s6UInt32V", + "mangledName": "$ss6UInt32V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, + "name": "Words", + "printedName": "Swift.UInt32.Words", + "usr": "s:s6UInt32V5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SIMD2Storage", + "printedName": "Swift.UInt32.SIMD2Storage", + "usr": "s:s6UInt32V12SIMD2StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD4Storage", + "printedName": "Swift.UInt32.SIMD4Storage", + "usr": "s:s6UInt32V12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SIMD8Storage", + "printedName": "Swift.UInt32.SIMD8Storage", + "usr": "s:s6UInt32V12SIMD8StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(forKey:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD16Storage", + "printedName": "Swift.UInt32.SIMD16Storage", + "usr": "s:s6UInt32V13SIMD16StorageV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clear", - "printedName": "clear(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.UInt32.SIMD32Storage", + "usr": "s:s6UInt32V13SIMD32StorageV" + } + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.UInt32.SIMD64Storage", + "usr": "s:s6UInt32V13SIMD64StorageV" + } + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyySSF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyySSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Function", - "name": "clear", - "printedName": "clear(_:)", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "clearAll", - "printedName": "clearAll()", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSUserDefaults", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSUserDefaults", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" } ] }, @@ -128584,191 +120209,279 @@ }, { "kind": "TypeDecl", - "name": "UInt8", - "printedName": "UInt8", - "children": [ + "name": "Float", + "printedName": "Float", + "declKind": "Struct", + "usr": "s:Sf", + "mangledName": "$sSf", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "bits", - "printedName": "bits", + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvp", - "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } - ], - "declKind": "Accessor", - "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvg", - "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { - "kind": "Var", - "name": "hexValue", - "printedName": "hexValue", + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvp", - "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ], - "declKind": "Accessor", - "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvg", - "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } - ] - } - ], - "declKind": "Struct", - "usr": "s:s5UInt8V", - "mangledName": "$ss5UInt8V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" }, { "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" }, { "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", + "name": "Numeric", + "printedName": "Numeric", "children": [ { "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt8.Words", - "usr": "s:s5UInt8V5WordsV" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ] } ], - "usr": "s:Sz", - "mangledName": "$sSz" + "usr": "s:Sj", + "mangledName": "$sSj" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", "children": [ { "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ] } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -128782,9 +120495,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ] } @@ -128794,40 +120507,211 @@ }, { "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Float.SIMD2Storage", + "usr": "s:Sf12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Float.SIMD4Storage", + "usr": "s:Sf12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Float.SIMD8Storage", + "usr": "s:Sf12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Float.SIMD16Storage", + "usr": "s:Sf13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Float.SIMD32Storage", + "usr": "s:Sf13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Float.SIMD64Storage", + "usr": "s:Sf13SIMD64StorageV" } ] } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Var", + "name": "milliseconds", + "printedName": "milliseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvp", + "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvg", + "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { "kind": "Conformance", "name": "DataConvertible", @@ -128858,24 +120742,210 @@ }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_StringElement", - "printedName": "_StringElement", - "usr": "s:s14_StringElementP", - "mangledName": "$ss14_StringElementP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" }, { "kind": "Conformance", @@ -128905,6 +120975,35 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, { "kind": "Conformance", "name": "SIMDScalar", @@ -128917,9 +121016,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ] }, @@ -128931,8 +121030,8 @@ { "kind": "TypeNominal", "name": "SIMD2Storage", - "printedName": "Swift.UInt8.SIMD2Storage", - "usr": "s:s5UInt8V12SIMD2StorageV" + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" } ] }, @@ -128944,8 +121043,8 @@ { "kind": "TypeNominal", "name": "SIMD4Storage", - "printedName": "Swift.UInt8.SIMD4Storage", - "usr": "s:s5UInt8V12SIMD4StorageV" + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" } ] }, @@ -128957,8 +121056,8 @@ { "kind": "TypeNominal", "name": "SIMD8Storage", - "printedName": "Swift.UInt8.SIMD8Storage", - "usr": "s:s5UInt8V12SIMD8StorageV" + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" } ] }, @@ -128970,8 +121069,8 @@ { "kind": "TypeNominal", "name": "SIMD16Storage", - "printedName": "Swift.UInt8.SIMD16Storage", - "usr": "s:s5UInt8V13SIMD16StorageV" + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" } ] }, @@ -128983,8 +121082,8 @@ { "kind": "TypeNominal", "name": "SIMD32Storage", - "printedName": "Swift.UInt8.SIMD32Storage", - "usr": "s:s5UInt8V13SIMD32StorageV" + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" } ] }, @@ -128996,8 +121095,8 @@ { "kind": "TypeNominal", "name": "SIMD64Storage", - "printedName": "Swift.UInt8.SIMD64Storage", - "usr": "s:s5UInt8V13SIMD64StorageV" + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" } ] } @@ -129017,9 +121116,9 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ] } @@ -129053,27 +121152,61 @@ }, { "kind": "TypeDecl", - "name": "UInt16", - "printedName": "UInt16", + "name": "String", + "printedName": "String", "children": [ { "kind": "Function", - "name": "toByteArray", - "printedName": "toByteArray(size:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "mangledName": "$sSS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "binary", + "printedName": "binary(with:toLength:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" }, { "kind": "TypeNominal", @@ -129084,159 +121217,323 @@ } ], "declKind": "Func", - "usr": "s:s6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "mangledName": "$ss6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "usr": "s:SS9ZTCoreKitE6binary4with8toLengthS2S_SitF", + "mangledName": "$sSS9ZTCoreKitE6binary4with8toLengthS2S_SitF", "moduleName": "ZTCoreKit", "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:s6UInt16V", - "mangledName": "$ss6UInt16V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", + "kind": "Var", + "name": "fromBase64", + "printedName": "fromBase64", "children": [ { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt16.Words", - "usr": "s:s6UInt16V5WordsV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "declKind": "Var", + "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvp", + "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvg", + "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "kind": "Var", + "name": "toBase64", + "printedName": "toBase64", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS9ZTCoreKitE8toBase64SSvp", + "mangledName": "$sSS9ZTCoreKitE8toBase64SSvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:SS9ZTCoreKitE8toBase64SSvg", + "mangledName": "$sSS9ZTCoreKitE8toBase64SSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "substring", + "printedName": "substring(from:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE9substring4from2toSSSi_SitF", + "mangledName": "$sSS9ZTCoreKitE9substring4from2toSSSi_SitF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Function", + "name": "substring", + "printedName": "substring(range:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_NSRange", + "printedName": "Foundation._NSRange", + "usr": "c:@S@_NSRange" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", + "mangledName": "$sSS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "matches", + "printedName": "matches(regex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sx", - "mangledName": "$sSx" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "mangledName": "$sSS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "kind": "Function", + "name": "random", + "printedName": "random(length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE6random6lengthSSSi_tFZ", + "mangledName": "$sSS9ZTCoreKitE6random6lengthSSSi_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "kind": "Function", + "name": "split", + "printedName": "split(usingRegex:)", "children": [ { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", + "mangledName": "$sSS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "kind": "Function", + "name": "serialNumber", + "printedName": "serialNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE12serialNumberSSyF", + "mangledName": "$sSS9ZTCoreKitE12serialNumberSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fileName", + "printedName": "fileName()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE8fileNameSSyF", + "mangledName": "$sSS9ZTCoreKitE8fileNameSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "incrementedMacAddress", + "printedName": "incrementedMacAddress()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE21incrementedMacAddressSSyF", + "mangledName": "$sSS9ZTCoreKitE21incrementedMacAddressSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ { "kind": "Conformance", "name": "DataConvertible", @@ -129258,6 +121555,20 @@ "usr": "s:SE", "mangledName": "$sSE" }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, { "kind": "Conformance", "name": "CustomReflectable", @@ -129274,17 +121585,17 @@ }, { "kind": "Conformance", - "name": "_StringElement", - "printedName": "_StringElement", - "usr": "s:s14_StringElementP", - "mangledName": "$ss14_StringElementP" + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" }, { "kind": "Conformance", @@ -129295,541 +121606,430 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" }, { "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", "children": [ { "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int16", - "printedName": "Swift.Int16", - "usr": "s:s5Int16V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.UInt16.SIMD2Storage", - "usr": "s:s6UInt16V12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.UInt16.SIMD4Storage", - "usr": "s:s6UInt16V12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt16.SIMD8Storage", - "usr": "s:s6UInt16V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt16.SIMD16Storage", - "usr": "s:s6UInt16V13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "name": "StringLiteralType", + "printedName": "StringLiteralType", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt16.SIMD32Storage", - "usr": "s:s6UInt16V13SIMD32StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ { "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt16.SIMD64Storage", - "usr": "s:s6UInt16V13SIMD64StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, { "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", "children": [ { "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", "children": [ { "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UInt32", - "printedName": "UInt32", - "children": [ - { - "kind": "Function", - "name": "toByteArray", - "printedName": "toByteArray(size:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } - ], - "usr": "s:Sa" + ] }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:s6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "mangledName": "$ss6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:s6UInt32V", - "mangledName": "$ss6UInt32V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ { "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt32.Words", - "usr": "s:s6UInt32V5WordsV" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + }, { "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" } ] } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "usr": "s:SK", + "mangledName": "$sSK" }, { "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "name": "Collection", + "printedName": "Collection", "children": [ { "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + }, { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", + "name": "Sequence", + "printedName": "Sequence", "children": [ { "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] }, { "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.UInt32.SIMD2Storage", - "usr": "s:s6UInt32V12SIMD2StorageV" + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" } ] - }, + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ { "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "name": "UTF8View", + "printedName": "UTF8View", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.UInt32.SIMD4Storage", - "usr": "s:s6UInt32V12SIMD4StorageV" + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "name": "UTF16View", + "printedName": "UTF16View", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt32.SIMD8Storage", - "usr": "s:s6UInt32V12SIMD8StorageV" + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt32.SIMD16Storage", - "usr": "s:s6UInt32V13SIMD16StorageV" + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt32.SIMD32Storage", - "usr": "s:s6UInt32V13SIMD32StorageV" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] - }, + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ { "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "name": "StringInterpolation", + "printedName": "StringInterpolation", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt32.SIMD64Storage", - "usr": "s:s6UInt32V13SIMD64StorageV" + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" } ] } ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" }, { "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" }, { "kind": "Conformance", @@ -129843,9 +122043,9 @@ "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" } ] } @@ -129855,10 +122055,91 @@ }, { "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "URLConvertible", + "printedName": "URLConvertible", + "usr": "s:9Alamofire14URLConvertibleP", + "mangledName": "$s9Alamofire14URLConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBService", + "printedName": "CBService", + "declKind": "Class", + "usr": "c:objc(cs)CBService", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBService", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBAttribute", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBAttribute", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -130169,976 +122450,170 @@ "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt64.SIMD8Storage", - "usr": "s:s6UInt64V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt64.SIMD16Storage", - "usr": "s:s6UInt64V13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt64.SIMD32Storage", - "usr": "s:s6UInt64V13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt64.SIMD64Storage", - "usr": "s:s6UInt64V13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "children": [ - { - "kind": "Var", - "name": "milliseconds", - "printedName": "milliseconds", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvp", - "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvg", - "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "children": [ - { - "kind": "Var", - "name": "hex", - "printedName": "hex", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvp", - "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvg", - "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == Swift.UInt8>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "has", - "printedName": "has(peripheral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", - "mangledName": "$sSa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : CoreBluetooth.CBPeripheral>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "chunked", - "printedName": "chunked(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", - "mangledName": "$sSa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stringify", - "printedName": "stringify()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitSSRszlE9stringifySSyF", - "mangledName": "$sSa9ZTCoreKitSSRszlE9stringifySSyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == Swift.String>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "SIMD8Storage", + "printedName": "Swift.UInt64.SIMD8Storage", + "usr": "s:s6UInt64V12SIMD8StorageV" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "SIMD16Storage", + "printedName": "Swift.UInt64.SIMD16Storage", + "usr": "s:s6UInt64V13SIMD16StorageV" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONArray:context:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD32Storage", + "printedName": "Swift.UInt64.SIMD32Storage", + "usr": "s:s6UInt64V13SIMD32StorageV" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "SIMD64Storage", + "printedName": "Swift.UInt64.SIMD64Storage", + "usr": "s:s6UInt64V13SIMD64StorageV" } - ], - "usr": "s:Sa" - }, + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Constructor", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "init_kind": "Designated" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Dictionary", + "printedName": "Dictionary", + "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(prettyPrint:)", + "name": "merge", + "printedName": "merge(dict:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", + "usr": "s:SD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", + "mangledName": "$sSD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", "isFromExtension": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", + "usr": "s:SD", + "mangledName": "$sSD", "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", "declAttributes": [ "EagerMove", "Frozen" ], "isExternal": true, "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, { "kind": "Conformance", "name": "Equatable", @@ -131148,37 +122623,22 @@ }, { "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", "children": [ { "kind": "TypeWitness", @@ -131187,73 +122647,44 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:s10ArraySliceV" + ] } ] }, { "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" } ] } ], - "usr": "s:Sk", - "mangledName": "$sSk" + "usr": "s:ST", + "mangledName": "$sST" }, { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "name": "Collection", + "printedName": "Collection", "children": [ { "kind": "TypeWitness", @@ -131262,75 +122693,46 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:s10ArraySliceV" + ] } ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ + }, { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Index", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", + "usr": "s:SD5IndexV" } ] }, { "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" } ] }, @@ -131341,16 +122743,29 @@ "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Slice", + "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], - "usr": "s:s10ArraySliceV" + "usr": "s:s5SliceV" } ] }, @@ -131361,33 +122776,45 @@ "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], - "usr": "s:Sn" + "usr": "s:SI" } ] } ], - "usr": "s:SK", - "mangledName": "$sSK" + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", "children": [ { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "Key", + "printedName": "Key", "children": [ { "kind": "TypeNominal", @@ -131398,195 +122825,524 @@ }, { "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "name": "Value", + "printedName": "Value", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ] - }, + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" } ] - }, + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Date", + "printedName": "Date", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apiFormat", + "printedName": "apiFormat", + "children": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logFormat", + "printedName": "logFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DateV", + "mangledName": "$s10Foundation4DateV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", "children": [ { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "ReferenceType", + "printedName": "ReferenceType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } ] - }, + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } ] } ], - "usr": "s:ST", - "mangledName": "$sST" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ] } ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" + "usr": "s:Sx", + "mangledName": "$sSx" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBCharacteristic", + "printedName": "CBCharacteristic", + "children": [ + { + "kind": "Function", + "name": "notifyValue", + "printedName": "notifyValue(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE9readValueyyF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE9readValueyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(_:writeType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristicWriteType", + "printedName": "CoreBluetooth.CBCharacteristicWriteType", + "usr": "c:@E@CBCharacteristicWriteType" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)CBCharacteristic", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBCharacteristic", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBAttribute", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBAttribute", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", @@ -131601,6 +123357,38 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBPeripheral", + "printedName": "CBPeripheral", + "declKind": "Class", + "usr": "c:objc(cs)CBPeripheral", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBPeripheral", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBPeer", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBPeer", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -131611,551 +123399,619 @@ }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "ZTCBPeripheralProtocol", + "printedName": "ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvp", + "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvg", + "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Numeric>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, + ] + } + ], + "declKind": "Protocol", + "usr": "s:Sj", + "mangledName": "$sSj", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.AdditiveArithmetic, τ_0_0 : Swift.ExpressibleByIntegerLiteral, τ_0_0.Magnitude : Swift.Comparable, τ_0_0.Magnitude : Swift.Numeric>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UserDefaults", + "printedName": "UserDefaults", + "children": [ + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ], - "usr": "s:s15CollectionOfOneV" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ - { - "kind": "Function", - "name": "merge", - "printedName": "merge(dict:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:SD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", - "mangledName": "$sSD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "EagerMove", - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" - }, + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_1" + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:s5SliceV" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SI" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Date", - "printedName": "Date", - "children": [ - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -132169,77 +124025,158 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", "moduleName": "ZTCoreKit", + "implicit": true, "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "apiFormat", - "printedName": "apiFormat", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "logFormat", - "printedName": "logFormat", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -132253,2298 +124190,1366 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DateV", - "mangledName": "$s10Foundation4DateV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + }, { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bundle", - "printedName": "Bundle", - "declKind": "Class", - "usr": "c:objc(cs)NSBundle", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSBundle", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBCharacteristic", - "printedName": "CBCharacteristic", - "children": [ - { - "kind": "Function", - "name": "notifyValue", - "printedName": "notifyValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "readValue", - "printedName": "readValue()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE9readValueyyF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE9readValueyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "write", - "printedName": "write(_:writeType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristicWriteType", - "printedName": "CoreBluetooth.CBCharacteristicWriteType", - "usr": "c:@E@CBCharacteristicWriteType" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CBCharacteristic", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBCharacteristic", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBAttribute", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBAttribute", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "FileManager", - "printedName": "FileManager", - "children": [ - { - "kind": "Function", - "name": "zipItem", - "printedName": "zipItem(at:to:shouldKeepParent:compressionMethod:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So13NSFileManagerC9ZTCoreKitE7zipItem2at2to16shouldKeepParent17compressionMethod8progressy10Foundation3URLV_ALSbAC013ZTCompressionM0OSo10NSProgressCSgtKF", - "mangledName": "$sSo13NSFileManagerC9ZTCoreKitE7zipItem2at2to16shouldKeepParent17compressionMethod8progressy10Foundation3URLV_ALSbAC013ZTCompressionM0OSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "unzipItem", - "printedName": "unzipItem(at:to:skipCRC32:progress:preferredEncoding:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Progress?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So13NSFileManagerC9ZTCoreKitE9unzipItem2at2to9skipCRC328progress17preferredEncodingy10Foundation3URLV_ALSbSo10NSProgressCSgSSAJE0M0VSgtKF", - "mangledName": "$sSo13NSFileManagerC9ZTCoreKitE9unzipItem2at2to9skipCRC328progress17preferredEncodingy10Foundation3URLV_ALSbSo10NSProgressCSgSSAJE0M0VSgtKF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSFileManager", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSFileManager", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URL", - "printedName": "URL", - "children": [ - { - "kind": "Function", - "name": "isContained", - "printedName": "isContained(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } + "AccessControl" ], - "declKind": "Func", - "usr": "s:10Foundation3URLV9ZTCoreKitE11isContained2inSbAC_tF", - "mangledName": "$s10Foundation3URLV9ZTCoreKitE11isContained2inSbAC_tF", - "moduleName": "ZTCoreKit", "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10Foundation3URLV", - "mangledName": "$s10Foundation3URLV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSURL", - "printedName": "Foundation.NSURL", - "usr": "c:objc(cs)NSURL" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSURL", - "printedName": "Foundation.NSURL", - "usr": "c:objc(cs)NSURL" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByFileReferenceLiteral", - "printedName": "_ExpressibleByFileReferenceLiteral", - "usr": "s:s34_ExpressibleByFileReferenceLiteralP", - "mangledName": "$ss34_ExpressibleByFileReferenceLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBService", - "printedName": "CBService", - "declKind": "Class", - "usr": "c:objc(cs)CBService", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBService", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBAttribute", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBAttribute", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBCentralManager", - "printedName": "CBCentralManager", - "children": [ - { - "kind": "Function", - "name": "retrievePeripheral", - "printedName": "retrievePeripheral(withIdentifier:)", - "children": [ + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "retrieveConnectedPeripherals", - "printedName": "retrieveConnectedPeripherals(withServices:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[any ZTCoreKit.ZTCBPeripheralProtocol]", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:Sa" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "cancelPeripheralConnection", - "printedName": "cancelPeripheralConnection(_:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CBCentralManager", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBCentralManager", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBManager", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBManager", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "ZTCBCentralManagerProtocol", - "printedName": "ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBPeripheral", - "printedName": "CBPeripheral", - "declKind": "Class", - "usr": "c:objc(cs)CBPeripheral", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBPeripheral", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBPeer", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBPeer", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "ZTCBPeripheralProtocol", - "printedName": "ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URLRequest", - "printedName": "URLRequest", - "declKind": "Struct", - "usr": "s:10Foundation10URLRequestV", - "mangledName": "$s10Foundation10URLRequestV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSURLRequest", - "printedName": "Foundation.NSURLRequest", - "usr": "c:objc(cs)NSURLRequest" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "NSURLRequest", - "printedName": "Foundation.NSURLRequest", - "usr": "c:objc(cs)NSURLRequest" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecTrust", - "printedName": "SecTrust", - "declKind": "Class", - "usr": "c:@T@SecTrustRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecPolicy", - "printedName": "SecPolicy", - "declKind": "Class", - "usr": "c:@T@SecPolicyRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecCertificate", - "printedName": "SecCertificate", - "declKind": "Class", - "usr": "c:@T@SecCertificateRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Int32", - "printedName": "Int32", - "declKind": "Struct", - "usr": "s:s5Int32V", - "mangledName": "$ss5Int32V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int32.Words", - "usr": "s:s5Int32V5WordsV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sj", - "mangledName": "$sSj" + ] }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + ], + "usr": "s:Sq" + }, { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int32.SIMD2Storage", - "usr": "s:s5Int32V12SIMD2StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int32.SIMD4Storage", - "usr": "s:s5Int32V12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int32.SIMD8Storage", - "usr": "s:s5Int32V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int32.SIMD16Storage", - "usr": "s:s5Int32V13SIMD16StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int32.SIMD32Storage", - "usr": "s:s5Int32V13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int32.SIMD64Storage", - "usr": "s:s5Int32V13SIMD64StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "usr": "s:Sq" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecTrustResultType", - "printedName": "SecTrustResultType", - "declKind": "Enum", - "usr": "c:@E@SecTrustResultType", - "moduleName": "Security", - "objc_name": "SecTrustResultType", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "Dynamic" - ], - "enumRawTypeName": "UInt32", - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + ] }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Function", + "name": "value", + "printedName": "value(forKey:)", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyySSF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyySSF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAll", + "printedName": "clearAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "TypeDecl", - "name": "URLSessionConfiguration", - "printedName": "URLSessionConfiguration", + ], "declKind": "Class", - "usr": "c:objc(cs)NSURLSessionConfiguration", + "usr": "c:objc(cs)NSUserDefaults", "moduleName": "Foundation", "isOpen": true, - "intro_iOS": "7.0", - "objc_name": "NSURLSessionConfiguration", + "objc_name": "NSUserDefaults", "declAttributes": [ - "Available", "ObjC", - "SynthesizedProtocol", "NonSendable", - "Sendable", "Dynamic" ], "superclassUsr": "c:objc(cs)NSObject", @@ -134554,13 +125559,6 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, { "kind": "Conformance", "name": "Equatable", @@ -134612,110 +125610,6 @@ } ] }, - { - "kind": "TypeDecl", - "name": "JSONDecoder", - "printedName": "JSONDecoder", - "declKind": "Class", - "usr": "s:10Foundation11JSONDecoderC", - "mangledName": "$s10Foundation11JSONDecoderC", - "moduleName": "Foundation", - "isOpen": true, - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "TopLevelDecoder", - "printedName": "TopLevelDecoder", - "children": [ - { - "kind": "TypeWitness", - "name": "Input", - "printedName": "Input", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:7Combine15TopLevelDecoderP", - "mangledName": "$s7Combine15TopLevelDecoderP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "PropertyListDecoder", - "printedName": "PropertyListDecoder", - "declKind": "Class", - "usr": "s:10Foundation19PropertyListDecoderC", - "mangledName": "$s10Foundation19PropertyListDecoderC", - "moduleName": "Foundation", - "isOpen": true, - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "TopLevelDecoder", - "printedName": "TopLevelDecoder", - "children": [ - { - "kind": "TypeWitness", - "name": "Input", - "printedName": "Input", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:7Combine15TopLevelDecoderP", - "mangledName": "$s7Combine15TopLevelDecoderP" - } - ] - }, { "kind": "TypeDecl", "name": "DateFormatter", @@ -134834,6 +125728,87 @@ } ] }, + { + "kind": "TypeDecl", + "name": "CBPeripheralManager", + "printedName": "CBPeripheralManager", + "declKind": "Class", + "usr": "c:objc(cs)CBPeripheralManager", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "CBPeripheralManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBManager", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBManager", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ZTCBPeripheralManagerProtocol", + "printedName": "ZTCBPeripheralManagerProtocol", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP" + } + ] + }, { "kind": "TypeDecl", "name": "Set", @@ -135227,170 +126202,34 @@ { "kind": "TypeWitness", "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices>", - "children": [ - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "SetAlgebra", - "printedName": "SetAlgebra", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "usr": "s:s10SetAlgebraP", - "mangledName": "$ss10SetAlgebraP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSSet", - "printedName": "Foundation.NSSet", - "usr": "c:objc(cs)NSSet" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URLComponents", - "printedName": "URLComponents", - "declKind": "Struct", - "usr": "s:10Foundation13URLComponentsV", - "mangledName": "$s10Foundation13URLComponentsV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "NSURLComponents", - "printedName": "Foundation.NSURLComponents", - "usr": "c:objc(cs)NSURLComponents" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:SI" } ] } ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", @@ -135401,14129 +126240,12029 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "SetAlgebra", + "printedName": "SetAlgebra", "children": [ { "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "NSURLComponents", - "printedName": "Foundation.NSURLComponents", - "usr": "c:objc(cs)NSURLComponents" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1668, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1896, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2172, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1574, - "length": 9, - "value": "\"CONNECT\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1666, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1751, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 6, - "value": "\"HEAD\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1926, - "length": 9, - "value": "\"OPTIONS\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2016, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2102, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2185, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2271, - "length": 7, - "value": "\"TRACE\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "Array", - "offset": 19884, - "length": 23, - "value": "[\"json\", \"xml\", \"text\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "IntegerLiteral", - "offset": 19956, - "length": 7, - "value": "100000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "IntegerLiteral", - "offset": 20520, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/DFU\/LegacyDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2054, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "IntegerLiteral", - "offset": 448, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 2614, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 3753, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 4348, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 5101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 5469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "IntegerLiteral", - "offset": 5691, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1367, - "length": 7, - "value": "[\"en0\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1402, - "length": 21, - "value": "[\"en2\", \"en3\", \"en4\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1454, - "length": 44, - "value": "[\"pdp_ip0\", \"pdp_ip1\", \"pdp_ip2\", \"pdp_ip3\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTAES.swift", - "kind": "StringLiteral", - "offset": 1885, - "length": 18, - "value": "\"1234567890123456\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTAES.swift", - "kind": "StringLiteral", - "offset": 1917, - "length": 18, - "value": "\"abcdefghijklmnop\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "IntegerLiteral", - "offset": 1540, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "IntegerLiteral", - "offset": 1691, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 1821, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "Array", - "offset": 3280, - "length": 745, - "value": "[408, 500, 502, 503, 504]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "StringLiteral", - "offset": 18242, - "length": 27, - "value": "\"ZTCoreKit.ZTConnectionLostRetryPolicy\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2197, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDfuPeripheralSelector.swift", - "kind": "StringLiteral", - "offset": 402, - "length": 23, - "value": "\"ZTCoreKit.ZTDfuPeripheralSelector\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 249, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 1355, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 1410, - "length": 34, - "value": "\"abcdefghjklmnpqrstuvwxyz12345789\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 1530, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 1564, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 2839, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 3376, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 3708, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 4040, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 7153, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "BooleanLiteral", - "offset": 279, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 4, - "value": "\"4C\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 4, - "value": "\"52\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 4, - "value": "\"4C\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 4, - "value": "\"52\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 649, - "length": 5, - "value": "0o644" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 704, - "length": 5, - "value": "0o755" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 830, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 861, - "length": 5, - "value": "66000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 910, - "length": 10, - "value": "0x06054b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 958, - "length": 10, - "value": "0x04034b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 1005, - "length": 10, - "value": "0x08074b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 1054, - "length": 10, - "value": "0x02014b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"memory\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4747, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/String+Operator.swift", - "kind": "StringLiteral", - "offset": 253, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/String+Operator.swift", - "kind": "StringLiteral", - "offset": 756, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "IntegerLiteral", - "offset": 410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 570, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 1352, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 6966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageTime.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+MemoryFile.swift", - "kind": "IntegerLiteral", - "offset": 2786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2892, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2922, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "IntegerLiteral", - "offset": 10257, - "length": 1, - "value": "0" - }, + } + ], + "usr": "s:s10SetAlgebraP", + "mangledName": "$ss10SetAlgebraP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSSet", + "printedName": "Foundation.NSSet", + "usr": "c:objc(cs)NSSet" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTMediaFileTemplate.swift", "kind": "StringLiteral", - "offset": 1633, - "length": 16, - "value": "\"ZTCoreKit.SecureDFUService\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", - "kind": "FloatLiteral", - "offset": 374, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", - "kind": "FloatLiteral", - "offset": 543, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1803, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1840, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 2064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCharacteristic.swift", - "kind": "BooleanLiteral", - "offset": 935, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTParameterEncoding.swift", - "kind": "Array", - "offset": 10302, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Array", - "offset": 4527, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Dictionary", - "offset": 4645, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 7635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Array", - "offset": 7970, + "offset": 310, "length": 2, - "value": "[]" + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", "kind": "StringLiteral", - "offset": 12435, - "length": 33, - "value": "\"org.alamofire.session.rootQueue\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 12508, - "length": 4, - "value": "true" + "offset": 223, + "length": 20, + "value": "\"arrayParametersKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", "kind": "Array", - "offset": 12843, + "offset": 835, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 23751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 25980, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 27688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 63072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 9, - "value": "\"Upgrade\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 11, - "value": "\"websocket\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1176, - "length": 6, - "value": "\"Host\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1219, - "length": 12, - "value": "\"Connection\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1268, - "length": 9, - "value": "\"Upgrade\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 24, - "value": "\"Sec-WebSocket-Protocol\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1375, - "length": 23, - "value": "\"Sec-WebSocket-Version\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1435, - "length": 4, - "value": "\"13\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1476, - "length": 26, - "value": "\"Sec-WebSocket-Extensions\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1539, - "length": 19, - "value": "\"Sec-WebSocket-Key\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1595, - "length": 8, - "value": "\"Origin\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1640, - "length": 22, - "value": "\"Sec-WebSocket-Accept\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "IntegerLiteral", - "offset": 1699, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "Array", - "offset": 1739, - "length": 16, - "value": "[\"wss\", \"https\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2069, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2069, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSessionDelegate.swift", - "kind": "StringLiteral", - "offset": 137, - "length": 17, - "value": "\"ZTCoreKit.ZTSessionDelegate\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTOperationQueue+Alamofire.swift", - "kind": "BooleanLiteral", - "offset": 2215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2744, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "IntegerLiteral", - "offset": 3297, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "StringLiteral", - "offset": 1633, - "length": 16, - "value": "\"ZTCoreKit.LegacyDFUService\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", - "kind": "IntegerLiteral", - "offset": 334, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2061, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2141, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2223, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2393, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2061, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2141, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2223, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2393, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "StringLiteral", - "offset": 3227, - "length": 11, - "value": "\"ZTCoreKit.DFUFirmware\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/URL+PlistHandler.swift", - "kind": "StringLiteral", - "offset": 1470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/HexToBinConverter\/IntelHex2BinConverter.swift", - "kind": "IntegerLiteral", - "offset": 2862, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", "kind": "IntegerLiteral", - "offset": 517, + "offset": 397, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", "kind": "IntegerLiteral", - "offset": 517, + "offset": 462, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTRequestChain.swift", "kind": "Array", - "offset": 1495, - "length": 3179, - "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "BooleanLiteral", - "offset": 7906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist+Error.swift", - "kind": "StringLiteral", - "offset": 1029, - "length": 17, - "value": "\"$ ZTPlist.error\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 177, - "length": 4, - "value": "0x00" + "offset": 470, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 366, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, - "length": 4, - "value": "0x0A" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, + "offset": 1608, "length": 4, - "value": "0x0B" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 501, + "offset": 1720, "length": 4, - "value": "0x0C" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 528, + "offset": 1802, "length": 4, - "value": "0x0D" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 1907, "length": 4, - "value": "0x0E" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 177, + "offset": 1997, "length": 4, - "value": "0x00" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 366, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, - "length": 4, - "value": "0x0A" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, + "offset": 1608, "length": 4, - "value": "0x0B" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 501, + "offset": 1720, "length": 4, - "value": "0x0C" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 528, + "offset": 1802, "length": 4, - "value": "0x0D" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 1907, "length": 4, - "value": "0x0E" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 177, + "offset": 1997, "length": 4, - "value": "0x00" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 312, + "offset": 1608, "length": 4, - "value": "0x05" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 339, + "offset": 1720, "length": 4, - "value": "0x06" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 366, + "offset": 1802, "length": 4, - "value": "0x07" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 393, + "offset": 1907, "length": 4, - "value": "0x08" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, + "offset": 1997, "length": 4, - "value": "0x09" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1067, "length": 4, - "value": "0x0A" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 501, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1279, "length": 4, - "value": "0x0C" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 528, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1403, "length": 4, - "value": "0x0D" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 555, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1751, "length": 4, - "value": "0x0E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 36, - "value": "\"com.vluxe.starscream.networkstream\"" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", - "kind": "Array", - "offset": 1247, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "IntegerLiteral", + "offset": 1863, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "BooleanLiteral", - "offset": 1330, + "offset": 2026, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "BooleanLiteral", - "offset": 1358, + "offset": 2143, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 1614, + "offset": 2263, "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2493, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2493, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" + "value": "50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" + "offset": 2371, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2493, + "offset": 2562, "length": 4, - "value": "0x04" + "value": "1200" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2691, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2820, "length": 4, - "value": "0x06" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2958, "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "StringLiteral", - "offset": 5098, - "length": 13, - "value": "\"ZTCoreKit.ButtonlessDFU\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1970, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2035, - "length": 1, - "value": "5" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 2, - "value": "10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 3068, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2220, + "offset": 3169, "length": 2, - "value": "15" + "value": "50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2293, + "offset": 4075, "length": 2, "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 1970, + "offset": 1461, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2035, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2220, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 2293, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", - "kind": "BooleanLiteral", - "offset": 1934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", - "kind": "BooleanLiteral", - "offset": 1971, + "offset": 1485, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1726, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1874, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAlamofire.swift", - "kind": "StringLiteral", - "offset": 1562, - "length": 7, - "value": "\"5.4.3\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2137, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2172, - "length": 25, - "value": "\"info_read_only_metadata\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2137, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2172, - "length": 25, - "value": "\"info_read_only_metadata\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2550, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2586, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2550, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2586, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 207, - "length": 4, - "value": "0x02" + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 228, - "length": 4, - "value": "0x03" + "offset": 1461, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 249, - "length": 4, - "value": "0x04" + "offset": 1485, + "length": 5, + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 270, - "length": 4, - "value": "0x05" + "offset": 1461, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 291, - "length": 4, - "value": "0x06" + "offset": 1485, + "length": 5, + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x07" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 333, - "length": 4, - "value": "0x08" + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x00" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 207, - "length": 4, - "value": "0x02" + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 228, - "length": 4, - "value": "0x03" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 249, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "kind": "IntegerLiteral", + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 270, + "offset": 228, "length": 4, - "value": "0x05" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 291, + "offset": 295, "length": 4, - "value": "0x06" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 312, + "offset": 357, "length": 4, - "value": "0x07" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 228, "length": 4, - "value": "0x08" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 186, + "offset": 295, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 207, + "offset": 357, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", "offset": 228, "length": 4, - "value": "0x03" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 295, "length": 4, - "value": "0x04" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 270, + "offset": 357, "length": 4, - "value": "0x05" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 291, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", + "kind": "BooleanLiteral", + "offset": 1916, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", + "kind": "BooleanLiteral", + "offset": 1955, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x07" + "offset": 334, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", "kind": "IntegerLiteral", - "offset": 333, - "length": 4, - "value": "0x08" + "offset": 393, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTCustomDateFormatTransform.swift", "kind": "StringLiteral", - "offset": 671, - "length": 8, - "value": "\".plist\"" + "offset": 1300, + "length": 27, + "value": "\"ZTCoreKit.ZTCustomDateFormatTransform\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", "kind": "StringLiteral", - "offset": 792, - "length": 2, + "offset": 354, + "length": 32, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 1, + "value": "\".networklogger\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 38, + "value": "\"99DDCDAB-A80C-4F94-BE5D-C66B9FBA40CF\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 2506, + "length": 38, + "value": "\"99DDCDA8-A80C-4F94-BE5D-C66B9FBA40CF\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 3659, + "length": 6, + "value": "\"180A\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 4672, + "length": 6, + "value": "\"FE59\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 443, + "offset": 157, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 500, + "offset": 180, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 551, + "offset": 203, "length": 4, - "value": "0x02" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 653, + "offset": 226, "length": 4, - "value": "0x05" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 724, + "offset": 157, "length": 4, - "value": "0x0B" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 774, + "offset": 180, "length": 4, - "value": "0x0C" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 844, + "offset": 203, "length": 4, - "value": "0x0D" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 921, + "offset": 226, "length": 4, - "value": "0x14" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 998, + "offset": 157, "length": 4, - "value": "0x15" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1060, + "offset": 180, "length": 4, - "value": "0x16" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1125, + "offset": 203, "length": 4, - "value": "0x18" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1189, + "offset": 226, "length": 4, - "value": "0x1C" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/HexToBinConverter\/IntelHex2BinConverter.swift", "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "0x1D" + "offset": 2866, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 4, - "value": "0x21" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1367, + "length": 7, + "value": "[\"en0\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1407, - "length": 4, - "value": "0x22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1402, + "length": 21, + "value": "[\"en2\", \"en3\", \"en4\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "0x23" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1454, + "length": 44, + "value": "[\"pdp_ip0\", \"pdp_ip1\", \"pdp_ip2\", \"pdp_ip3\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1667, - "length": 4, - "value": "0x24" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCharacteristic.swift", + "kind": "BooleanLiteral", + "offset": 935, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 4, - "value": "0x26" + "offset": 2063, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1792, - "length": 4, - "value": "0x27" + "offset": 2143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 4, - "value": "0x28" + "offset": 2225, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1967, - "length": 4, - "value": "0x29" + "offset": 2403, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2055, - "length": 4, - "value": "0x2A" + "offset": 2498, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2117, - "length": 4, - "value": "0x30" + "offset": 2063, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2345, - "length": 4, - "value": "0x31" + "offset": 2143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2539, - "length": 4, - "value": "0x32" + "offset": 2225, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2612, - "length": 4, - "value": "0x33" + "offset": 2403, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 4, - "value": "0x34" + "offset": 2498, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2757, - "length": 4, - "value": "0x40" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", + "kind": "StringLiteral", + "offset": 3254, + "length": 11, + "value": "\"ZTCoreKit.DFUFirmware\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2829, - "length": 4, - "value": "0x46" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 24, + "value": "\"com.zhortech.ZTCoreKit\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2890, - "length": 4, - "value": "0x49" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 11, + "value": "\"ZTCoreKit\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2966, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 705, "length": 4, - "value": "0x4A" + "value": "\"v1\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3013, - "length": 4, - "value": "0x50" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 759, + "length": 7, + "value": "\"1.4.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3080, - "length": 4, - "value": "0x51" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 5, + "value": "\"1.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3198, - "length": 4, - "value": "0x52" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 3112, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3331, - "length": 4, - "value": "0x53" + "offset": 4231, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3465, - "length": 4, - "value": "0xE1" + "offset": 4295, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3605, - "length": 4, - "value": "0xE2" + "offset": 4348, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3713, - "length": 4, - "value": "0xE3" + "offset": 4518, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3829, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 5024, "length": 4, - "value": "0xE4" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4003, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 5087, "length": 4, - "value": "0xE5" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4186, - "length": 4, - "value": "0xE6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 6317, + "length": 14, + "value": "\"3.1.0.PS.0.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4488, - "length": 4, - "value": "0xE7" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 6408, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4540, - "length": 4, - "value": "0xF6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 6513, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4583, - "length": 4, - "value": "0xF7" + "offset": 6844, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4626, - "length": 4, - "value": "0xFA" + "offset": 6996, + "length": 2, + "value": "60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4687, - "length": 4, - "value": "0xFC" + "offset": 9493, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4746, - "length": 4, - "value": "0xFD" + "offset": 10342, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4833, - "length": 4, - "value": "0xFE" + "offset": 11376, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4878, - "length": 4, - "value": "0xFF" + "offset": 12692, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 443, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 12709, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 500, - "length": 4, - "value": "0x01" + "offset": 15435, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 551, - "length": 4, - "value": "0x02" + "offset": 16457, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTDatabaseService.swift", "kind": "IntegerLiteral", - "offset": 653, - "length": 4, - "value": "0x05" + "offset": 1357, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 724, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTDatabaseService.swift", + "kind": "FloatLiteral", + "offset": 1569, "length": 4, - "value": "0x0B" + "value": "30.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 774, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 319, + "length": 12, + "value": "\"attributes\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 844, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 356, "length": 4, - "value": "0x0D" + "value": "\"id\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 921, - "length": 4, - "value": "0x14" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 16, + "value": "\"organizationId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 998, - "length": 4, - "value": "0x15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 7, + "value": "\"appId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1060, - "length": 4, - "value": "0x16" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 11, + "value": "\"createdAt\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1125, - "length": 4, - "value": "0x18" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 11, + "value": "\"updatedAt\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1189, - "length": 4, - "value": "0x1C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "0x1D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "Dictionary", + "offset": 646, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 4, - "value": "0x21" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1407, - "length": 4, - "value": "0x22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 10, + "value": "\"dat_file\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 10, + "value": "\"bin_file\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Data.swift", "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "0x23" + "offset": 1947, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "BooleanLiteral", + "offset": 297, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 391, + "length": 33, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 1, + "value": "\".websocketQueue\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 518, + "length": 32, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 1, + "value": "\".callbackQueue\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1667, - "length": 4, - "value": "0x24" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 4, - "value": "0x26" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1792, - "length": 4, - "value": "0x27" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 4, - "value": "0x28" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1967, - "length": 4, - "value": "0x29" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2055, - "length": 4, - "value": "0x2A" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2117, - "length": 4, - "value": "0x30" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2345, - "length": 4, - "value": "0x31" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2539, - "length": 4, - "value": "0x32" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2612, - "length": 4, - "value": "0x33" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 4, - "value": "0x34" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2757, - "length": 4, - "value": "0x40" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2829, - "length": 4, - "value": "0x46" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2890, - "length": 4, - "value": "0x49" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2966, - "length": 4, - "value": "0x4A" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3013, + "offset": 743, "length": 4, - "value": "0x50" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3080, + "offset": 770, "length": 4, - "value": "0x51" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 797, "length": 4, - "value": "0x52" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3331, + "offset": 824, "length": 4, - "value": "0x53" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3465, + "offset": 851, "length": 4, - "value": "0xE1" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3605, + "offset": 878, "length": 4, - "value": "0xE2" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3713, + "offset": 743, "length": 4, - "value": "0xE3" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3829, + "offset": 770, "length": 4, - "value": "0xE4" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 797, "length": 4, - "value": "0xE5" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4186, + "offset": 824, "length": 4, - "value": "0xE6" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 851, "length": 4, - "value": "0xE7" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4540, + "offset": 878, "length": 4, - "value": "0xF6" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4583, + "offset": 743, "length": 4, - "value": "0xF7" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4626, + "offset": 770, "length": 4, - "value": "0xFA" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4687, + "offset": 797, "length": 4, - "value": "0xFC" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4746, + "offset": 824, "length": 4, - "value": "0xFD" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4833, + "offset": 851, "length": 4, - "value": "0xFE" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4878, + "offset": 878, "length": 4, - "value": "0xFF" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 443, + "offset": 1681, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 500, + "offset": 1712, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 551, + "offset": 1743, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 653, + "offset": 1774, "length": 4, - "value": "0x05" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 724, + "offset": 1805, "length": 4, - "value": "0x0B" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 774, + "offset": 1836, "length": 4, - "value": "0x0C" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 844, + "offset": 1867, "length": 4, - "value": "0x0D" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 921, + "offset": 1898, "length": 4, - "value": "0x14" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 998, + "offset": 1929, "length": 4, - "value": "0x15" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1060, + "offset": 1960, "length": 4, - "value": "0x16" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1125, + "offset": 1991, "length": 4, - "value": "0x18" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1189, + "offset": 1681, "length": 4, - "value": "0x1C" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1234, + "offset": 1712, "length": 4, - "value": "0x1D" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1300, + "offset": 1743, "length": 4, - "value": "0x21" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1774, "length": 4, - "value": "0x22" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1515, + "offset": 1805, "length": 4, - "value": "0x23" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1667, + "offset": 1836, "length": 4, - "value": "0x24" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 1867, "length": 4, - "value": "0x26" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1792, + "offset": 1898, "length": 4, - "value": "0x27" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1863, + "offset": 1929, "length": 4, - "value": "0x28" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1967, + "offset": 1960, "length": 4, - "value": "0x29" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2055, + "offset": 1991, "length": 4, - "value": "0x2A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2117, + "offset": 1681, "length": 4, - "value": "0x30" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2345, + "offset": 1712, "length": 4, - "value": "0x31" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2539, + "offset": 1743, "length": 4, - "value": "0x32" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2612, + "offset": 1774, "length": 4, - "value": "0x33" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2674, + "offset": 1805, "length": 4, - "value": "0x34" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2757, + "offset": 1836, "length": 4, - "value": "0x40" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2829, + "offset": 1867, "length": 4, - "value": "0x46" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2890, + "offset": 1898, "length": 4, - "value": "0x49" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2966, + "offset": 1929, "length": 4, - "value": "0x4A" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3013, + "offset": 1960, "length": 4, - "value": "0x50" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3080, + "offset": 1991, "length": 4, - "value": "0x51" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 3444, "length": 4, - "value": "0x52" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3331, + "offset": 3480, "length": 4, - "value": "0x53" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3465, + "offset": 3515, "length": 4, - "value": "0xE1" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3605, + "offset": 3550, "length": 4, - "value": "0xE2" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3713, + "offset": 3585, "length": 4, - "value": "0xE3" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3829, + "offset": 3620, "length": 4, - "value": "0xE4" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 3655, "length": 4, - "value": "0xE5" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4186, + "offset": 3690, "length": 4, - "value": "0xE6" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 3725, "length": 4, - "value": "0xE7" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4540, + "offset": 3760, "length": 4, - "value": "0xF6" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4583, + "offset": 3795, "length": 4, - "value": "0xF7" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4626, + "offset": 3830, "length": 4, - "value": "0xFA" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4687, + "offset": 3865, "length": 4, - "value": "0xFC" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4746, + "offset": 3949, "length": 4, "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4833, + "offset": 4044, "length": 4, "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4878, + "offset": 3480, "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTCustomDateFormatTransform.swift", - "kind": "StringLiteral", - "offset": 1300, - "length": 27, - "value": "\"ZTCoreKit.ZTCustomDateFormatTransform\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 2352, - "length": 6, - "value": "\"\r\n\"" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "BooleanLiteral", - "offset": 3390, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3515, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "BooleanLiteral", - "offset": 3423, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3550, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3805, - "length": 10, - "value": "10000000" + "offset": 3585, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 3961, - "length": 48, - "value": "\"multipart\/form-data; boundary=\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3620, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 4008, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3655, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3690, "length": 4, - "value": "0x01" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3725, "length": 4, - "value": "0x02" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3760, "length": 4, - "value": "0x03" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 3795, "length": 4, - "value": "0x04" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1608, + "offset": 3830, "length": 4, - "value": "0x0D" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1720, + "offset": 3865, "length": 4, - "value": "0x0E" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 3949, "length": 4, - "value": "0x0F" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1907, + "offset": 4044, "length": 4, - "value": "0x10" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1997, + "offset": 3480, "length": 4, - "value": "0xEE" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3515, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3550, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3585, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 3620, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1608, + "offset": 3655, "length": 4, - "value": "0x0D" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1720, + "offset": 3690, "length": 4, - "value": "0x0E" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 3725, "length": 4, - "value": "0x0F" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1907, + "offset": 3760, "length": 4, - "value": "0x10" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1997, + "offset": 3795, "length": 4, - "value": "0xEE" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3830, "length": 4, - "value": "0x01" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3865, "length": 4, - "value": "0x02" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3949, "length": 4, - "value": "0x03" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 4044, "length": 4, - "value": "0x04" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1608, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDfuPeripheralSelector.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 23, + "value": "\"ZTCoreKit.ZTDfuPeripheralSelector\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/DFU\/LegacyDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 1720, - "length": 4, - "value": "0x0E" + "offset": 2080, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1802, - "length": 4, - "value": "0x0F" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1907, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1627, "length": 4, - "value": "0x10" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1997, - "length": 4, - "value": "0xEE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1892, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 213, - "length": 13, - "value": "\"ZTCoreKit.ZTDefaultsKey\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1961, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 426, - "length": 49, + "offset": 2003, + "length": 46, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 465, + "offset": 2042, "length": 1, - "value": "\".ZTApiKey\"" + "value": "\".Queue\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 526, - "length": 52, + "offset": 2079, + "length": 45, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 565, + "offset": 2118, "length": 1, - "value": "\".ZTApiSecret\"" + "value": "\".UUID\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 625, - "length": 48, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 2155, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 664, - "length": 1, - "value": "\".ZTAppId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 3637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 722, - "length": 50, - "value": "\"\"" + "offset": 499, + "length": 12, + "value": "\"ZTCoreKit.ZTBleManager\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 761, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1805, "length": 1, - "value": "\".ZTOrgCode\"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 821, - "length": 50, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1842, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 860, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1890, "length": 1, - "value": "\".ZTAppType\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 923, - "length": 52, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 2074, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 962, - "length": 1, - "value": "\".ZTAuthToken\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 560, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1029, - "length": 55, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1068, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 834, "length": 1, - "value": "\".ZTRefreshToken\"" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1135, - "length": 54, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "FloatLiteral", + "offset": 894, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1174, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 943, "length": 1, - "value": "\".ZTTokenExpire\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1241, - "length": 52, + "offset": 996, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1280, - "length": 1, - "value": "\".ZTAppUserId\"" + "offset": 1539, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1346, - "length": 56, - "value": "\"\"" + "offset": 1621, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1385, - "length": 1, - "value": "\".ZTChunkDuration\"" + "offset": 1659, + "length": 28, + "value": "\"CFBundleShortVersionString\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1453, - "length": 51, - "value": "\"\"" + "offset": 1703, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1492, - "length": 1, - "value": "\".ZTAuthData\"" + "offset": 1784, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1570, - "length": 63, + "offset": 1829, + "length": 54, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1609, + "offset": 1852, "length": 1, - "value": "\".lastDeviceSerialNumber\"" + "value": "\" \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1690, - "length": 55, + "offset": 1882, + "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1729, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 2065, "length": 1, - "value": "\".lastActivityId\"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1804, - "length": 57, + "offset": 2147, + "length": 210, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1843, + "offset": 2161, "length": 1, - "value": "\".lastDeviceQRCode\"" + "value": "\"\/\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1914, - "length": 51, - "value": "\"\"" + "offset": 2175, + "length": 1, + "value": "\" (\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1953, + "offset": 2193, "length": 1, - "value": "\".lastQRCode\"" + "value": "\"; \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2053, - "length": 56, - "value": "\"\"" + "offset": 2204, + "length": 1, + "value": "\"; build:\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2092, + "offset": 2223, "length": 1, - "value": "\".startAppVersion\"" + "value": "\"; model:\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2159, - "length": 49, - "value": "\"\"" + "offset": 2246, + "length": 5, + "value": "\"n\/a\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2198, + "offset": 2252, "length": 1, - "value": "\".deviceId\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 2263, - "length": 54, - "value": "\"\"" + "value": "\"; brand:Apple) SDK: \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2302, + "offset": 2299, "length": 1, - "value": "\".pairingMethod\"" + "value": "\"\/\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2370, - "length": 52, - "value": "\"\"" + "offset": 2317, + "length": 1, + "value": "\"-\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2409, + "offset": 2355, "length": 1, - "value": "\".pairingDate\"" + "value": "\";\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2479, - "length": 55, - "value": "\"\"" + "offset": 2375, + "length": 8, + "value": "\"ZTCore\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2518, - "length": 1, - "value": "\".startFwVersion\"" + "offset": 2502, + "length": 28, + "value": "\"CFBundleShortVersionString\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2588, - "length": 52, - "value": "\"\"" + "offset": 2546, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", "offset": 2627, - "length": 1, - "value": "\".startFwType\"" + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2692, - "length": 50, + "offset": 2650, + "length": 27, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2731, + "offset": 2664, "length": 1, - "value": "\".fwVersion\"" + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2791, - "length": 47, + "offset": 2676, + "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2830, - "length": 1, - "value": "\".fwType\"" + "offset": 2695, + "length": 8, + "value": "\"ZTCore\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 37318, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 39073, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 41103, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2891, - "length": 53, + "offset": 48987, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2930, - "length": 1, - "value": "\".wasDfuCopied\"" + "offset": 50337, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 3000, - "length": 59, + "offset": 50790, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 3039, - "length": 1, - "value": "\".ZTIsStorageUpdated\"" + "offset": 51222, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "StringLiteral", + "offset": 51936, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1749, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "StringLiteral", + "offset": 51960, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1784, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 64108, "length": 4, - "value": "0x02" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1819, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 64128, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "kind": "StringLiteral", + "offset": 2598, + "length": 15, + "value": "\"manifest.json\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "offset": 2654, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "offset": 2691, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 2739, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 3268, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "offset": 3313, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "offset": 3358, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 2302, + "offset": 1630, "length": 4, - "value": "0x0C" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 2337, + "offset": 1684, "length": 4, - "value": "0x60" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1749, + "offset": 1738, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "0x02" + "offset": 2296, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1819, - "length": 4, - "value": "0x03" + "offset": 2527, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "offset": 2630, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 15, + "value": "\"ZTCoreKit.DFUFirmwareSize\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 3, + "value": "\"0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 249, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 1355, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 1410, + "length": 34, + "value": "\"abcdefghjklmnpqrstuvwxyz12345789\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2302, - "length": 4, - "value": "0x0C" + "offset": 1564, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2337, - "length": 4, - "value": "0x60" + "offset": 2839, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "offset": 3376, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1749, - "length": 4, - "value": "0x01" + "offset": 3708, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "0x02" + "offset": 4040, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1819, + "offset": 7153, "length": 4, - "value": "0x03" + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2302, - "length": 4, - "value": "0x0C" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2337, - "length": 4, - "value": "0x60" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3242, - "length": 4, - "value": "0x00" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3277, - "length": 4, - "value": "0x02" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3312, - "length": 4, - "value": "0x03" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3347, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "Dictionary", + "offset": 1576, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3382, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1621, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3417, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1737, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3452, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "StringLiteral", + "offset": 1798, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3487, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1874, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3522, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 2164, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3557, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "StringLiteral", + "offset": 3812, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3627, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 3835, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3662, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2145, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3242, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3277, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 25, + "value": "\"info_read_only_metadata\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3312, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3347, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2296, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3382, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2145, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3417, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3452, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 25, + "value": "\"info_read_only_metadata\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3487, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3522, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2296, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3557, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2628, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3627, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3662, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2628, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3242, + "offset": 188, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3277, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3312, + "offset": 236, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3347, + "offset": 260, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3382, + "offset": 284, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3417, + "offset": 305, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3452, + "offset": 330, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3487, + "offset": 357, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3522, + "offset": 385, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3557, + "offset": 407, "length": 4, "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3592, + "offset": 430, "length": 4, "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3627, + "offset": 456, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3662, + "offset": 482, "length": 4, "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 4913, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 507, "length": 4, - "value": "0x02" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4913, + "offset": 536, "length": 4, - "value": "0x01" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 557, "length": 4, - "value": "0x02" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4913, + "offset": 578, "length": 4, - "value": "0x01" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 601, "length": 4, - "value": "0x02" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 626, "length": 4, - "value": "0x00" + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 188, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 236, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 260, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 284, "length": 4, - "value": "0x02" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 305, "length": 4, - "value": "0x00" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 330, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 357, "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 385, "length": 4, - "value": "0x01" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 407, "length": 4, - "value": "0x02" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 430, "length": 4, - "value": "0x03" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 456, "length": 4, - "value": "0x04" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 482, "length": 4, - "value": "0x05" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 507, "length": 4, - "value": "0x06" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 536, "length": 4, - "value": "0x07" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 557, "length": 4, - "value": "0x08" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 578, "length": 4, - "value": "0x0A" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 601, "length": 4, - "value": "0x0B" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "offset": 626, + "length": 4, + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 188, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 236, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 260, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 284, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 305, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 330, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 357, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 385, "length": 4, - "value": "0x0A" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 407, "length": 4, - "value": "0x0B" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 430, "length": 4, - "value": "0x01" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 456, "length": 4, - "value": "0x02" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 482, "length": 4, - "value": "0x03" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 507, "length": 4, - "value": "0x04" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 536, "length": 4, - "value": "0x05" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 557, "length": 4, - "value": "0x06" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 578, "length": 4, - "value": "0x07" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 601, "length": 4, - "value": "0x08" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 626, "length": 4, - "value": "0x0A" + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 186, "length": 4, - "value": "0x0B" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "StringLiteral", - "offset": 15139, - "length": 21, - "value": "\"ZTCoreKit.SecureDFUControlPoint\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 1, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 1, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 9, - "value": "\"RSSI=%@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1203, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "IntegerLiteral", - "offset": 2786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3268, - "length": 24, - "value": "\"MSG_GENERAL_STATES: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3506, - "length": 33, - "value": "\"MSG_SOFTWARE: right=%@, left=%@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3576, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3614, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 4893, - "length": 23, - "value": "\"MSG_ACTIVITY_INFO: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 40, - "value": "\"MSG_BTLOADER_INFO: right: %@; left: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5233, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5273, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5544, - "length": 15, - "value": "\"MSG_DEBUG: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 6180, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "IntegerLiteral", - "offset": 11580, - "length": 1, - "value": "0" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 14537, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 14626, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 14326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 215, - "length": 8, - "value": "\"ZTCoreKit.ZTDevice\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 2459, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 4947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 8625, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 8652, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11500, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11543, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 14728, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 14759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 26839, + "offset": 207, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" + "offset": 186, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" + "offset": 207, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 186, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 207, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6051, - "length": 1, - "value": "1" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6085, - "length": 1, - "value": "2" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6119, - "length": 1, - "value": "3" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6153, - "length": 1, - "value": "4" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "5" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "6" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", "kind": "IntegerLiteral", - "offset": 6051, + "offset": 551, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", "kind": "IntegerLiteral", - "offset": 6085, + "offset": 588, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6119, - "length": 1, - "value": "3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 245, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6153, - "length": 1, - "value": "4" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 273, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "5" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 3635, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 8995, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6051, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 9023, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6085, - "length": 1, - "value": "2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 17709, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 17737, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6119, + "offset": 1658, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6153, + "offset": 1695, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6187, + "offset": 1743, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6221, + "offset": 1927, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "BooleanLiteral", - "offset": 9193, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1040, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", "kind": "StringLiteral", - "offset": 8806, - "length": 15, - "value": "\"ZTCoreKit.DFUControlPoint\"" + "offset": 1112, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 443, "length": 4, - "value": "0x01" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 500, "length": 4, - "value": "0x02" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 551, "length": 4, - "value": "0x03" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 653, "length": 4, - "value": "0x04" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 724, "length": 4, - "value": "0x0D" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 774, "length": 4, - "value": "0x0E" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 844, "length": 4, - "value": "0x0F" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 921, "length": 4, - "value": "0x10" + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 998, "length": 4, - "value": "0xEE" + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 1060, "length": 4, - "value": "0x01" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 1125, "length": 4, - "value": "0x02" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 1189, "length": 4, - "value": "0x03" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 1234, "length": 4, - "value": "0x04" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 1300, "length": 4, - "value": "0x0D" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 1407, "length": 4, - "value": "0x0E" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 1515, "length": 4, - "value": "0x0F" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 1667, "length": 4, - "value": "0x10" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 1744, "length": 4, - "value": "0xEE" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 1792, "length": 4, - "value": "0x01" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 1863, "length": 4, - "value": "0x02" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 1967, "length": 4, - "value": "0x03" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 2055, "length": 4, - "value": "0x04" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 2117, "length": 4, - "value": "0x0D" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 2345, "length": 4, - "value": "0x0E" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 2539, "length": 4, - "value": "0x0F" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 2612, "length": 4, - "value": "0x10" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 2674, "length": 4, - "value": "0xEE" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", - "kind": "StringLiteral", - "offset": 2588, - "length": 15, - "value": "\"manifest.json\"" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2640, - "length": 1, - "value": "1" + "offset": 2757, + "length": 4, + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2677, - "length": 1, - "value": "1" + "offset": 2829, + "length": 4, + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2725, - "length": 1, - "value": "0" + "offset": 2890, + "length": 4, + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3240, - "length": 1, - "value": "0" + "offset": 2966, + "length": 4, + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3283, - "length": 1, - "value": "0" + "offset": 3013, + "length": 4, + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3327, - "length": 1, - "value": "0" + "offset": 3080, + "length": 4, + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 551, - "length": 1, - "value": "0" + "offset": 3198, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 588, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", - "kind": "StringLiteral", - "offset": 1040, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", - "kind": "StringLiteral", - "offset": 1112, - "length": 2, - "value": "\"\"" + "offset": 3331, + "length": 4, + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 10, - "value": "\"ZTSports\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 255, - "length": 8, - "value": "\"ZTWarm\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3605, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 11, - "value": "\"ZTRunning\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3713, + "length": 4, + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 315, - "length": 13, - "value": "\"ZTPodoSmart\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3829, + "length": 4, + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 344, - "length": 9, - "value": "\"DfuTarg\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4003, + "length": 4, + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 7, - "value": "\"ZTDFU\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4186, + "length": 4, + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 399, - "length": 5, - "value": "\"ZTB\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4488, + "length": 4, + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 10, - "value": "\"ZTSports\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4540, + "length": 4, + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 255, - "length": 8, - "value": "\"ZTWarm\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4583, + "length": 4, + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 11, - "value": "\"ZTRunning\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4626, + "length": 4, + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 315, - "length": 13, - "value": "\"ZTPodoSmart\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4687, + "length": 4, + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 344, - "length": 9, - "value": "\"DfuTarg\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4746, + "length": 4, + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 7, - "value": "\"ZTDFU\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4833, + "length": 4, + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 399, - "length": 5, - "value": "\"ZTB\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4878, + "length": 4, + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 443, "length": 4, - "value": "1" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 500, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 551, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 653, "length": 4, - "value": "1" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 724, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 774, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 844, "length": 4, - "value": "1" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 921, + "length": 4, + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 998, + "length": 4, + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 1060, "length": 4, - "value": "0x00" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 1125, "length": 4, - "value": "0x01" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 1189, "length": 4, - "value": "0x02" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 1234, "length": 4, - "value": "0x03" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 1300, "length": 4, - "value": "0x04" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 1407, "length": 4, - "value": "0x05" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 1515, "length": 4, - "value": "0x00" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 1667, "length": 4, - "value": "0x01" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 1744, "length": 4, - "value": "0x02" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 1792, "length": 4, - "value": "0x03" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 1863, "length": 4, - "value": "0x04" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 1967, "length": 4, - "value": "0x05" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 2055, "length": 4, - "value": "0x00" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 2117, "length": 4, - "value": "0x01" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 2345, "length": 4, - "value": "0x02" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 2539, "length": 4, - "value": "0x03" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 2612, "length": 4, - "value": "0x04" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 2674, "length": 4, - "value": "0x05" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 2757, "length": 4, - "value": "0x00" + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 2829, "length": 4, - "value": "0x01" + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 2890, "length": 4, - "value": "0x02" + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 2966, "length": 4, - "value": "0x03" + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 3013, "length": 4, - "value": "0x04" + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 3080, "length": 4, - "value": "0x05" + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 3198, "length": 4, - "value": "0x06" + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 3331, "length": 4, - "value": "0x07" + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 3465, "length": 4, - "value": "0x08" + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 3605, "length": 4, - "value": "0x09" + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 3713, "length": 4, - "value": "0x10" + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 3829, "length": 4, - "value": "0x00" + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 4003, "length": 4, - "value": "0x01" + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 4186, "length": 4, - "value": "0x02" + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 4488, "length": 4, - "value": "0x03" + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 4540, "length": 4, - "value": "0x04" + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 4583, "length": 4, - "value": "0x05" + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 4626, "length": 4, - "value": "0x06" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 4687, "length": 4, - "value": "0x07" + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4746, "length": 4, - "value": "0x08" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 4833, "length": 4, - "value": "0x09" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 4878, "length": 4, - "value": "0x10" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 443, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 500, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 551, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 653, "length": 4, - "value": "0x03" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 724, "length": 4, - "value": "0x04" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 774, "length": 4, - "value": "0x05" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 844, "length": 4, - "value": "0x06" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 921, "length": 4, - "value": "0x07" + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 998, "length": 4, - "value": "0x08" + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 1060, "length": 4, - "value": "0x09" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 1125, "length": 4, - "value": "0x10" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3700, + "offset": 1189, "length": 4, - "value": "0xFA" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 1234, "length": 4, - "value": "0x00" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 1300, "length": 4, - "value": "0x01" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 1407, "length": 4, - "value": "0x02" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 1515, "length": 4, - "value": "0x03" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 1667, "length": 4, - "value": "0x04" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 1744, "length": 4, - "value": "0x05" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 1792, "length": 4, - "value": "0x06" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 1863, "length": 4, - "value": "0x07" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 1967, "length": 4, - "value": "0x0A" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 2055, "length": 4, - "value": "0x64" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4130, + "offset": 2117, "length": 4, - "value": "0x65" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 2345, "length": 4, - "value": "0x66" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4261, + "offset": 2539, "length": 4, - "value": "0xFD" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4364, + "offset": 2612, "length": 4, - "value": "0xFE" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 2674, "length": 4, - "value": "0x00" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 2757, "length": 4, - "value": "0x01" + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 2829, "length": 4, - "value": "0x02" + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 2890, "length": 4, - "value": "0x03" + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 2966, "length": 4, - "value": "0x04" + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 3013, "length": 4, - "value": "0x05" + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 3080, "length": 4, - "value": "0x06" + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 3198, "length": 4, - "value": "0x07" + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 3331, "length": 4, - "value": "0x0A" + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 3465, "length": 4, - "value": "0x64" + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4130, + "offset": 3605, "length": 4, - "value": "0x65" + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 3713, "length": 4, - "value": "0x66" + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4261, + "offset": 3829, "length": 4, - "value": "0xFD" + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4364, + "offset": 4003, "length": 4, - "value": "0xFE" + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 4186, "length": 4, - "value": "0x00" + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 4488, "length": 4, - "value": "0x01" + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 4540, "length": 4, - "value": "0x02" + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 4583, "length": 4, - "value": "0x03" + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 4626, "length": 4, - "value": "0x04" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 4687, "length": 4, - "value": "0x05" + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 4746, "length": 4, - "value": "0x06" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 4833, "length": 4, - "value": "0x07" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 4878, "length": 4, - "value": "0x0A" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 4, - "value": "0x64" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2124, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 4, - "value": "0x65" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4169, - "length": 4, - "value": "0x66" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2943, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4261, - "length": 4, - "value": "0xFD" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 3593, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 3976, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", "offset": 4364, - "length": 4, - "value": "0xFE" + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Serialization.swift", - "kind": "BooleanLiteral", - "offset": 1442, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 4753, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", - "kind": "BooleanLiteral", - "offset": 258, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 5165, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 352, - "length": 33, - "value": "\"\"" + "offset": 5791, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 369, - "length": 1, - "value": "\".websocketQueue\"" + "offset": 6421, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 479, - "length": 32, - "value": "\"\"" + "offset": 7103, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 496, - "length": 1, - "value": "\".callbackQueue\"" + "offset": 7791, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 797, - "length": 2, - "value": "\"\"" + "offset": 8733, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 9446, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 10207, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 11144, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 11890, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 901, + "offset": 12631, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTMediaUploader.swift", + "kind": "Array", + "offset": 317, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 410, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 570, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 1352, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 6966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2033, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "IntegerLiteral", - "offset": 2069, - "length": 1, - "value": "0" + "offset": 5949, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "BooleanLiteral", - "offset": 2111, + "offset": 9420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "BooleanLiteral", - "offset": 2154, + "offset": 10843, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2308, - "length": 1, - "value": "3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "FloatLiteral", + "offset": 11084, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1107, - "length": 9, - "value": "\"Network\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "FloatLiteral", + "offset": 12388, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1164, - "length": 9, - "value": "\"Modules\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 13604, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1213, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 16027, "length": 5, - "value": "\"SDK\"" + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 16478, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "StringLiteral", - "offset": 1107, - "length": 9, - "value": "\"Network\"" + "offset": 2408, + "length": 19, + "value": "\"ZTCoreKit.DFUServiceInitiator\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", + "kind": "FloatLiteral", + "offset": 374, + "length": 6, + "value": "1000.0" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", + "kind": "FloatLiteral", + "offset": 543, + "length": 6, + "value": "1000.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", "kind": "StringLiteral", - "offset": 1164, - "length": 9, - "value": "\"Modules\"" + "offset": 228, + "length": 10, + "value": "\"ZTSports\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", "kind": "StringLiteral", - "offset": 1213, - "length": 5, - "value": "\"SDK\"" + "offset": 255, + "length": 8, + "value": "\"ZTWarm\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 11, + "value": "\"ZTRunning\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 13, + "value": "\"ZTPodoSmart\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 9, + "value": "\"DfuTarg\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 7, + "value": "\"ZTDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 5, + "value": "\"ZTB\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 228, + "length": 10, + "value": "\"ZTSports\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 255, + "length": 8, + "value": "\"ZTWarm\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 11, + "value": "\"ZTRunning\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 13, + "value": "\"ZTPodoSmart\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 9, + "value": "\"DfuTarg\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 7, + "value": "\"ZTDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 5, + "value": "\"ZTB\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTURLTransform.swift", + "kind": "BooleanLiteral", + "offset": 1794, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1247, + "length": 9, + "value": "\"RSSI=%@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1258, + "length": 9, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1266, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "offset": 2841, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 3323, + "length": 24, + "value": "\"MSG_GENERAL_STATES: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 7161, - "length": 24, - "value": "\"ZTCore.log.notifcation\"" + "offset": 3561, + "length": 33, + "value": "\"MSG_SOFTWARE: right=%@, left=%@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 7259, - "length": 29, - "value": "\"ZTCore.log.notification.ble\"" + "offset": 3631, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNetworkReachabilityManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 3999, - "length": 33, - "value": "\"org.alamofire.reachabilityQueue\"" + "offset": 3669, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 4948, + "length": 23, + "value": "\"MSG_ACTIVITY_INFO: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5209, + "length": 40, + "value": "\"MSG_BTLOADER_INFO: right: %@; left: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 357, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5288, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5328, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5599, + "length": 15, + "value": "\"MSG_DEBUG: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 6235, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "offset": 11635, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "offset": 14590, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 357, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 14679, "length": 4, - "value": "0x03" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 14379, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 251, + "length": 8, + "value": "\"ZTCoreKit.ZTDevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "offset": 1891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "offset": 1973, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "offset": 2038, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 357, - "length": 4, - "value": "0x03" + "offset": 2169, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "offset": 2223, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "offset": 2296, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "offset": 1891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1090, - "length": 4, - "value": "0x00" + "offset": 1973, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1133, - "length": 4, - "value": "0x01" + "offset": 2038, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1176, - "length": 4, - "value": "0x02" + "offset": 2169, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1219, - "length": 4, - "value": "0x03" + "offset": 2223, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1262, - "length": 4, - "value": "0x04" + "offset": 2296, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 4807, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1348, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "StringLiteral", + "offset": 2523, + "length": 17, + "value": "\"ZTCoreKit.BaseDFUPeripheral\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22455, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1434, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22675, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1477, - "length": 4, - "value": "0x10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22946, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1520, - "length": 4, - "value": "0x11" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 23227, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 285, "length": 4, - "value": "0x0C" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 316, "length": 4, - "value": "0x0F" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 285, "length": 4, - "value": "0x26" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 316, "length": 4, - "value": "0x27" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 285, "length": 4, - "value": "0x28" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 316, "length": 4, - "value": "0xFF" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1090, + "offset": 418, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1133, + "offset": 453, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1176, + "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1219, + "offset": 523, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1262, + "offset": 558, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1305, + "offset": 593, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1348, + "offset": 628, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1434, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1477, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1520, + "offset": 418, "length": 4, - "value": "0x11" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 453, "length": 4, - "value": "0x0C" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 488, "length": 4, - "value": "0x0F" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 523, "length": 4, - "value": "0x26" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 558, "length": 4, - "value": "0x27" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 593, "length": 4, - "value": "0x28" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 628, "length": 4, - "value": "0xFF" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1090, + "offset": 418, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1133, + "offset": 453, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1176, + "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1219, + "offset": 523, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1262, + "offset": 558, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1305, + "offset": 593, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1348, + "offset": 628, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1434, + "offset": 733, "length": 4, - "value": "0x09" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1477, + "offset": 764, "length": 4, - "value": "0x10" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1520, + "offset": 795, "length": 4, - "value": "0x11" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 826, "length": 4, - "value": "0x0C" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 733, "length": 4, - "value": "0x0F" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 764, "length": 4, - "value": "0x26" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 795, "length": 4, - "value": "0x27" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 826, "length": 4, - "value": "0x28" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 733, "length": 4, - "value": "0xFF" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3372, + "offset": 764, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3415, + "offset": 795, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3458, + "offset": 826, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 1585, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3544, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 1769, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 11873, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3630, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 12156, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3673, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 14664, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3716, - "length": 4, - "value": "0x09" + "offset": 2062, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3372, - "length": 4, - "value": "0x01" + "offset": 2112, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3415, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "kind": "BooleanLiteral", + "offset": 2160, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3458, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "kind": "BooleanLiteral", + "offset": 2207, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "offset": 2366, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3544, + "offset": 249, "length": 4, - "value": "0x05" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3587, + "offset": 280, "length": 4, - "value": "0x06" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3630, + "offset": 249, "length": 4, - "value": "0x07" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3673, + "offset": 280, "length": 4, - "value": "0x08" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3716, + "offset": 249, "length": 4, - "value": "0x09" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3372, + "offset": 280, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3415, - "length": 4, - "value": "0x02" + "offset": 1861, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3458, - "length": 4, - "value": "0x03" + "offset": 2052, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "offset": 2109, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3544, - "length": 4, - "value": "0x05" + "offset": 2199, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTAuthManager.swift", + "kind": "BooleanLiteral", + "offset": 2100, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3630, + "offset": 186, "length": 4, - "value": "0x07" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3673, + "offset": 217, "length": 4, - "value": "0x08" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3716, + "offset": 248, "length": 4, - "value": "0x09" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 279, "length": 4, - "value": "0x00" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 186, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 217, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 248, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 279, "length": 4, - "value": "0x01" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 186, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4329, + "offset": 217, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4367, + "offset": 248, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4329, + "offset": 279, "length": 4, - "value": "0x03" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4367, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1079, + "length": 9, + "value": "\"Network\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4329, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 9, + "value": "\"Modules\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4367, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1079, + "length": 9, + "value": "\"Network\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 9, + "value": "\"Modules\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFoundationHTTPServerHandler.swift", - "kind": "StringLiteral", - "offset": 1085, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 453, - "length": 38, - "value": "\"99DDCDAB-A80C-4F94-BE5D-C66B9FBA40CF\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 2506, - "length": 38, - "value": "\"99DDCDA8-A80C-4F94-BE5D-C66B9FBA40CF\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 3659, - "length": 6, - "value": "\"180A\"" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 4672, - "length": 6, - "value": "\"FE59\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageTime.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 295, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 326, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 357, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 388, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 419, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 450, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 330, + "offset": 295, "length": 4, - "value": "0x07" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 326, "length": 4, - "value": "0x08" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 357, "length": 4, - "value": "0x09" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 388, "length": 4, - "value": "0x0A" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 419, "length": 4, - "value": "0x0B" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 450, "length": 4, - "value": "0x0C" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 482, + "offset": 295, "length": 4, - "value": "0x0D" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 326, "length": 4, - "value": "0x0E" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 357, "length": 4, - "value": "0x0F" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 388, "length": 4, - "value": "0x10" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 419, "length": 4, - "value": "0x11" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 450, "length": 4, - "value": "0x12" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 1219, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 1262, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 1305, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 1348, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 330, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 1391, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 1434, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 1477, "length": 4, - "value": "0x0A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 1520, "length": 4, - "value": "0x0B" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 1563, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 1606, "length": 4, - "value": "0x0E" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 1649, "length": 4, - "value": "0x0F" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 1692, "length": 4, - "value": "0x10" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 1735, "length": 4, - "value": "0x11" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 1778, "length": 4, - "value": "0x12" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 1219, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 1262, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 1305, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 1348, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 330, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 1391, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 1434, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 1477, "length": 4, - "value": "0x0A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 1520, "length": 4, - "value": "0x0B" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 1563, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 1606, "length": 4, - "value": "0x0E" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 1649, "length": 4, - "value": "0x0F" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 1692, "length": 4, - "value": "0x10" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 1735, "length": 4, - "value": "0x11" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 1778, "length": 4, - "value": "0x12" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1628, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1680, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 1219, "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "IntegerLiteral", - "offset": 2287, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "IntegerLiteral", - "offset": 2515, - "length": 1, - "value": "0" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "StringLiteral", - "offset": 2057, - "length": 15, - "value": "\"ZTCoreKit.DFUFirmwareSize\"" + "offset": 1262, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" + "offset": 1305, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1348, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1391, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 1434, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 1477, "length": 4, "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", - "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1520, + "length": 4, + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1563, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 1606, + "length": 4, + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 1649, "length": 4, - "value": "0x10" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" + "offset": 1692, + "length": 4, + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1735, + "length": 4, + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1778, + "length": 4, + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 3372, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 3415, "length": 4, - "value": "0x10" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3458, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3501, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3544, "length": 4, - "value": "0x02" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3587, "length": 4, - "value": "0x00" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3630, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3673, "length": 4, - "value": "0x02" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3716, "length": 4, - "value": "0x00" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3372, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3415, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7386, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3458, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7425, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3501, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7472, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 245, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3587, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 273, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3630, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 3635, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3673, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 8995, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3716, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 9023, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3372, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 17709, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3415, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 17737, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3458, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Data.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1959, - "length": 1, - "value": "0" + "offset": 3501, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTFoundationSecurity.swift", - "kind": "BooleanLiteral", - "offset": 1069, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTFoundationSecurity.swift", - "kind": "BooleanLiteral", - "offset": 1109, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3587, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2124, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3630, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2395, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3673, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3716, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 3593, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 3976, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 4364, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 4753, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 5165, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 5791, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 6421, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 7103, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 7791, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 8733, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 9446, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 10207, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 11144, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 11890, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 12631, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 4900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4930, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1912, + "offset": 4955, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 4984, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2071, + "offset": 5012, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2158, + "offset": 5042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2244, + "offset": 5072, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2320, + "offset": 5102, "length": 1, "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "IntegerLiteral", - "offset": 2403, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2608, - "length": 2, - "value": "10" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 4900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4930, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1912, + "offset": 4955, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 4984, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2071, + "offset": 5012, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2158, + "offset": 5042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2244, + "offset": 5072, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2320, + "offset": 5102, "length": 1, "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2403, - "length": 1, - "value": "8" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2507, + "offset": 4900, "length": 1, - "value": "9" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2608, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "StringLiteral", - "offset": 2654, - "length": 7, - "value": "\"ZTCoreKit.DFUUuid\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 319, - "length": 12, - "value": "\"attributes\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 356, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 16, - "value": "\"organizationId\"" + "offset": 4930, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 441, - "length": 7, - "value": "\"appId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4955, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 480, - "length": 11, - "value": "\"createdAt\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4984, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 523, - "length": 11, - "value": "\"updatedAt\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5012, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 563, - "length": 8, - "value": "\"userId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5042, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "Dictionary", - "offset": 646, - "length": 3, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5072, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 2542, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5102, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 11571, - "length": 1, - "value": "0" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "BooleanLiteral", - "offset": 13384, + "offset": 2832, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "BooleanLiteral", - "offset": 13448, + "offset": 2864, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 618, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 1703, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 8911, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Starscream\/ZTWebSocket.swift", - "kind": "BooleanLiteral", - "offset": 3279, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "StringLiteral", - "offset": 284, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "StringLiteral", - "offset": 393, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", + "kind": "IntegerLiteral", + "offset": 3416, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "StringLiteral", - "offset": 501, - "length": 5, - "value": "\"N\/A\"" + "offset": 1605, + "length": 16, + "value": "\"ZTCoreKit.LegacyDFUService\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "Array", - "offset": 1122, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1712, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1409, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1499, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1599, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1702, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4877, + "offset": 1952, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4898, + "offset": 2026, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5802, + "offset": 2074, "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 9214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 10613, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "FloatLiteral", - "offset": 10840, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "FloatLiteral", - "offset": 12109, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 13291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 15653, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 16089, - "length": 5, - "value": "false" + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "StringLiteral", - "offset": 2405, - "length": 19, - "value": "\"ZTCoreKit.DFUServiceInitiator\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 397, + "offset": 1664, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 462, + "offset": 1712, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1422, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didResume\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1655, - "length": 52, - "value": "\"org.alamofire.notification.name.request.didSuspend\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1888, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didCancel\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2119, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didFinish\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 55, - "value": "\"org.alamofire.notification.name.request.didResumeTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1952, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2659, - "length": 56, - "value": "\"org.alamofire.notification.name.request.didSuspendTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2932, - "length": 55, - "value": "\"org.alamofire.notification.name.request.didCancelTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2074, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 3206, - "length": 57, - "value": "\"org.alamofire.notification.name.request.didCompleteTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 40, - "value": "\"org.alamofire.notification.key.request\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 1712, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, - "length": 2, - "value": "20" + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, - "length": 2, - "value": "90" + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 1952, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 2026, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, + "offset": 2074, "length": 2, - "value": "20" + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, + "offset": 2123, "length": 2, - "value": "90" + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 3204, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, - "length": 2, - "value": "20" + "offset": 3204, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, - "length": 2, - "value": "90" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 3204, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2842, + "offset": 6105, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2943, + "offset": 6139, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3039, + "offset": 6173, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3130, + "offset": 6207, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3212, + "offset": 6241, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3310, + "offset": 6275, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 3488, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3681, - "length": 2, - "value": "13" + "offset": 6105, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3819, - "length": 2, - "value": "14" + "offset": 6139, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 2, - "value": "15" + "offset": 6173, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4011, - "length": 2, - "value": "16" + "offset": 6207, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4113, - "length": 2, - "value": "17" + "offset": 6241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4220, - "length": 2, - "value": "18" + "offset": 6275, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4329, - "length": 2, - "value": "20" + "offset": 6105, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4600, - "length": 2, - "value": "21" + "offset": 6139, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4960, - "length": 2, - "value": "22" + "offset": 6173, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5108, - "length": 2, - "value": "23" + "offset": 6207, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5438, - "length": 2, - "value": "24" + "offset": 6241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5782, - "length": 2, - "value": "25" + "offset": 6275, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6040, - "length": 2, - "value": "26" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "BooleanLiteral", + "offset": 9374, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6315, - "length": 2, - "value": "27" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "StringLiteral", + "offset": 8985, + "length": 15, + "value": "\"ZTCoreKit.DFUControlPoint\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6585, - "length": 2, - "value": "28" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6751, - "length": 2, - "value": "29" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "30" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7031, - "length": 2, - "value": "31" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7190, - "length": 2, - "value": "32" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7337, - "length": 2, - "value": "33" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 339, "length": 4, - "value": "9001" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7719, + "offset": 366, "length": 4, - "value": "9002" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7843, + "offset": 393, "length": 4, - "value": "9004" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8073, - "length": 2, - "value": "91" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8182, - "length": 2, - "value": "92" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8296, - "length": 2, - "value": "94" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8476, - "length": 2, - "value": "95" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8576, - "length": 2, - "value": "96" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8712, - "length": 2, - "value": "97" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8821, - "length": 3, - "value": "101" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8919, - "length": 3, - "value": "102" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9210, - "length": 3, - "value": "103" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9602, - "length": 3, - "value": "104" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9723, - "length": 3, - "value": "201" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9825, - "length": 3, - "value": "202" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9916, - "length": 3, - "value": "203" + "offset": 339, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10006, - "length": 3, - "value": "301" + "offset": 366, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10163, - "length": 3, - "value": "302" + "offset": 393, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10270, - "length": 3, - "value": "303" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10375, - "length": 3, - "value": "304" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10472, - "length": 3, - "value": "305" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10580, - "length": 3, - "value": "306" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10676, - "length": 3, - "value": "307" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10848, - "length": 3, - "value": "308" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 11006, - "length": 3, - "value": "309" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 11188, - "length": 3, - "value": "500" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 2842, - "length": 1, - "value": "1" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 2943, - "length": 1, - "value": "2" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3039, - "length": 1, - "value": "3" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3130, - "length": 1, - "value": "4" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3212, - "length": 1, - "value": "5" + "offset": 339, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3310, - "length": 1, - "value": "6" + "offset": 366, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3488, - "length": 2, - "value": "11" + "offset": 393, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3593, - "length": 2, - "value": "12" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3681, - "length": 2, - "value": "13" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3819, - "length": 2, - "value": "14" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 2, - "value": "15" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 4011, - "length": 2, - "value": "16" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 4113, - "length": 2, - "value": "17" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4220, - "length": 2, - "value": "18" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "BooleanLiteral", + "offset": 2973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4329, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "BooleanLiteral", + "offset": 3005, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", "kind": "IntegerLiteral", - "offset": 4600, - "length": 2, - "value": "21" + "offset": 11176, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4960, - "length": 2, - "value": "22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "StringLiteral", + "offset": 1605, + "length": 16, + "value": "\"ZTCoreKit.SecureDFUService\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", "kind": "IntegerLiteral", - "offset": 5108, - "length": 2, - "value": "23" + "offset": 448, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 5438, - "length": 2, - "value": "24" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 2614, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 5782, - "length": 2, - "value": "25" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 3753, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6040, - "length": 2, - "value": "26" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 4348, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6315, - "length": 2, - "value": "27" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 5101, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6585, - "length": 2, - "value": "28" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 5469, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", "kind": "IntegerLiteral", - "offset": 6751, - "length": 2, - "value": "29" + "offset": 5691, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "30" + "offset": 1656, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7031, - "length": 2, - "value": "31" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7190, - "length": 2, - "value": "32" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7337, - "length": 2, - "value": "33" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 1837, "length": 4, - "value": "9001" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7719, + "offset": 1911, "length": 4, - "value": "9002" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7843, + "offset": 1948, "length": 4, - "value": "9004" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8073, - "length": 2, - "value": "91" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8182, - "length": 2, - "value": "92" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8296, - "length": 2, - "value": "94" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8476, - "length": 2, - "value": "95" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8576, - "length": 2, - "value": "96" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8712, - "length": 2, - "value": "97" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8821, + "offset": 1656, "length": 3, - "value": "101" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8919, - "length": 3, - "value": "102" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9210, - "length": 3, - "value": "103" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9602, - "length": 3, - "value": "104" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9723, - "length": 3, - "value": "201" + "offset": 1837, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9825, - "length": 3, - "value": "202" + "offset": 1911, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9916, - "length": 3, - "value": "203" + "offset": 1948, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10006, - "length": 3, - "value": "301" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10163, - "length": 3, - "value": "302" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10270, - "length": 3, - "value": "303" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10375, - "length": 3, - "value": "304" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10472, - "length": 3, - "value": "305" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10580, - "length": 3, - "value": "306" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10676, + "offset": 1656, "length": 3, - "value": "307" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10848, - "length": 3, - "value": "308" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11006, - "length": 3, - "value": "309" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11188, - "length": 3, - "value": "500" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11874, - "length": 8, - "value": "1" + "offset": 1837, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11949, - "length": 15, - "value": "2" + "offset": 1911, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12021, - "length": 9, - "value": "3" + "offset": 1948, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12129, - "length": 10, - "value": "4" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12216, - "length": 13, - "value": "5" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12290, - "length": 9, - "value": "6" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12344, - "length": 7, - "value": "7" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11874, - "length": 8, - "value": "1" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11949, - "length": 15, - "value": "2" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12021, - "length": 9, - "value": "3" + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12129, - "length": 10, - "value": "4" + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12216, - "length": 13, - "value": "5" + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12290, - "length": 9, - "value": "6" + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12344, - "length": 7, - "value": "7" + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1611, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1637, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1678, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1705, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "FloatLiteral", - "offset": 11636, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, "length": 4, - "value": "30.0" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11665, - "length": 1, - "value": "5" + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "BooleanLiteral", - "offset": 12125, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12175, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12261, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12317, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "StringLiteral", - "offset": 12607, - "length": 40, - "value": "\"org.alamofire.authentication.inspector\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 55, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 1, - "value": "\".ZTSegmentsData\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 398, - "length": 1, - "value": "0" + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1054, - "length": 1, - "value": "0" + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1116, - "length": 1, - "value": "0" + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1353, - "length": 1, - "value": "0" + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 9, - "value": "\"STARTED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 345, - "length": 10, - "value": "\"COMPLETE\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 447, - "length": 12, - "value": "\"PROCESSING\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 503, - "length": 9, - "value": "\"ERRORED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 9, - "value": "\"STARTED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 345, - "length": 10, - "value": "\"COMPLETE\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 447, - "length": 12, - "value": "\"PROCESSING\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 503, - "length": 9, - "value": "\"ERRORED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 632, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 5, - "value": "\"N\/A\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 723, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 17, - "value": "\"ZTCoreKit.BaseDFUPeripheral\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22025, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22235, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22501, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22780, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 973, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1627, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1892, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1961, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 46, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2042, - "length": 1, - "value": "\".Queue\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2079, - "length": 45, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5497, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2118, - "length": 1, - "value": "\".UUID\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 2155, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 3637, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5497, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 499, - "length": 12, - "value": "\"ZTCoreKit.ZTBleManager\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, + "offset": 5469, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 5497, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 5525, "length": 4, - "value": "0x03" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, - "length": 4, - "value": "0x04" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9813, "length": 4, - "value": "0x05" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 9851, "length": 4, - "value": "0x06" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 9889, "length": 4, - "value": "0x07" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 9927, "length": 4, - "value": "0x08" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 976, + "offset": 9965, "length": 4, - "value": "0x09" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10003, "length": 4, - "value": "0x0A" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1134, + "offset": 10041, "length": 4, - "value": "0x0B" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 10079, "length": 4, - "value": "0x0C" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1285, + "offset": 10117, "length": 4, - "value": "0x0D" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 10155, "length": 4, - "value": "0x0E" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, - "length": 4, - "value": "0x00" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 9813, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 9851, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 9889, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, + "offset": 9927, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9965, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 10003, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 10041, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 10079, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 976, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10117, "length": 4, "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1134, + "offset": 10155, "length": 4, "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1210, - "length": 4, - "value": "0x0C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1285, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1354, - "length": 4, - "value": "0x0E" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, + "offset": 9813, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 9851, "length": 4, - "value": "0x01" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 9889, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, + "offset": 9927, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9965, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 10003, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 10041, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 10079, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 976, + "offset": 10117, "length": 4, - "value": "0x09" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10155, "length": 4, - "value": "0x0A" + "value": "0x0B" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "StringLiteral", + "offset": 16773, + "length": 21, + "value": "\"ZTCoreKit.SecureDFUControlPoint\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1134, - "length": 4, - "value": "0x0B" + "offset": 295, + "length": 3, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 337, "length": 4, - "value": "0x0C" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1285, + "offset": 295, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "kind": "IntegerLiteral", + "offset": 337, "length": 4, - "value": "0x0D" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 295, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "kind": "IntegerLiteral", + "offset": 337, "length": 4, - "value": "0x0E" + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUVersion.swift", + "kind": "StringLiteral", + "offset": 1684, + "length": 10, + "value": "\"ZTCoreKit.DFUVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", "kind": "Array", - "offset": 417, + "offset": 453, "length": 25, "value": "[401, 429, 502, 503, 504]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", "kind": "BooleanLiteral", - "offset": 473, + "offset": 509, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", - "kind": "StringLiteral", - "offset": 185, - "length": 20, - "value": "\"arrayParametersKey\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "BooleanLiteral", + "offset": 279, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", - "kind": "Array", - "offset": 799, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "IntegerLiteral", + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 201, - "length": 4, - "value": "0x01" + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 201, - "length": 4, - "value": "0x01" + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", - "kind": "IntegerLiteral", - "offset": 201, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2412, "length": 4, - "value": "0x01" + "value": "\"4C\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2434, + "length": 4, + "value": "\"52\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 337, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2412, "length": 4, - "value": "2" + "value": "\"4C\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2434, + "length": 4, + "value": "\"52\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 337, - "length": 4, - "value": "2" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 337, - "length": 4, - "value": "2" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, - "value": "1" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, - "value": "2" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, - "value": "3" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, - "value": "4" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, - "value": "5" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, - "value": "6" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, - "value": "1" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, - "value": "2" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, - "value": "3" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, - "value": "4" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, - "value": "5" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, - "value": "6" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, + "offset": 2859, + "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, + "offset": 2960, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, + "offset": 3056, + "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, + "offset": 3147, + "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, + "offset": 3229, + "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, + "offset": 3327, + "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 333, - "length": 11, - "value": "\"updatable\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3513, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 370, - "length": 5, - "value": "\"sid\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3618, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 401, - "length": 5, - "value": "\"url\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3706, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 433, - "length": 6, - "value": "\"type\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3844, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 6, - "value": "\"arch\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3936, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 502, - "length": 9, - "value": "\"version\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4036, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "BooleanLiteral", - "offset": 569, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4138, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2504, - "length": 13, - "value": "\"application\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4245, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2554, - "length": 23, - "value": "\"softdevice_bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4354, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2604, - "length": 12, - "value": "\"softdevice\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4633, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2643, - "length": 12, - "value": "\"bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5001, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2504, - "length": 13, - "value": "\"application\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5149, + "length": 2, + "value": "23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2554, - "length": 23, - "value": "\"softdevice_bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2604, - "length": 12, - "value": "\"softdevice\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5829, + "length": 2, + "value": "25" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2643, - "length": 12, - "value": "\"bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6091, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "Dictionary", - "offset": 1576, - "length": 3, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6370, + "length": 2, + "value": "27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1621, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6640, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1737, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6806, + "length": 2, + "value": "29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "StringLiteral", - "offset": 1798, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6934, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1874, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7086, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 2164, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7245, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 2232, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7392, + "length": 2, + "value": "33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "StringLiteral", - "offset": 3812, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7663, + "length": 4, + "value": "9001" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 3835, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7782, + "length": 4, + "value": "9002" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 7906, + "length": 4, + "value": "9004" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8144, + "length": 2, + "value": "91" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 8253, + "length": 2, + "value": "92" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8367, + "length": 2, + "value": "94" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 8547, + "length": 2, + "value": "95" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8647, + "length": 2, + "value": "96" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 8783, + "length": 2, + "value": "97" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 8896, + "length": 3, + "value": "101" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 8994, + "length": 3, + "value": "102" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 9295, + "length": 3, + "value": "103" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 9705, + "length": 3, + "value": "104" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 9830, + "length": 3, + "value": "201" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 9932, + "length": 3, + "value": "202" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 10023, + "length": 3, + "value": "203" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 10113, + "length": 3, + "value": "301" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 10270, + "length": 3, + "value": "302" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 10377, + "length": 3, + "value": "303" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 10482, + "length": 3, + "value": "304" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1607, - "length": 2, - "value": "30" + "offset": 10579, + "length": 3, + "value": "305" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1916, - "length": 2, - "value": "16" + "offset": 10687, + "length": 3, + "value": "306" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 2622, - "length": 2, - "value": "46" + "offset": 10783, + "length": 3, + "value": "307" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTMediaFileTemplate.swift", - "kind": "StringLiteral", - "offset": 310, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 10982, + "length": 3, + "value": "308" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "StringLiteral", - "offset": 1367, - "length": 26, - "value": "\"Sec-WebSocket-Extensions\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 11168, + "length": 3, + "value": "309" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 11366, + "length": 3, + "value": "500" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 1524, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 2859, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 3451, + "offset": 2960, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 3461, - "length": 6, - "value": "0x2000" + "offset": 3056, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 3504, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3147, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 5784, + "offset": 3229, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 5794, - "length": 6, - "value": "0x2000" + "offset": 3327, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 5837, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3513, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", - "kind": "StringLiteral", - "offset": 318, - "length": 32, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3618, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", - "kind": "StringLiteral", - "offset": 335, - "length": 1, - "value": "\".networklogger\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3706, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 947, - "length": 4, - "value": "0x80" + "offset": 3844, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 984, - "length": 4, - "value": "0x0F" + "offset": 3936, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1021, - "length": 4, - "value": "0x70" + "offset": 4036, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1058, - "length": 4, - "value": "0x40" + "offset": 4138, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1095, - "length": 4, - "value": "0x80" + "offset": 4245, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1132, - "length": 4, - "value": "0x7F" + "offset": 4354, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1169, + "offset": 4633, "length": 2, - "value": "32" + "value": "21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 5001, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 5149, + "length": 2, + "value": "23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 5481, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 5829, + "length": 2, + "value": "25" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, - "length": 4, - "value": "1005" + "offset": 6091, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, - "length": 4, - "value": "1007" + "offset": 6370, + "length": 2, + "value": "27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, - "length": 4, - "value": "1008" + "offset": 6640, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 6806, + "length": 2, + "value": "29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 6934, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 7086, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 7245, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 7392, + "length": 2, + "value": "33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, + "offset": 7663, "length": 4, - "value": "1005" + "value": "9001" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, + "offset": 7782, "length": 4, - "value": "1007" + "value": "9002" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, + "offset": 7906, "length": 4, - "value": "1008" + "value": "9004" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 8144, + "length": 2, + "value": "91" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 8253, + "length": 2, + "value": "92" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 8367, + "length": 2, + "value": "94" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 8547, + "length": 2, + "value": "95" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 8647, + "length": 2, + "value": "96" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, - "length": 4, - "value": "1005" + "offset": 8783, + "length": 2, + "value": "97" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, - "length": 4, - "value": "1007" + "offset": 8896, + "length": 3, + "value": "101" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, - "length": 4, - "value": "1008" + "offset": 8994, + "length": 3, + "value": "102" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 9295, + "length": 3, + "value": "103" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, + "offset": 9705, "length": 3, - "value": "0x0" + "value": "104" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 9830, "length": 3, - "value": "0x1" + "value": "201" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 9932, "length": 3, - "value": "0x2" + "value": "202" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, + "offset": 10023, "length": 3, - "value": "0x8" + "value": "203" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 10113, "length": 3, - "value": "0x9" + "value": "301" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, + "offset": 10270, "length": 3, - "value": "0xA" + "value": "302" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 10377, "length": 3, - "value": "100" + "value": "303" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, + "offset": 10482, "length": 3, - "value": "0x0" + "value": "304" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 10579, "length": 3, - "value": "0x1" + "value": "305" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 10687, "length": 3, - "value": "0x2" + "value": "306" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, + "offset": 10783, "length": 3, - "value": "0x8" + "value": "307" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 10982, "length": 3, - "value": "0x9" + "value": "308" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, + "offset": 11168, "length": 3, - "value": "0xA" + "value": "309" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 11366, "length": 3, - "value": "100" + "value": "500" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, - "length": 3, - "value": "0x0" + "offset": 12066, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, - "length": 3, - "value": "0x1" + "offset": 12141, + "length": 15, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, - "length": 3, - "value": "0x2" + "offset": 12213, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, - "length": 3, - "value": "0x8" + "offset": 12321, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 3, - "value": "0x9" + "offset": 12408, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, - "length": 3, - "value": "0xA" + "offset": 12482, + "length": 9, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, - "length": 3, - "value": "100" + "offset": 12536, + "length": 7, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "StringLiteral", - "offset": 2524, - "length": 31, - "value": "\"com.vluxe.starscream.wsframer\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12066, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "Array", - "offset": 2569, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12141, + "length": 15, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "BooleanLiteral", - "offset": 2680, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12213, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "BooleanLiteral", - "offset": 2740, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12321, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTRequestChain.swift", - "kind": "Array", - "offset": 436, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12408, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1657, - "length": 1, - "value": "1" + "offset": 12482, + "length": 9, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1694, - "length": 1, - "value": "1" + "offset": 12536, + "length": 7, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1742, - "length": 1, - "value": "0" + "offset": 1731, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1918, - "length": 1, - "value": "0" + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Save.swift", - "kind": "BooleanLiteral", - "offset": 3796, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTFileManager+ZIP.swift", - "kind": "BooleanLiteral", - "offset": 1855, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1731, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTFileManager+ZIP.swift", - "kind": "BooleanLiteral", - "offset": 5527, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 534, - "length": 1, - "value": "0" + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 597, - "length": 1, - "value": "0" + "offset": 1731, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 783, - "length": 1, - "value": "0" + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 835, - "length": 1, - "value": "0" + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2693, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2803, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2900, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", - "kind": "BooleanLiteral", - "offset": 240, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", - "kind": "BooleanLiteral", - "offset": 274, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTURLTransform.swift", - "kind": "BooleanLiteral", - "offset": 1794, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/crc32.swift", - "kind": "Array", - "offset": 1142, - "length": 3283, - "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2693, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTAuthManager.swift", - "kind": "BooleanLiteral", - "offset": 2062, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2803, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 1585, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 1769, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 11873, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 12156, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 14664, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2693, + "length": 4, + "value": "0x05" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2803, + "length": 4, + "value": "0x06" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "StringLiteral", + "offset": 5445, + "length": 13, + "value": "\"ZTCoreKit.ButtonlessDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTMediaUploader.swift", - "kind": "Array", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiService.swift", + "kind": "BooleanLiteral", + "offset": 3527, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1609, + "length": 28, + "value": "\"yyyy-MM-dd'T'HH:mm:ssZZZZZ\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1647, + "length": 13, + "value": "\"en_US_POSIX\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1492, + "length": 22, + "value": "\"ZTCoreKit.ZTISO8601DateTransform\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", "offset": 279, - "length": 2, - "value": "[]" + "length": 9, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 524, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 601, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, + "value": "5" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", "kind": "IntegerLiteral", - "offset": 798, - "length": 1, + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "FloatLiteral", - "offset": 858, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 5, + "value": "6" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "kind": "StringLiteral", + "offset": 833, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", "kind": "IntegerLiteral", - "offset": 907, + "offset": 1084, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 960, - "length": 2, - "value": "\"\"" + "offset": 2546, + "length": 13, + "value": "\"application\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1503, - "length": 9, - "value": "\"Unknown\"" + "offset": 2596, + "length": 23, + "value": "\"softdevice_bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1585, - "length": 9, - "value": "\"Unknown\"" + "offset": 2646, + "length": 12, + "value": "\"softdevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1623, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "offset": 2685, + "length": 12, + "value": "\"bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1667, - "length": 9, - "value": "\"Unknown\"" + "offset": 2546, + "length": 13, + "value": "\"application\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1748, - "length": 9, - "value": "\"Unknown\"" + "offset": 2596, + "length": 23, + "value": "\"softdevice_bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1793, - "length": 54, - "value": "\"\"" + "offset": 2646, + "length": 12, + "value": "\"softdevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1816, - "length": 1, - "value": "\" \"" + "offset": 2685, + "length": 12, + "value": "\"bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 1846, - "length": 1, - "value": "\"\"" + "offset": 428, + "length": 10, + "value": "\"Database\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "IntegerLiteral", - "offset": 2029, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 492, + "length": 6, + "value": "\"momd\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2111, - "length": 210, + "offset": 993, + "length": 46, + "value": "\"Failed to find model URL in framework bundle\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 1150, + "length": 47, + "value": "\"Failed to create model from file: \"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 1196, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2125, - "length": 1, - "value": "\"\/\"" + "offset": 1436, + "length": 27, + "value": "\"Unresolved error \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2139, + "offset": 1462, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1733, "length": 1, - "value": "\" (\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2157, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1826, "length": 1, - "value": "\"; \"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2168, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1912, "length": 1, - "value": "\"; build:\"" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2187, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1999, "length": 1, - "value": "\"; model:\"" + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2210, - "length": 5, - "value": "\"n\/a\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2071, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2216, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2158, "length": 1, - "value": "\"; brand:Apple) SDK: \"" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2263, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2244, "length": 1, - "value": "\"\/\"" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2281, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2320, "length": 1, - "value": "\"-\"" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2319, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2403, "length": 1, - "value": "\";\"" + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2339, - "length": 8, - "value": "\"ZTCore\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2608, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2591, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2614, - "length": 27, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1912, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2628, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1999, "length": 1, - "value": "\".\"" + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2640, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2071, "length": 1, - "value": "\"\"" + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2659, - "length": 8, - "value": "\"ZTCore\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2158, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 37254, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2244, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 39015, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2320, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 41051, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2403, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 48973, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 50329, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2608, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", "kind": "StringLiteral", - "offset": 50782, - "length": 2, - "value": "\"\"" + "offset": 2654, + "length": 7, + "value": "\"ZTCoreKit.DFUUuid\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 51214, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Peripherals\/LegacyDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 1706, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", "kind": "StringLiteral", - "offset": 51928, - "length": 2, - "value": "\"\"" + "offset": 2272, + "length": 24, + "value": "\"ZTCore.log.notifcation\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", "kind": "StringLiteral", - "offset": 51952, - "length": 2, - "value": "\"\"" + "offset": 2370, + "length": 29, + "value": "\"ZTCore.log.notification.ble\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 64138, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 64158, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 1376, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 11923, - "length": 25, - "value": "[\"br\", \"gzip\", \"deflate\"]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 11990, - "length": 19, - "value": "[\"gzip\", \"deflate\"]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 12468, - "length": 1, - "value": "6" + "offset": 403, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 12910, - "length": 20, - "value": "\"CFBundleExecutable\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13018, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, "length": 3, - "value": "\"\/\"" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13061, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13098, - "length": 20, - "value": "\"CFBundleIdentifier\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13134, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13175, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13219, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13258, - "length": 17, - "value": "\"CFBundleVersion\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13291, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13445, - "length": 73, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13469, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13493, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13517, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13719, - "length": 5, - "value": "\"iOS\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 14193, - "length": 28, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14203, - "length": 1, - "value": "\" \"" + "offset": 288, + "length": 9, + "value": "\"STARTED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14220, - "length": 1, - "value": "\"\"" + "offset": 345, + "length": 10, + "value": "\"COMPLETE\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14266, - "length": 22, - "value": "\"Alamofire\/\"" + "offset": 447, + "length": 12, + "value": "\"PROCESSING\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14287, - "length": 1, - "value": "\"\"" + "offset": 503, + "length": 9, + "value": "\"ERRORED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14314, - "length": 98, - "value": "\"\"" + "offset": 288, + "length": 9, + "value": "\"STARTED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14328, - "length": 1, - "value": "\"\/\"" + "offset": 345, + "length": 10, + "value": "\"COMPLETE\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14342, - "length": 1, - "value": "\" (\"" + "offset": 447, + "length": 12, + "value": "\"PROCESSING\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14353, - "length": 1, - "value": "\"; build:\"" + "offset": 503, + "length": 9, + "value": "\"ERRORED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14372, - "length": 1, - "value": "\"; \"" + "offset": 632, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14390, - "length": 1, - "value": "\") \"" + "offset": 673, + "length": 5, + "value": "\"N\/A\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14411, - "length": 1, + "offset": 723, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "offset": 534, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "offset": 597, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "offset": 783, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" + "offset": 836, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1678, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1705, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTReachability.swift", + "kind": "BooleanLiteral", + "offset": 1993, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", + "kind": "BooleanLiteral", + "offset": 240, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", + "kind": "BooleanLiteral", + "offset": 274, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "StringLiteral", - "offset": 1609, - "length": 28, - "value": "\"yyyy-MM-dd'T'HH:mm:ssZZZZZ\"" + "offset": 305, + "length": 30, + "value": "\"com.zhortech.ztcore.activity\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", - "kind": "StringLiteral", - "offset": 1647, - "length": 13, - "value": "\"en_US_POSIX\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", + "kind": "Array", + "offset": 1390, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", - "kind": "StringLiteral", - "offset": 1492, - "length": 22, - "value": "\"ZTCoreKit.ZTISO8601DateTransform\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", + "kind": "Array", + "offset": 1459, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "IntegerLiteral", - "offset": 1357, + "offset": 7297, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 7317, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1357, - "length": 1, - "value": "1" + "offset": 1668, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 1900, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1357, + "offset": 2086, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 2180, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTReachability.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", "kind": "BooleanLiteral", - "offset": 1993, - "length": 5, - "value": "false" + "offset": 573, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", + "kind": "BooleanLiteral", + "offset": 1790, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, - "length": 5, - "value": "1000" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", + "kind": "BooleanLiteral", + "offset": 10038, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 333, + "length": 11, + "value": "\"updatable\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 370, "length": 5, - "value": "1000" + "value": "\"sid\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 401, + "length": 5, + "value": "\"url\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, - "length": 5, - "value": "1000" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 6, + "value": "\"type\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", - "kind": "BooleanLiteral", - "offset": 2933, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 466, + "length": 6, + "value": "\"arch\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", - "kind": "BooleanLiteral", - "offset": 3694, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 9, + "value": "\"version\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", "kind": "BooleanLiteral", - "offset": 4495, + "offset": 569, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "BooleanLiteral", - "offset": 14563, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/crc32.swift", "kind": "Array", - "offset": 17637, - "length": 2, - "value": "[]" + "offset": 1142, + "length": 3281, + "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", "kind": "BooleanLiteral", - "offset": 26709, - "length": 4, - "value": "true" + "offset": 2553, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", "kind": "IntegerLiteral", - "offset": 31004, + "offset": 12379, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37719, - "length": 7, - "value": "\":#[]@\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 14368, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37820, - "length": 13, - "value": "\"!$&'()*+,;=\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 14434, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", "kind": "StringLiteral", - "offset": 37891, - "length": 54, + "offset": 541, + "length": 55, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", "kind": "StringLiteral", - "offset": 37920, + "offset": 580, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37944, - "length": 2, - "value": "\"\"" + "value": "\".ZTSegmentsData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", - "kind": "Array", - "offset": 5684, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", + "kind": "BooleanLiteral", + "offset": 8629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 6545, + "offset": 5720, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 7222, + "offset": 6581, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 5141, + "offset": 7258, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5302, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "kind": "BooleanLiteral", + "offset": 2933, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", "kind": "BooleanLiteral", - "offset": 5412, + "offset": 3694, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5623, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "kind": "BooleanLiteral", + "offset": 4495, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5741, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5941, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 6036, - "length": 1, - "value": "0" + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "BooleanLiteral", - "offset": 6379, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 597, + "length": 4, + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 7652, - "length": 1, - "value": "0" + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 9232, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "StringLiteral", - "offset": 40931, - "length": 13, - "value": "\"ZTCoreKit.ZTDataRequest\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 597, + "length": 4, + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 47949, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 48116, - "length": 1, - "value": "0" + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 48236, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 52978, + "offset": 597, "length": 4, - "value": "1024" + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 45127, - "length": 19, - "value": "\"ZTCoreKit.ZTDataStreamRequest\"" + "offset": 213, + "length": 13, + "value": "\"ZTCoreKit.ZTDefaultsKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56284, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 426, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56289, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 465, "length": 1, - "value": "0" + "value": "\".ZTApiKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56441, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 52, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 565, "length": 1, - "value": "1" + "value": "\".ZTApiSecret\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56446, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 625, + "length": 48, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 664, "length": 1, - "value": "1" + "value": "\".ZTAppId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 58233, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 58951, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 1, + "value": "\".ZTOrgCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 59181, - "length": 36, - "value": "\"Alamofire_\"" + "offset": 821, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 59216, + "offset": 860, "length": 1, + "value": "\".ZTAppType\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 923, + "length": 52, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 55919, - "length": 17, - "value": "\"ZTCoreKit.ZTDownloadRequest\"" + "offset": 962, + "length": 1, + "value": "\".ZTAuthToken\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 69086, - "length": 15, - "value": "\"ZTCoreKit.ZTUploadRequest\"" + "offset": 1029, + "length": 55, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Reading.swift", - "kind": "BooleanLiteral", - "offset": 1165, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1068, + "length": 1, + "value": "\".ZTRefreshToken\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Reading.swift", - "kind": "BooleanLiteral", - "offset": 4413, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1135, + "length": 54, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 606, - "length": 24, - "value": "\"com.zhortech.ZTCoreKit\"" + "offset": 1174, + "length": 1, + "value": "\".ZTTokenExpire\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 651, - "length": 11, - "value": "\"ZTCoreKit\"" + "offset": 1241, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 689, - "length": 4, - "value": "\"v1\"" + "offset": 1280, + "length": 1, + "value": "\".ZTAppUserId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 743, - "length": 7, - "value": "\"1.3.2\"" + "offset": 1346, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 797, - "length": 5, - "value": "\"1.0\"" + "offset": 1385, + "length": 1, + "value": "\".ZTChunkDuration\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 3096, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4215, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1492, "length": 1, - "value": "2" + "value": "\".ZTAuthData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4279, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 63, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1609, "length": 1, - "value": "0" + "value": "\".lastDeviceSerialNumber\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4332, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1690, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1729, "length": 1, - "value": "0" + "value": "\".lastActivityId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4502, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1804, + "length": 57, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1843, "length": 1, - "value": "0" + "value": "\".lastDeviceQRCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 5008, - "length": 4, - "value": "true" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1914, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1953, + "length": 1, + "value": "\".lastQRCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 6301, - "length": 14, - "value": "\"3.1.0.PS.0.0\"" + "offset": 2053, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 6392, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 1, + "value": "\".startAppVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 6497, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2159, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 6828, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2198, + "length": 1, + "value": "\".deviceId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 6980, - "length": 2, - "value": "60" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 54, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 9479, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 1, + "value": "\".pairingMethod\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 10328, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2370, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 11362, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2409, + "length": 1, + "value": "\".pairingDate\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 12680, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2518, "length": 1, - "value": "5" + "value": "\".startFwVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 12697, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2588, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 15423, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 1, + "value": "\".startFwType\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 16447, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2692, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUVersion.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1684, - "length": 10, - "value": "\"ZTCoreKit.DFUVersion\"" + "offset": 2731, + "length": 1, + "value": "\".fwVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1220, - "length": 32, - "value": "\"com.vluxe.starscream.websocket\"" + "offset": 2791, + "length": 47, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "Array", - "offset": 1266, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2830, + "length": 1, + "value": "\".fwType\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "BooleanLiteral", - "offset": 1375, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2891, + "length": 53, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "BooleanLiteral", - "offset": 1467, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2930, + "length": 1, + "value": "\".wasDfuCopied\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "IntegerLiteral", - "offset": 1823, - "length": 2, - "value": "10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 3000, + "length": 59, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1057, - "length": 21, - "value": "\"ZTCoreKit.ZTFoundationTransport\"" + "offset": 3039, + "length": 1, + "value": "\".ZTIsStorageUpdated\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1481, "length": 39, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1506, "length": 1, "value": "\".SavedDevices\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1622, "length": 40, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1647, "length": 1, "value": "\".SavedRequests\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1773, "length": 47, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1798, "length": 1, "value": "\".ActivityAppDataStore\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1946, "length": 43, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1971, "length": 1, "value": "\".ManufacturerData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "IntegerLiteral", "offset": 2031, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1383, - "length": 1, - "value": "0" + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", - "kind": "BooleanLiteral", - "offset": 1402, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", - "kind": "BooleanLiteral", - "offset": 1492, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1067, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, "length": 4, - "value": "true" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1148, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1279, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 697, "length": 4, - "value": "true" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1403, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, "length": 4, - "value": "true" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1751, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, "length": 4, - "value": "true" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 1, - "value": "3" + "offset": 976, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2026, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2143, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2263, - "length": 2, - "value": "50" + "offset": 1210, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2371, - "length": 1, - "value": "3" + "offset": 1285, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2562, + "offset": 1354, "length": 4, - "value": "1200" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2691, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2820, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2958, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, "length": 4, - "value": "true" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 3068, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3169, - "length": 2, - "value": "50" + "offset": 596, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4069, - "length": 2, - "value": "20" + "offset": 697, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Peripherals\/LegacyDFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 1731, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "StringLiteral", - "offset": 1385, - "length": 43, - "value": "\"com.vluxe.starscream.server.networkstream\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "Array", - "offset": 1442, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 976, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "BooleanLiteral", - "offset": 3070, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, "length": 4, - "value": "true" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "BooleanLiteral", - "offset": 3155, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 668, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1210, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "StringLiteral", - "offset": 702, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1285, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "StringLiteral", - "offset": 753, - "length": 33, - "value": "\"com.vluxe.starscream.writequeue\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1354, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 835, - "length": 1, - "value": "1" + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 862, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 944, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, "length": 4, - "value": "true" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTEventMonitor.swift", - "kind": "StringLiteral", - "offset": 17719, - "length": 37, - "value": "\"org.alamofire.compositeEventMonitor\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 4, + "value": "0x05" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 4, + "value": "0x06" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "0x08" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 976, + "length": 4, + "value": "0x09" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, + "length": 4, + "value": "0x0A" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1210, + "length": 4, + "value": "0x0C" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1285, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1354, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" } ] } \ No newline at end of file diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index 93936fa..c988747 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,18 +1,13 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit -import Combine -import CommonCrypto -import Compression +// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit import CoreBluetooth -import CoreFoundation +import CoreData import CoreTelephony import Dispatch import Foundation -import MobileCoreServices import Network import ObjectiveC -import Security import Swift import SystemConfiguration import UIKit @@ -21,175 +16,158 @@ import _StringProcessing import _SwiftConcurrencyShims import os.log import os -import zlib -public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case timestamp - case modeId - case precisionMode - case numberOfSteps - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +public protocol ZTEnum : Swift.Decodable, Swift.Encodable { + var description: Swift.String { get } } -extension Foundation.Data { - public func macAddress() -> Swift.String? - public var bytes: [Swift.UInt8] { - get - } - public var hexDescription: Swift.String { +extension ZTCoreKit.ZTEnum { + public var description: Swift.String { get } - public init?(hex: Swift.String) - public func getUInt(offset: Swift.Int) -> Swift.UInt16 - public func getUInt32(offset: Swift.Int) -> Swift.UInt32 - public func getFloat(offset: Swift.Int) -> Swift.Float - public func getByte(at index: Swift.Int) -> Swift.Int8 - public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 - public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 - public mutating func append(byte data: Swift.Int8) - public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) - public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -extension Foundation.Data { - public func dataObject(at index: Foundation.Data.Index = 0) -> T - public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int - public func object(at offset: Swift.Int) -> T +@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { + public var name: Swift.String + public var description: Swift.String? + public var mimeType: Swift.String? + public var key: Swift.String? + public var url: Swift.String? + public var data: Foundation.Data? + convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) + required convenience public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Swift.Numeric { - public var data: Foundation.Data { +public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void +public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void +public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void +public typealias ZTCompletion = (() -> Swift.Void) +public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { + public var rawData: Foundation.Data? + public var right: Swift.UInt8 + public var left: Swift.UInt8 + public var min: Swift.UInt8 { get } -} -public struct ZTAES { - public let key: Foundation.Data - public let iv: Foundation.Data - public var algorithm: CommonCrypto.CCAlgorithm { + public var description: Swift.String { get } - public var options: CommonCrypto.CCOptions { + public init() + public init(data: Foundation.Data) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static let uuid: Swift.String + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var encOption: CommonCrypto.CCOptions { + public var byte1: Swift.UInt8? { get } - public var decOption: CommonCrypto.CCOptions { + public var byte2: Swift.UInt8? { get } - public var successStatus: Swift.UInt32 { + public var byte3: Swift.UInt8? { get } - public func evaluate(_ current: CommonCrypto.CCCryptorStatus, with needed: Swift.UInt32) -> Swift.Bool - public typealias error = ZTCoreKit.ZTPlist.Error - public init?(key: Swift.String, iv: Swift.String) - public func encrypt(data: Foundation.Data) -> Foundation.Data? - public func decrypt(data: Foundation.Data?) -> Foundation.Data? - public func crypt(data: Foundation.Data?, option: CommonCrypto.CCOperation) -> Foundation.Data? -} -@_hasMissingDesignatedInitializers open class ZTRetryPolicy { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTConnectionLostRetryPolicy : ZTCoreKit.ZTRetryPolicy { - @objc deinit + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTMessageGeneralState { + public var activityStartedRight: Swift.Bool { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -extension Foundation.UserDefaults { - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { + public var activityStartedLeft: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { + public var pairIsConnected: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { + public var memsHasError: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { + public var firmwareDifferent: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { + public var actualState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { + public var previousState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { + public var description: Swift.String { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { +} +@_hasMissingDesignatedInitializers public class ZTCommandResponse { + public var bytes: [Swift.UInt8] + public var rightModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { + public var leftModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { + public var command: ZTCoreKit.ZTCommand? { get - set } - public subscript(key: Swift.String) -> Any? { + public var status: ZTCoreKit.ZTCommandStatus? { get - set(value) } - public func value(forKey key: Swift.String) -> T? - public func clear(_ key: Swift.String) - public func clear(_ key: ZTCoreKit.ZTDefaultsKey) - public func clearAll() + @objc deinit } -public struct ZTPairedDevice : Swift.Codable { - public var macAddress: Swift.String { +public enum ZTCommandStatus : Swift.UInt8 { + case success + case busy + case invalidParam + case invalidState + case forbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerresponse + public var description: Swift.String { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -public enum ZTDfuPackageType : Swift.String { - case APP - case BL - case SD - case SD_BL - case SD_BL_APP - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers final public class ZTSettings { + public static let shared: ZTCoreKit.ZTSettings + final public var version: Swift.String? + final public var logLevel: ZTCoreKit.ZTLogLevel + final public var environment: ZTCoreKit.ZTEnvironment + final public var autoConnect: Swift.Bool + final public var enableEventLogging: Swift.Bool + final public var shouldObtaineMissedChunks: Swift.Bool + final public var enableRawDataCheck: Swift.Bool + final public var shouldAutoResendData: Swift.Bool + final public var activityDataSyncThreshold: Swift.Int + final public var enableBackgroundDFU: Swift.Bool + final public var enableBackgroundDataStreaming: Swift.Bool + final public var activityChunkStoreForFreeMemory: Swift.Int + final public var activityChunkRetryLimit: Swift.Int + final public var checkFirmwareUpdatePeriod: Swift.Int + final public var enableAnalyticsData: Swift.Bool + final public var autorestartBackgroundDfu: Swift.Bool + final public var getChunksOnApplicationDidBecomeActive: Swift.Bool + final public var enablePacketsDataLogging: Swift.Bool + final public var cachedPacketsBatchUploadSize: Swift.Int + final public var chunkDuration: Swift.Int? { get + set } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + final public func clear() @objc deinit } -@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { +@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { public static let uuid: Swift.String open var data: Foundation.Data? { get @@ -198,336 +176,317 @@ public enum ZTDfuPackageType : Swift.String { override open func valueUpdated() @objc deinit } -public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var bootloaderVersion: Swift.UInt8 { - get - } - public var appSupportVersion: Swift.UInt8 { - get - } - public var softDeviceId: Swift.UInt8 { - get +extension ZTCoreKit.ZTRealtimeMessage { + public struct Status : Swift.CustomStringConvertible { + public var code: ZTCoreKit.ZTAlgoStatus? { + get + } + public var timestamp: Swift.UInt32? { + get + } + public var algoMode: ZTCoreKit.ZTAlgoMode? { + get + } + public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { + get + } + public var consecutiveSteps: Swift.UInt8? { + get + } + public var description: Swift.String { + get + } + public init(data: Foundation.Data) } - public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { +} +public enum ZTBleManagerState : Swift.CustomStringConvertible { + case off + case on + case idle + case scanning + case unauthorized + case resetting + case unknown + case unsupported + public var description: Swift.String { get } - public var description: Swift.String { + public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public enum DfuState : Swift.UInt8 { - case none - case inProgress - case received - case readyForCopy - case activation - case done - case error - case validationError - case activationError - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } -extension Swift.String { - public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String - public var fromBase64: Swift.String? { +public enum ZTRealtimeMetric : Swift.String { + case duration + case steps + case cycleDuration + case stepCadence + case stepSpeed + case distance + case footDistance + case energySum + case walkingQualityScore + case stairsClimbed + case intenseActivity + case slope + case accelerationFoot + case strideLength + case relativePronationAngleFoot + case pronationAngleFFI + case pronationAngleFFO + case plantarFlexionAngularSpeedMaxPropulsion + case symmetry + public func value() -> Swift.UInt8 + public var activityType: ZTCoreKit.ZTActivityType { get } - public var toBase64: Swift.String { + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String - public func substring(range: Foundation.NSRange) -> Swift.String - public func matches(regex: Swift.String) -> [Swift.String] - public static func random(length: Swift.Int = 9) -> Swift.String - public func split(usingRegex pattern: Swift.String) -> [Swift.String] - public func serialNumber() -> Swift.String - public func fileName() -> Swift.String - public func incrementedMacAddress() -> Swift.String } -extension Swift.Int { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +extension ZTCoreKit.ZTRealtimeMetric { + public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) + public init?(name: Swift.String) } -extension Swift.UInt8 { - public var bits: [Swift.UInt8] { - get - } - public var hexValue: Swift.String { - get +open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.Double + public enum Unit : Foundation.TimeInterval { + case seconds + case milliseconds + public init?(rawValue: Foundation.TimeInterval) + public typealias RawValue = Foundation.TimeInterval + public var rawValue: Foundation.TimeInterval { + get + } } + public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + @objc deinit } -extension Swift.UInt16 { - public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] -} -extension Swift.UInt32 { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] -} -extension Swift.UInt64 { - public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] +open class ZTDataTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Data + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.Data? + open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? + @objc deinit } -extension Swift.Double { - public var milliseconds: Swift.Int64 { +@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension Swift.Array where Element == Swift.UInt8 { - public var hex: Swift.String { +public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case defaultMode + case economicMode + case performanceMode + public var parameters: [Swift.UInt8] { get } -} -extension Swift.Dictionary { - public func merge(dict: [Key : Value]) -> [Key : Value] -} -extension Foundation.Date { - public var timestamp: Swift.Int64 { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - public var apiFormat: Swift.String { - get +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { + @objc public func pause() + @objc public func resume() + @objc public func abort() -> Swift.Bool + @objc public func restart() + @objc public var paused: Swift.Bool { + @objc get } - public var logFormat: Swift.String { - get + @objc public var aborted: Swift.Bool { + @objc get } + @objc deinit } -extension Swift.Array where Element : CoreBluetooth.CBPeripheral { - public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool -} -extension Swift.Array { - public func chunked(into size: Swift.Int = 1000) -> [[Element]] -} -extension Swift.Array where Element == Swift.String { - public func stringify() -> Swift.String -} -extension CoreBluetooth.CBCharacteristic { - public func notifyValue(_ isEnabled: Swift.Bool) - public func readValue() - @discardableResult - public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { + public var left: Swift.UInt32 + public var right: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTEnvironment { - case dev - case staging - case production - case zcdev - case zcstaging - case zcproduction - public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { +extension ZTCoreKit.ZTMessageInactivityTimeout { + public var description: Swift.String { get } } -public enum ZTModuleSide : Swift.String, Swift.Codable { - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } +public protocol ZTCBCentralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + func stopScan() + func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] + func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] + func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) + func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) + func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) } -public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable -public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable -public protocol ZTEnum : Swift.Decodable, Swift.Encodable { - var description: Swift.String { get } +extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { + public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? + public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] + public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) } -extension ZTCoreKit.ZTEnum { +open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { + public init(formatString: Swift.String) + @objc deinit +} +public struct ZTMapError : Swift.Error { + public var key: Swift.String? + public var currentValue: Any? + public var reason: Swift.String? + public var file: Swift.StaticString? + public var function: Swift.StaticString? + public var line: Swift.UInt? + public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) +} +extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { public var description: Swift.String { get } } -extension ZTCoreKit.ZTArchive { - final public func totalUnitCountForRemoving(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForReading(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForAddingItem(at url: Foundation.URL) -> Swift.Int64 -} -public let defaultReadChunkSize: Swift.UInt32 -public let defaultWriteChunkSize: Swift.UInt32 -public let defaultFilePermissions: Swift.UInt16 -public let defaultDirectoryPermissions: Swift.UInt16 -final public class ZTArchive : Swift.Sequence { - public enum ArchiveError : Swift.Error { - case unreadableArchive - case unwritableArchive - case invalidEntryPath - case invalidCompressionMethod - case invalidStartOfCentralDirectoryOffset - case missingEndOfCentralDirectoryRecord - case invalidNumberOfEntriesOnDisk - case invalidNumberOfEntriesInCentralDirectory - case cancelledOperation - case invalidBufferSize - public static func == (a: ZTCoreKit.ZTArchive.ArchiveError, b: ZTCoreKit.ZTArchive.ArchiveError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get +public protocol ZTPacketCachable : CoreData.NSManagedObject { + associatedtype Activity : ZTCoreKit.ZTActivityCachable + var id: Swift.Int16 { get set } + var createdAt: Foundation.Date { get set } + var fulfilledAt: Foundation.Date { get set } + var sentAt: Foundation.Date { get set } + var timestamp: Swift.Int64 { get set } + var duration: Swift.Int16 { get set } + var statusRawValue: Swift.Int16 { get set } + var status: ZTCoreKit.ZTPacket.Status { get set } + var scheduledDeleted: Foundation.Date? { get set } + var rawData: Foundation.Data? { get set } + var activity: Self.Activity? { get set } + var fwVersion: Swift.String? { get set } + init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, context: CoreData.NSManagedObjectContext, name: Swift.String) +} +extension ZTCoreKit.ZTPacketCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public enum ZTServices { + public enum Primary { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + case test + public var uid: Swift.String { + get + } + public var uuid: CoreBluetooth.CBUUID { + get + } + public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - public enum AccessMode : Swift.UInt { - case create - case read - case update - public init?(rawValue: Swift.UInt) - public typealias RawValue = Swift.UInt - public var rawValue: Swift.UInt { - get + public enum PrimaryOld { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - final public let url: Foundation.URL - final public let accessMode: ZTCoreKit.ZTArchive.AccessMode - public init?(url: Foundation.URL, accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - public init?(data: Foundation.Data = Data(), accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - @objc deinit - final public func makeIterator() -> Swift.AnyIterator - final public subscript(path: Swift.String) -> ZTCoreKit.ZTEntry? { - get - } - public typealias Element = ZTCoreKit.ZTEntry - public typealias Iterator = Swift.AnyIterator -} -final public class ZTSignal { - public typealias ZTSignalCallback = (T) -> Swift.Void - final public var fireCount: Swift.Int { - get - } - final public var retainLastData: Swift.Bool { - get - set - } - final public var lastDataFired: T? { - get + public enum DeviceInformation { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case manufacturerName + case modelNumber + case serialNumber + case firmwareRevision + case hardwareRevision + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - final public var observers: [Swift.AnyObject] { - get + public enum DeviceDFU { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case dfuControlPoint + case dfuPacket + case dfuButtonless + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - public init(retainLastData: Swift.Bool = false) - @discardableResult - final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - final public func fire(_ data: T) - final public func cancelSubscription(for observer: Swift.AnyObject) - final public func cancelAllSubscriptions() - final public func clearLastData() - @objc deinit -} -extension ZTCoreKit.ZTSignal where T == () { - final public func fire() -} -@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { - public typealias ZTSignalCallback = (T) -> Swift.Void - public typealias ZTSignalFilter = (T) -> Swift.Bool - weak final public var observer: Swift.AnyObject? - final public var once: Swift.Bool - @discardableResult - final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription - final public func cancel() - @objc deinit } -infix operator => : AssignmentPrecedence -public func => (signal: ZTCoreKit.ZTSignal, data: T) -public struct ZTMessageTime : Swift.CustomStringConvertible { - public var timestamp: Swift.Int64 - public var side: ZTCoreKit.ZTModuleSide - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { +public enum ZTRealtimeSide : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@objc public protocol DFUPeripheralSelectorDelegate { - @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool - @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? -} -extension ZTCoreKit.ZTArchive { - final public var data: Foundation.Data? { - get - } +@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { + public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? + @objc override dynamic public init() + @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage.Event { - public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case motion - case transition - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension ZTCoreKit.ZTRealtimeMessage { + public struct Acknowledgment : Swift.CustomStringConvertible { + public var command: ZTCoreKit.ZTAlgoCommand? { get } - } - public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case stepForward - case stepBackward - case stepSideLeft - case stepSideRight - case stepUp - case stepDown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { get } - } - public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case low - case medium - case high - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -public class ZTDateTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public enum DFUStreamHexError : Swift.Error { - case invalidHexFile - public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -open class ZTDataTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Data - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.Data? - open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? - @objc deinit -} open class ZTCharacteristic { weak public var service: ZTCoreKit.ZTService? { get @@ -557,951 +516,1103 @@ open class ZTCharacteristic { open func notificationUpdated() @objc deinit } -@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@objc public enum DFUFirmwareType : Swift.UInt8 { + case softdevice = 1 + case bootloader = 2 + case application = 4 + case softdeviceBootloader = 3 + case softdeviceBootloaderApplication = 7 + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) +} +public struct DFUFirmwareError : Swift.Error { + public enum FileType { + case zip + case binOrHex + case dat + public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public let type: ZTCoreKit.DFUFirmwareError.FileType +} +extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +@objc public class DFUFirmware : ObjectiveC.NSObject { + @objc final public let fileName: Swift.String? + @objc final public let fileUrl: Foundation.URL? + @objc public var valid: Swift.Bool { + @objc get + } + @objc public var size: ZTCoreKit.DFUFirmwareSize { + @objc get + } + @objc public var parts: Swift.Int { + @objc get + } + @objc convenience public init(urlToZipFile: Foundation.URL) throws + @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws + @objc convenience public init(zipFile: Foundation.Data) throws + @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) + @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws @objc deinit } -public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { +public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void +@_hasMissingDesignatedInitializers final public class ZTCore { + public static let version: Swift.String + final public var zcVersion: Swift.String + public static let shared: ZTCoreKit.ZTCore + final public let bleManager: ZTCoreKit.ZTBleManager + final public var settings: ZTCoreKit.ZTSettings { get } - public var byte1: Swift.UInt8? { + final public var appUserId: Swift.String? { get } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTMessageChunkConfig { - public var side: ZTCoreKit.ZTModuleSide { + final public var lastCommand: ZTCoreKit.ZTCommand? + final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] + final public var lastActivityId: Swift.String? { get } - public var flag: Swift.UInt8 { + final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { get } - public var description: Swift.String { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } -} -@_hasMissingDesignatedInitializers open class ZTSession { - @objc deinit -} -open class ZTService { - weak public var device: ZTCoreKit.ZTDevice! { + final public var lastDeviceSerialNumber: Swift.String? { get } - final public let service: CoreBluetooth.CBService - public static var serviceType: ZTCoreKit.ZTService.Type { + final public var lastDeviceQRCode: Swift.String? { get } - public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { + final public var lastQRCode: Swift.String? { get } - public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + final public var isDfuInProgress: Swift.Bool { + get + } + weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? + final public var firmwareDfuState: ZTCoreKit.DFUState? { + get + } + final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { + get + set + } + final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> + final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> + final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuCopied: ZTCoreKit.ZTSignal<()> + final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + final public func clearUser() + final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) + @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func stopScan() + final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) + #if compiler(>=5.3) && $AsyncAwait + final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice + #endif + @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") + final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) + final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) + final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func setDeepSleepMode() throws + @objc deinit } -extension ZTCoreKit.ZTService : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +public class ZTDatabaseService where Packet : ZTCoreKit.ZTPacketCachable, Activity : ZTCoreKit.ZTActivityCachable { + public var currentActivityId: Swift.String? + public init(context: CoreData.NSManagedObjectContext = ZTCoreDataStack.shared.context) + @objc deinit + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withId activityId: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withSerial serial: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func createActivity(withId id: Swift.String, updateBlock: ((Activity) -> Swift.Void)? = nil) async throws -> Activity? + #endif + public func updateActivity(id: Swift.String, updateBlock: @escaping (Activity) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + public func deleteActivity(withId id: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + #if compiler(>=5.3) && $AsyncAwait + public func createPacket(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, updateBlock: ((Packet) -> Swift.Void)? = nil) async -> Packet + #endif + public func fetchPackets(for activityId: Swift.String, completion: @escaping (Swift.Result<[Packet], any Swift.Error>) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func fetchPackets(forActivityId activityId: Swift.String, from startId: Swift.Int16? = nil, to lastId: Swift.Int16? = nil, in managedObjectContext: CoreData.NSManagedObjectContext) async throws -> [Packet] + #endif + public func trashOldPackets() + public func updatePackets(for activityId: Swift.String, from startId: Swift.Int16, to endId: Swift.Int16, withStatus newStatus: ZTCoreKit.ZTPacket.Status, completion: @escaping ((any Swift.Error)?) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func add(_ packet: Packet, to activityId: Swift.String, in managedContext: CoreData.NSManagedObjectContext) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + public func update(_ packets: [Packet], withNewStatus newStatus: ZTCoreKit.ZTPacket.Status, in managedContext: CoreData.NSManagedObjectContext) async + #endif + public func update(packet: Packet, updateBlock: @escaping (Packet) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) } -public protocol ZTServiceProtocol : AnyObject { - static var uuid: Swift.String { get } - static var serviceType: ZTCoreKit.ZTService.Type { get } - static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +public class ZTUser : ZTCoreKit.ZTMappable { + public var attributes: [Swift.String : Any] + public var id: Swift.String? + public var organizationId: Swift.String? + public var appId: Swift.String? + public var createdAt: Swift.String? + public var updatedAt: Swift.String? + public var userId: Swift.String? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { +public class ZTAchievement : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var type: Swift.String? + public var activityId: Swift.String? + public var code: Swift.String? + public var appuserId: Swift.String? + public var data: [Swift.String : Any]? + public var duration: Swift.Int64? + public var calories: Swift.Double? + public var createdAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +open class ZTService { + weak public var device: ZTCoreKit.ZTDevice! { + get + } + final public let service: CoreBluetooth.CBService public static var serviceType: ZTCoreKit.ZTService.Type { get } -} -@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) - @objc deinit -} -public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { - case status(id: ZTCoreKit.ZTAlgoStatus) - case startNewChunk - case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) - case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) - case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) - case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) - case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) - public var parameters: [Swift.UInt8] { + public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static let uuid: Swift.String - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) @objc deinit } -public enum ZTRealtimeMetric : Swift.String { - case duration - case steps - case cycleDuration - case stepCadence - case stepSpeed - case distance - case footDistance - case energySum - case walkingQualityScore - case stairsClimbed - case intenseActivity - case slope - case accelerationFoot - case strideLength - case relativePronationAngleFoot - case pronationAngleFFI - case pronationAngleFFO - case plantarFlexionAngularSpeedMaxPropulsion - case symmetry - public func value() -> Swift.UInt8 - public var activityType: ZTCoreKit.ZTActivityType { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +extension ZTCoreKit.ZTService : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +} +extension Foundation.Data { + public var hexString: Swift.String { get } } -extension ZTCoreKit.ZTRealtimeMetric { - public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) - public init?(name: Swift.String) +public protocol DataConvertible { + static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + static func += (lhs: inout Foundation.Data, rhs: Self) } -public protocol ZTCBCentralManagerProtocol : AnyObject { - var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } - var state: CoreBluetooth.CBManagerState { get } - func stopScan() - func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] - func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] - func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) - func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) - func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) +extension ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + public static func += (lhs: inout Foundation.Data, rhs: Self) } -extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { - public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? - public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] - public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) +extension Swift.UInt8 : ZTCoreKit.DataConvertible { } -@objc @_hasMissingDesignatedInitializers open class ZTSessionDelegate : ObjectiveC.NSObject { - @objc deinit +extension Swift.UInt16 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, didBecomeInvalidWithError error: (any Swift.Error)?) +extension Swift.UInt32 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionTaskDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didReceive challenge: Foundation.URLAuthenticationChallenge, completionHandler: @escaping (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didSendBodyData bytesSent: Swift.Int64, totalBytesSent: Swift.Int64, totalBytesExpectedToSend: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, needNewBodyStream completionHandler: @escaping (Foundation.InputStream?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didFinishCollecting metrics: Foundation.URLSessionTaskMetrics) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didCompleteWithError error: (any Swift.Error)?) - @available(macOS 10.13, iOS 11.0, tvOS 11.0, watchOS 4.0, *) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, taskIsWaitingForConnectivity task: Foundation.URLSessionTask) +extension Swift.Int : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDataDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, didReceive data: Foundation.Data) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, willCacheResponse proposedResponse: Foundation.CachedURLResponse, completionHandler: @escaping (Foundation.CachedURLResponse?) -> Swift.Void) +extension Swift.Float : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDownloadDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didResumeAtOffset fileOffset: Swift.Int64, expectedTotalBytes: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didWriteData bytesWritten: Swift.Int64, totalBytesWritten: Swift.Int64, totalBytesExpectedToWrite: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didFinishDownloadingTo location: Foundation.URL) +extension Swift.Double : ZTCoreKit.DataConvertible { } -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +extension Swift.String : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data +} +extension Foundation.Data : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data +} +@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { + @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool + @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? + @objc override dynamic public init() + @objc deinit +} +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.Int16, anchorTime: Swift.Int64?) + public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTPacket) + public static func updateSegments(ids: [Swift.Int16], status: ZTCoreKit.ZTPacket.Status, activityId: Swift.String?) +} +@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public protocol ZTCBPeripheralProtocol { - var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } - var name: Swift.String? { get } - var rssi: Foundation.NSNumber? { get } - var state: CoreBluetooth.CBPeripheralState { get } - var services: [CoreBluetooth.CBService]? { get } - var identifier: Foundation.UUID { get } - func discoverServices(_: [CoreBluetooth.CBUUID]?) - func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) - func readValue(for: CoreBluetooth.CBCharacteristic) - func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) - func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) -} -extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { -} -extension ZTCoreKit.ZTPlist { - public func asCollection() -> [Foundation.NSDictionary.Element] - public func set(_ rawValue: Any?, for key: Swift.String) - public func get(_ key: Swift.String) -> Any? - public func clean() - public func remove(_ keys: Swift.String...) - public func remove(keys collection: [Swift.String]) - public func bool(_ key: Swift.String) -> Swift.Bool? - public func int(_ key: Swift.String) -> Swift.Int? - public func double(_ key: Swift.String) -> Swift.Double? - public func float(_ key: Swift.String) -> Swift.Float? - public func string(_ key: Swift.String) -> Swift.String? - public func dictionary(_ key: Swift.String) -> [Swift.String : Any]? - public func collection(_ key: Swift.String) -> [Any]? - public func date(_ key: Swift.String) -> Foundation.Date? - public func data(_ key: Swift.String) -> Foundation.Data? - public func null(_ key: Swift.String) -} -public struct ZTRealtimeMessage : Swift.CustomStringConvertible { - public var description: Swift.String { - get +extension ZTCoreKit.ZTPacket { + public enum Status : Swift.Int16, Swift.Codable, Swift.Equatable { + case new + case readyToSend + case sending + case sent + case error + public init?(rawValue: Swift.Int16) + public typealias RawValue = Swift.Int16 + public var rawValue: Swift.Int16 { + get + } } - public enum Side : Swift.UInt8 { - case none - case left - case right - case both + public enum TimestampType : Swift.UInt8, Swift.Codable { + case unknown + case start + case stop + case pause + case resume + case reboot + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } - public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + public enum BmTimestampType : Swift.UInt8, Swift.Codable { + case unknown + case shoeWearOn + case shoeWearOff + case walkingStart + case walkingStop + case runningStart + case runningStop + case cyclingStart + case cyclingStop + case transportStart + case transportStop + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public enum PacketType : Swift.UInt8, Swift.Codable { + public static let maxDataValue: Swift.UInt8 + case unknown + case quantification + case walkAnalysis + case runAnalysis + case stairs + case cycling + case jump + case safety + case staticActivity + case debug + case debugTelemetry + case debugProba + case bmTimestampPacket + case fwTimestampPacket + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { + final public var advertisingServices: [CoreBluetooth.CBUUID]? + final public var managerState: ZTCoreKit.ZTBleManagerState { get + set } - public var content: [Swift.UInt8] { + final public class var instance: ZTCoreKit.ZTBleManager { get } - public init(bytes: [Swift.UInt8]) - public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { get } - public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + final public var macAddress: Swift.String? { get } - public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? + final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { get } - public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + final public var product: ZTCoreKit.ZTProductType? { get + set } -} -@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() + final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + get + } + final public var scanning: Swift.Bool { + get + } + final public var isDfuMode: Swift.Bool { + get + } + final public let onBluetoothStateChange: ZTCoreKit.ZTSignal + final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onDeviceDiscovered: ZTCoreKit.ZTSignal + final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> @objc deinit } -public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { - public var left: Swift.UInt32 - public var right: Swift.UInt32 - public init(bytes: [Swift.UInt8]) +extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +} +public struct ZTPairedDevice : Swift.Codable { + public var macAddress: Swift.String { + get + } public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageInactivityTimeout { - public var description: Swift.String { +public enum DFUStreamHexError : Swift.Error { + case invalidHexFile + public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -@objc public enum DFUFirmwareType : Swift.UInt8 { - case softdevice = 1 - case bootloader = 2 - case application = 4 - case softdeviceBootloader = 3 - case softdeviceBootloaderApplication = 7 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void +public enum ZTScannerResult { + case success(device: ZTCoreKit.ZTDevice) + case cancelled + case failed((any Swift.Error)?) +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit } -public struct DFUFirmwareError : Swift.Error { - public enum FileType { - case zip - case binOrHex - case dat - public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +public enum DFUStreamZipError : Swift.Error { + case noManifest + case invalidManifest + case fileNotFound + case typeNotFound + public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get } - public let type: ZTCoreKit.DFUFirmwareError.FileType } -extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { +extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { public var errorDescription: Swift.String? { get } } -@objc public class DFUFirmware : ObjectiveC.NSObject { - @objc final public let fileName: Swift.String? - @objc final public let fileUrl: Foundation.URL? - @objc public var valid: Swift.Bool { - @objc get - } - @objc public var size: ZTCoreKit.DFUFirmwareSize { - @objc get - } - @objc public var parts: Swift.Int { - @objc get +@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get } - @objc convenience public init(urlToZipFile: Foundation.URL) throws - @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws - @objc convenience public init(zipFile: Foundation.Data) throws - @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) - @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Status : Swift.CustomStringConvertible { - public var code: ZTCoreKit.ZTAlgoStatus? { - get - } - public var timestamp: Swift.UInt32? { - get - } - public var algoMode: ZTCoreKit.ZTAlgoMode? { - get - } - public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { - get - } - public var consecutiveSteps: Swift.UInt8? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) +public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { + case status(id: ZTCoreKit.ZTAlgoStatus) + case startNewChunk + case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) + case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) + case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) + case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) + case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) + public var parameters: [Swift.UInt8] { + get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { + @objc open var softdevice: Swift.UInt32 { + get + } + @objc open var bootloader: Swift.UInt32 { + get + } + @objc open var application: Swift.UInt32 { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() @objc deinit } -infix operator <<- : DefaultPrecedence -infix operator ->> : DefaultPrecedence -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) -public func ->> (left: T, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) -public func ->> (left: T?, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { - public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? - @objc override dynamic public init() - @objc deinit -} -public enum ZTCompressionMethod : Swift.UInt16 { - case none - case deflate - public init?(rawValue: Swift.UInt16) - public typealias RawValue = Swift.UInt16 - public var rawValue: Swift.UInt16 { +extension Swift.String { + public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String + public var fromBase64: Swift.String? { get } -} -public typealias CRC32 = Swift.UInt32 -public typealias ZTConsumer = (_ data: Foundation.Data) throws -> Swift.Void -public typealias ZTProvider = (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data -extension Foundation.Data { - public func crc32(checksum: ZTCoreKit.CRC32) -> ZTCoreKit.CRC32 - public static func compress(size: Swift.Int, bufferSize: Swift.Int, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 - public static func decompress(size: Swift.Int, bufferSize: Swift.Int, skipCRC32: Swift.Bool, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 -} -extension ZTCoreKit.ZTPlist { - public enum Error { - case notFound(at: Foundation.URL?) - case deleted(at: Foundation.URL?) - case parse(at: Foundation.URL?) - case filemanagerRemove(with: any Swift.Error) - case aesKeyFail(key: Swift.String) - case aesInitialVectorFail(iv: Swift.String) - case aesCryptFail(status: Swift.Int32) - case noData - case stringNotInUtf8 - public static let identifier: Swift.String - public func raise() - } -} -extension ZTCoreKit.ZTPlist.Error : Swift.Error, Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var toBase64: Swift.String { get } + public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String + public func substring(range: Foundation.NSRange) -> Swift.String + public func matches(regex: Swift.String) -> [Swift.String] + public static func random(length: Swift.Int = 9) -> Swift.String + public func split(usingRegex pattern: Swift.String) -> [Swift.String] + public func serialNumber() -> Swift.String + public func fileName() -> Swift.String + public func incrementedMacAddress() -> Swift.String } -public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case walking - case running - case pedaling - case jump - case stairsUp - case stairsDown - case standing - case sitting - case kneeling - case tiptoe - case vibration - case slip - case incident - case freewheel - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Int { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +} +extension Swift.UInt8 { + public var bits: [Swift.UInt8] { get } -} -public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { - var rawData: Foundation.Data? { get set } -} -@objc public enum LogLevel : Swift.Int { - case debug = 0 - case verbose = 1 - case info = 5 - case application = 10 - case warning = 15 - case error = 20 - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexValue: Swift.String { get } } -@objc public protocol LoggerDelegate { - @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +extension Swift.UInt16 { + public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { - get - } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - @objc deinit +extension Swift.UInt32 { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { - @objc public func pause() - @objc public func resume() - @objc public func abort() -> Swift.Bool - @objc public func restart() - @objc public var paused: Swift.Bool { - @objc get - } - @objc public var aborted: Swift.Bool { - @objc get - } - @objc deinit +extension Swift.UInt64 { + public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] } -public enum ZTTXPower : Swift.UInt8 { - case dBm0 - case dBm2 - case dBm3 - case dBm4 - case dBm5 - case dBm6 - case dBm7 - case dBm8 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Double { + public var milliseconds: Swift.Int64 { get } } -public class ZTPlist { - public static let folderName: Swift.String - final public let url: Foundation.URL - public var encrypted: Swift.Bool { - get - } - public var encryption: ZTCoreKit.ZTAES? { +extension Swift.Array where Element == Swift.UInt8 { + public var hex: Swift.String { get } - public var dictionary: Foundation.NSMutableDictionary? { +} +extension Swift.Dictionary { + public func merge(dict: [Key : Value]) -> [Key : Value] +} +extension Foundation.Date { + public var timestamp: Swift.Int64 { get } - public var cache: Foundation.NSMutableDictionary? { + public var apiFormat: Swift.String { get - set } - public var volume: Swift.Int64 { + public var logFormat: Swift.String { get } - public var size: Swift.String { +} +extension Swift.Array where Element : CoreBluetooth.CBPeripheral { + public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool +} +extension Swift.Array { + public func chunked(into size: Swift.Int = 1000) -> [[Element]] +} +extension Swift.Array where Element == Swift.String { + public func stringify() -> Swift.String +} +extension CoreBluetooth.CBCharacteristic { + public func notifyValue(_ isEnabled: Swift.Bool) + public func readValue() + @discardableResult + public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +} +public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var fileName: Swift.String { + public var byte1: Swift.UInt8? { get } - public var name: Swift.String { + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkConfig { + public var side: ZTCoreKit.ZTModuleSide { get } - @objc public func save() - public init(insideBundleUrl url: Foundation.URL) - public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName) - convenience public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName, encryption: ZTCoreKit.ZTAES) - public static func delete(_ plist: inout ZTCoreKit.ZTPlist?) - @objc deinit -} -public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { - public var id: Swift.UInt8 { + public var flag: Swift.UInt8 { get } - case generalState - case startNewActivity - case stopNewActivity - case resendData - case deepSleep - case reboot - case detailedBattery - case hardwareInformation - case firmwareInformation - case bootloaderVersion - case setInactivityTimeout - case setDFUInstall - case setDFUMode - case setChunkConfig - case setChunkMinutesInterval - case setChunkSecondsInterval - case selectAlgorithm - case freeMemory - case getTimestamp - case passthroughAlgo - case resetActivity - case getActivityMetadata - case disableHeating - case setHeating - case setTimer - case getTemperature - case getTimer - case startPostureCalibration - case setUserParameters - case resetCalibration - case getCalibrationState - case rawDataSend - case rawDataEnable - case rawDataLookup - case rawDataDebug - case calibrateStatic - case clearCalibrateStatic - case cancelCalibrateStatic - case getCalibrateStaticMessage - case getCalibrateStaticData - case testCalibrateStatic - case memsConfig - case updateTxPower - case updatePhy - case disconnect - case startDFURight - case startDFULeft - case enablePeerConnection - case factoryReset public var description: Swift.String { get } +} +@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + @objc deinit +} +public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { + case undefined + case userRequest + case memoryFull + case inactivity public init?(rawValue: Swift.UInt8) - public typealias AllCases = [ZTCoreKit.ZTCommand] - public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public static var allCases: [ZTCoreKit.ZTCommand] { - get - } public var rawValue: Swift.UInt8 { get } } -open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { - public init(formatString: Swift.String) - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTMultipartFormData { - open var contentType: Swift.String { +@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get - set } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTCommandResponse { - public var bytes: [Swift.UInt8] - public var rightModule: Swift.Bool { +public protocol ZTServiceProtocol : AnyObject { + static var uuid: Swift.String { get } + static var serviceType: ZTCoreKit.ZTService.Type { get } + static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +} +extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { + public static var serviceType: ZTCoreKit.ZTService.Type { get } - public var leftModule: Swift.Bool { +} +public protocol ZTMapContext { +} +final public class ZTMap { + final public let mappingType: ZTCoreKit.ZTMappingType + final public var JSON: [Swift.String : Any] { get } - public var command: ZTCoreKit.ZTCommand? { + final public var isKeyPresent: Swift.Bool { get } - public var status: ZTCoreKit.ZTCommandStatus? { + final public var currentValue: Any? { + get + } + final public var currentKey: Swift.String? { + get + } + final public var nestedKeyDelimiter: Swift.String { + get + } + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + final public let toObject: Swift.Bool + public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { get } + final public func value() -> T? @objc deinit } -public enum ZTCommandStatus : Swift.UInt8 { - case success - case busy - case invalidParam - case invalidState - case forbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerresponse - public var description: Swift.String { +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, default: T) throws -> T + final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +} +extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) + @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) + public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) + public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) + public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) +} +public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { + case staticType + case dynamic + case walking + case running + case cycling + case jump + case stairsUp + case stairsDown + case staticOther + case kneel + case tiptoe + case vibration + case trampling + case crawling + case dynamicOther + case slip + case trip + case active + case inactive + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } +} +public enum ZTTXPower : Swift.UInt8 { + case dBm0 + case dBm2 + case dBm3 + case dBm4 + case dBm5 + case dBm6 + case dBm7 + case dBm8 public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -@_hasMissingDesignatedInitializers public class ZTDefaults { - @objc deinit -} -@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { - final public let stringValue: Swift.String - public init(_ value: Swift.String) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func addEntry(with path: Swift.String, relativeTo baseURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, fileURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, type: ZTCoreKit.ZTEntry.EntryType, uncompressedSize: Swift.UInt32, modificationDate: Foundation.Date = Date(), permissions: Swift.UInt16? = nil, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data) throws - final public func remove(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, progress: Foundation.Progress? = nil) throws -} -@objc public class ZTDevice : ObjectiveC.NSObject { - public var id: Swift.String - public var peripheral: CoreBluetooth.CBPeripheral? { +@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { get } - public var serialNumber: Swift.String { + open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { get } - public var name: Swift.String? { + open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { get } - public var qrCode: Swift.String? { + open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { get } - public var rssi: Swift.Int { + open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { get } - public var macAddressRight: Swift.String? - public var macAddressLeft: Swift.String? - public var advertisementData: [Swift.String : Any]? - public var manufacturer: Swift.String? { + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +extension ZTCoreKit.ZTCore { + final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) + final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) + final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) +} +@_hasMissingDesignatedInitializers public class ZTDeviceInfo { + public var project: ZTCoreKit.ZTProjectCodeType? { get } - public var hardwareRevision: Swift.String? { + public var productCode: ZTCoreKit.ZTProductCodeType? { get } - public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { get } - public var modelNumber: Swift.String? { + public var productType: ZTCoreKit.ZTProductTypeCode? { get } - public var uuid: Swift.String { + public var hardwareVersion: Swift.Int8? { get } - public var isConnected: Swift.Bool { + public var boardVersion: Swift.Int8? { get } - public var isActivityRunning: Swift.Bool { + public var testeur: Swift.String? { get } - public var isDeviceReady: Swift.Bool { + public var sizeRaw: Swift.String? { get } - public var info: ZTCoreKit.ZTDeviceInfo? { + public var year: Swift.Int? { get - set } - public var batterylevel: ZTCoreKit.ZTBatteryLevel? { + public var week: Swift.Int? { get } - public var lastActivityDate: Foundation.Date { + public var SN: Swift.String? { get } - public var generalState: ZTCoreKit.ZTMessageGeneralState? { + public var serialNumber: Swift.String + public var deviceIdentifier: Swift.String + public var macAddressRight: Swift.String? { get - set } - public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { + public var macAddressLeft: Swift.String? { get - set } - public var lowSoftwareInfo: Swift.String { + public var code: Swift.String? { get } - public var activityInfo: ZTCoreKit.ZTMessageActivity? { + @objc deinit +} +extension ZTCoreKit.ZTDeviceInfo { + public var size: Swift.Int? { get - set } - public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { + public var gender: Swift.String? { get - set } - public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { +} +public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { + public var id: Swift.UInt8 { get - set } - public var actualState: ZTCoreKit.ZTDeviceActualState - public var previousState: ZTCoreKit.ZTDeviceActualState - public var hasInitialUpdate: Swift.Bool { + case generalState + case startNewActivity + case stopNewActivity + case resendData + case deepSleep + case reboot + case detailedBattery + case hardwareInformation + case firmwareInformation + case bootloaderVersion + case setInactivityTimeout + case setDFUInstall + case setDFUMode + case setChunkConfig + case setChunkMinutesInterval + case setChunkSecondsInterval + case selectAlgorithm + case freeMemory + case getTimestamp + case passthroughAlgo + case resetActivity + case getActivityMetadata + case disableHeating + case setHeating + case setTimer + case getTemperature + case getTimer + case startPostureCalibration + case setUserParameters + case resetCalibration + case getCalibrationState + case rawDataSend + case rawDataEnable + case rawDataLookup + case rawDataDebug + case calibrateStatic + case clearCalibrateStatic + case cancelCalibrateStatic + case getCalibrateStaticMessage + case getCalibrateStaticData + case testCalibrateStatic + case memsConfig + case updateTxPower + case updatePhy + case disconnect + case startDFURight + case startDFULeft + case enablePeerConnection + case factoryReset + public var description: Swift.String { get } - final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> - final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> - final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> - final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> - final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> - final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> - final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> - final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> - final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> - final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> - final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> - final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> - final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> - final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> - final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> - final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> - final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> - final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> - final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> - final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> - final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> - required public init(peripheral: CoreBluetooth.CBPeripheral) - public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) - public func connect() - public func disconnect() - @objc deinit - @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) - public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService - public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) - public func readGeneralState() -} -extension ZTCoreKit.ZTDevice { - public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool - public var isLowBattery: Swift.Bool? { - get - } -} -@_hasMissingDesignatedInitializers open class ZTServerTrustManager { - @objc deinit -} -public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case success - case busy - case invalidParam - case invalidState - case fwResForbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerResponse public init?(rawValue: Swift.UInt8) + public typealias AllCases = [ZTCoreKit.ZTCommand] + public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public static var allCases: [ZTCoreKit.ZTCommand] { get } -} -public enum DFUStreamZipError : Swift.Error { - case noManifest - case invalidManifest - case fileNotFound - case typeNotFound - public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { + public var rawValue: Swift.UInt8 { get } } -extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } +public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { + init(map: ZTCoreKit.ZTMap) throws } -@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { - get - } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() +extension ZTCoreKit.ZTImmutableMappable { + public func mapping(map: ZTCoreKit.ZTMap) + public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws +} +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType +} +extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { + final public func map(JSON: [Swift.String : Any]) throws -> N + final public func map(JSONString: Swift.String) throws -> N + final public func map(JSONObject: Any) throws -> N + final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] + final public func mapArray(JSONString: Swift.String) throws -> [N] + final public func mapArray(JSONObject: Any) throws -> [N] + final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] + final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] + final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] +} +@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTDeviceInfo { - public var project: ZTCoreKit.ZTProjectCodeType? { - get - } - public var productCode: ZTCoreKit.ZTProductCodeType? { - get - } - public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { - get - } - public var productType: ZTCoreKit.ZTProductTypeCode? { - get - } - public var hardwareVersion: Swift.Int8? { - get - } - public var boardVersion: Swift.Int8? { - get - } - public var testeur: Swift.String? { - get - } - public var sizeRaw: Swift.String? { - get - } - public var year: Swift.Int? { - get - } - public var week: Swift.Int? { +public enum ZTPeriod : Swift.String { + case day + case week + case month + case year + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public var SN: Swift.String? { +} +open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + final public let dateFormatter: Foundation.DateFormatter + public init(dateFormatter: Foundation.DateFormatter) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +final public class ZTSignal { + public typealias ZTSignalCallback = (T) -> Swift.Void + final public var fireCount: Swift.Int { get } - public var serialNumber: Swift.String - public var deviceIdentifier: Swift.String - public var macAddressRight: Swift.String? { + final public var retainLastData: Swift.Bool { get + set } - public var macAddressLeft: Swift.String? { + final public var lastDataFired: T? { get } - public var code: Swift.String? { + final public var observers: [Swift.AnyObject] { get } + public init(retainLastData: Swift.Bool = false) + @discardableResult + final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + final public func fire(_ data: T) + final public func cancelSubscription(for observer: Swift.AnyObject) + final public func cancelAllSubscriptions() + final public func clearLastData() @objc deinit } -extension ZTCoreKit.ZTDeviceInfo { - public var size: Swift.Int? { - get - } - public var gender: Swift.String? { - get - } +extension ZTCoreKit.ZTSignal where T == () { + final public func fire() } -public enum ZTProductType : Swift.String { - case sports - case warm - case safety - case podoSmart - case dfu - case ztDfu - case baliston - public var activityType: Swift.String { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { + public typealias ZTSignalCallback = (T) -> Swift.Void + public typealias ZTSignalFilter = (T) -> Swift.Bool + weak final public var observer: Swift.AnyObject? + final public var once: Swift.Bool + @discardableResult + final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription + final public func cancel() + @objc deinit +} +infix operator => : AssignmentPrecedence +public func => (signal: ZTCoreKit.ZTSignal, data: T) +public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case monitoring + case gaming + public var parameters: [Swift.UInt8] { get } -} -public enum ZTProjectCodeType : Swift.String { - case zt1 - case zt2 - case zt3 - case zt4 - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +@objc public class DFUServiceInitiator : ObjectiveC.NSObject { + @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? + @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? + @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? + @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate + @objc public var packetReceiptNotificationParameter: Swift.UInt16 + @objc public var forceDfu: Swift.Bool + @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool + @objc public var connectionTimeout: Swift.Double + @objc public var dataObjectPreparationDelay: Swift.Double + @objc public var alternativeAdvertisingNameEnabled: Swift.Bool + @objc public var alternativeAdvertisingName: Swift.String? + @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool + @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper + @objc public var disableResume: Swift.Bool + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) + @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator + @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") + @objc public func start() -> ZTCoreKit.DFUServiceController? + @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? + @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @objc deinit +} +public class ZTDateTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get + } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public enum ZTProductType : Swift.String { + case sports + case warm + case safety + case podoSmart + case dfu + case ztDfu + case baliston + public var activityType: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTProjectCodeType : Swift.String { + case zt1 + case zt2 + case zt3 + case zt4 + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } } @@ -1596,606 +1707,306 @@ public enum ZTUnitSizeCodeType : Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public enum Status : Swift.Int8, Swift.Codable { - case new - case sent - case sending - case error - public init?(rawValue: Swift.Int8) - public typealias RawValue = Swift.Int8 - public var rawValue: Swift.Int8 { - get - } - } - public enum TimestampType : Swift.UInt8, Swift.Codable { - case unknown - case start - case stop - case pause - case resume - case reboot - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +open class ZTURLTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.URL + public typealias JSON = Swift.String + public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) + open func transformFromJSON(_ value: Any?) -> Foundation.URL? + open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? + @objc deinit +} +@objc public class ZTDevice : ObjectiveC.NSObject { + public var id: Swift.String + public var peripheral: CoreBluetooth.CBPeripheral? { + get } - public enum BmTimestampType : Swift.UInt8, Swift.Codable { - case unknown - case shoeWearOn - case shoeWearOff - case walkingStart - case walkingStop - case runningStart - case runningStop - case cyclingStart - case cyclingStop - case transportStart - case transportStop - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + get } - public enum PacketType : Swift.UInt8, Swift.Codable { - case unknown - case quantification - case walkAnalysis - case runAnalysis - case stairs - case cycling - case jump - case safety - case staticActivity - case debug - case debugTelemetry - case debugProba - case bmTimestampPacket - case fwTimestampPacket - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var serialNumber: Swift.String { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Acknowledgment : Swift.CustomStringConvertible { - public var command: ZTCoreKit.ZTAlgoCommand? { - get - } - public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var name: Swift.String? { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Event : Swift.CustomStringConvertible { - public var timestamp: Swift.UInt32? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { - get - } - public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { - get - } - public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { - get - } - public var arguments: [Swift.UInt8]? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var qrCode: Swift.String? { + get } -} -public protocol ZTTransformType { - associatedtype Object - associatedtype JSON - func transformFromJSON(_ value: Any?) -> Self.Object? - func transformToJSON(_ value: Self.Object?) -> Self.JSON? -} -public enum ZTError : Swift.Equatable, Swift.Error { - case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) - case ble(type: ZTCoreKit.ZTError.Enums.BleError) - case network(type: ZTCoreKit.ZTError.Enums.NetworkError) - case store(type: ZTCoreKit.ZTError.Enums.StoreError) - case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) - case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) - case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) - case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) - @_hasMissingDesignatedInitializers public class Enums { - @objc deinit + public var rssi: Swift.Int { + get } - public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool - public var error: (any Swift.Error)? { + public var macAddressRight: Swift.String? + public var macAddressLeft: Swift.String? + public var advertisementData: [Swift.String : Any]? + public var manufacturer: Swift.String? { get } -} -extension ZTCoreKit.ZTError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var hardwareRevision: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ScanningError { - case cameraPermission - case wrongCode - case unknown - case notLinkedUser - public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + get } -} -extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var modelNumber: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum BleError { - case invalidState - case resetting - case poweredOff - case unsupported - case timeout - case unauthorized - case notConnected - case notConnectedLeft - case activityIsRunning - case busy - case dfu - case commandError - public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var uuid: Swift.String { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum FirmwareError { - case differentFirmware - case memsError - case leftNoConnected - case restartRequired - case recoverFromDfu - case minimumFwVersion - case updateRequired - case unsupported - case wrongProductType - case firstChunkIdIsGreater - case startTimeZero - public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isConnected: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DfuError { - case noLeftModule - case noUpdate - case wrongFile - case noStart - case aborted - case abortedRight - case abortedLeft - case unsupported - case lowBattery - case inProgress - case updateRequired - case wrongProductType - public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isActivityRunning: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum StoreError { - case missing(Swift.String) - case invalid(Swift.String, Any?) - case wrong(Swift.String) - case unknown - } -} -extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isDeviceReady: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ActivityError { - case notStarted - case notStartedLeft - case notStopped - case unknown - case modeNotSetActivityIsRunning - case previousNotStopped - case previousRestoring - case noUserParametersSet - case rawDataFlowIsRunning - case invalidMobilityScanResults - case outsideActivityDetected - case anomalyDetected - case mobility - public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var info: ZTCoreKit.ZTDeviceInfo? { get + set } -} -extension ZTCoreKit.ZTError.Enums { - public enum NetworkError { - case userLinkError - case inaccessible - case urlError(Foundation.URLError) - case generalError(any Swift.Error) - case noResponse - case invalidResponseType(Foundation.URLResponse) - case noResponseData(Foundation.HTTPURLResponse) - case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) - case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) - } -} -extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var batterylevel: ZTCoreKit.ZTBatteryLevel? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DecodableError { - case invalidKeyPath - case emptyKeyPath - case invalidJSON - public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var lastActivityDate: Foundation.Date { get } -} -public class ZTFirmwareRevision { - public var fwSystemVersion: Swift.String? { + public var generalState: ZTCoreKit.ZTMessageGeneralState? { get + set } - public var productType: ZTCoreKit.ZTProductCodeType? { + public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { get + set } - public var bmVersion: Swift.String? { + public var lowSoftwareInfo: Swift.String { get } - public var date: Foundation.Date? { + public var activityInfo: ZTCoreKit.ZTMessageActivity? { get + set } - public var code: Swift.String { + public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { get + set } - public var fwVersion: Swift.String { + public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { get + set } - public var versions: ZTCoreKit.ZTFwBmVersion? { + public var actualState: ZTCoreKit.ZTDeviceActualState + public var previousState: ZTCoreKit.ZTDeviceActualState + public var hasInitialUpdate: Swift.Bool { get } - public init(code: Swift.String) + final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> + final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> + final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> + final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> + final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> + final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> + final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> + final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> + final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> + final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> + final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> + final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> + final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> + final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> + final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> + final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> + final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> + final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> + final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> + final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> + final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> + required public init(peripheral: CoreBluetooth.CBPeripheral) + public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) + public func connect() + public func disconnect() @objc deinit + @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) + public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService + public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) + public func readGeneralState() } -extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool -} -public struct ZTFwBmVersion { - public var fwSystemMajorVersion: Swift.Int - public var fwSystemMinorVersion: Swift.Int - public var fwSystemBuildVersion: Swift.Int - public var bmMajorVersion: Swift.Int - public var bmMinorVersion: Swift.Int -} -extension ZTCoreKit.ZTFirmwareRevision { - public var fwSystemMajorVersion: Swift.Int { - get - } - public var fwSystemMinorVersion: Swift.Int { - get - } - public var fwSystemBuildVersion: Swift.Int { - get - } - public var bmMajorVersion: Swift.Int { - get - } - public var bmMinorVersion: Swift.Int { +extension ZTCoreKit.ZTDevice { + public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool + public var isLowBattery: Swift.Bool? { get } } -public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { - public enum Mode : Swift.UInt8 { - case manual - case automatic - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public var byte0: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } - public var byte1: Swift.UInt8? { - get - } - public var byte2: Swift.UInt8? { - get - } - public var byte3: Swift.UInt8? { - get - } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension ZTCoreKit.ZTMessageChunkData { +infix operator <<- : DefaultPrecedence +infix operator ->> : DefaultPrecedence +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) +public func ->> (left: T, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) +public func ->> (left: T?, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) public var side: ZTCoreKit.ZTModuleSide { get } - public var mode: ZTCoreKit.ZTMessageChunkData.Mode { - get - } - public var length: Swift.UInt8 { + public var baseMajor: Swift.UInt8 { get } - public var payload: Foundation.Data? { + public var baseMinor: Swift.UInt8 { get } - public var description: Swift.String { + public var baseBuild: Swift.UInt16 { get } -} -@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - public var stringValue: Swift.String? { + public var app: Swift.String { get } - @objc deinit -} -open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.NSDecimalNumber - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? - open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? - @objc deinit -} -public enum ZTLogLevel : Swift.String { - case all - case debug - case info - case error - case fatal - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var appMajor: Swift.UInt8 { get } -} -extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { - public var description: Swift.String { + public var appMinor: Swift.UInt8 { get } -} -public enum ZTLogCategory : Swift.String { - case networkAgent - case modules - case sdk - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var version: Swift.String { get } -} -extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case status - case acknowledgment - case realTimeEvent - case realTimeMetrics - case warning - case error - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } -} -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -@_hasMissingDesignatedInitializers public class ZTLogger { - public static let instance: ZTCoreKit.ZTLogger + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTLogger { - public func ztDebugPrint(_ message: Swift.String) - public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func print(_ value: @autoclosure () -> Any) +public protocol ZTActivityCachable : CoreData.NSManagedObject { + var id: Swift.String { get set } + var packets: Foundation.NSMutableOrderedSet? { get set } + var startDate: Foundation.Date? { get set } + #if compiler(>=5.3) && $AsyncAwait + func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif } -public struct ZTLoggerLine : Swift.Codable { - public static let notification: Foundation.Notification.Name - public static let ble: Foundation.Notification.Name - public var date: Foundation.Date - public let message: Swift.String - public let level: Swift.String - public let category: Swift.String - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws +extension ZTCoreKit.ZTActivityCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool } -@_hasMissingDesignatedInitializers open class ZTNetworkReachabilityManager { - open var isReachable: Swift.Bool { - get - } - open var isReachableOnCellular: Swift.Bool { - get - } - open var isReachableOnEthernetOrWiFi: Swift.Bool { - get - } - open var flags: SystemConfiguration.SCNetworkReachabilityFlags? { +@objc public enum LogLevel : Swift.Int { + case debug = 0 + case verbose = 1 + case info = 5 + case application = 10 + case warning = 15 + case error = 20 + public func name() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - @objc deinit } -public enum ZTNotifyData { - public enum GroupID : Swift.UInt8 { - case common - case warm - case running - case cycling - case safety - case generic - public var description: Swift.String { +@objc public protocol LoggerDelegate { + @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Metrics : Swift.CustomStringConvertible { + public var activityType: ZTCoreKit.ZTActivityType? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var metricId: Swift.UInt8? { get } - } - public enum CommonMessageId : Swift.UInt8 { - case MSG_GENERAL_STATES - case MSG_BATTERY_LEVEL - case MSG_MEMS - case MSG_FLASH - case MSG_TIME - case MSG_HARDWARE - case MSG_SOFTWARE - case MSG_ACTIVITY_INFO - case MSG_ACTIVITY_METADATA - case MSG_RAWDATA_HEADER - case MSG_RAWDATA_FRAME - case MSG_BTLOADER_INFO - case MSG_INACTIVITY_TIMEOUT - case MSG_CHUNK_SEND_STATUS - case MSG_CHUNK_DATA - case MSG_CHUNK_CONFIG - case MSG_DEBUG - public var description: Swift.String { + public var metric: ZTCoreKit.ZTRealtimeMetric? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var value: [Swift.UInt8]? { get } - } -} -extension ZTCoreKit.ZTNotifyData { - public enum WarmMessageId : Swift.UInt8 { - case MSG_HEATING_TEMP_1 - case MSG_HEATING_TEMP_2 - case MSG_HEATING_STEP_R_CNT - case MSG_HEATING_STEP_L_CNT - case MSG_HEATING_SETPOINT_R - case MSG_HEATING_SETPOINT_L - case MSG_GET_HEAT_TIMER - case MSG_HEATING_DEBUG_R - case MSG_HEATING_DEBUG_L - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -extension ZTCoreKit.ZTNotifyData { - public enum RunningMessageId : Swift.UInt8 { - case UNKNOWN +extension ZTCoreKit.ZTRealtimeMessage.Event { + public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case motion + case transition public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum CyclingMessageId : Swift.UInt8 { - case MSG_CADENCE + public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case stepForward + case stepBackward + case stepSideLeft + case stepSideRight + case stepUp + case stepDown public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum SafetyMessageId : Swift.UInt8 { - case MSG_CALIBRATION_SAFETY - case MSG_ALGO_RT_EVENT + public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case low + case medium + case high public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { @@ -2203,38 +2014,213 @@ extension ZTCoreKit.ZTNotifyData { } } } -extension ZTCoreKit.ZTNotifyData { - public enum GenericMessageId : Swift.UInt8 { - case MSG_ALGO_RT_EVENT - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public enum ZTMappingType { + case fromJSON + case toJSON + public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public func map(JSONObject: Any?, toObject object: N) -> N + final public func map(JSONString: Swift.String, toObject object: N) -> N + final public func map(JSON: [Swift.String : Any], toObject object: N) -> N + final public func map(JSONString: Swift.String) -> N? + final public func map(JSONObject: Any?) -> N? + final public func map(JSON: [Swift.String : Any]) -> N? + final public func mapArray(JSONString: Swift.String) -> [N]? + final public func mapArray(JSONObject: Any?) -> [N]? + final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] + final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? + final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? + public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? + public static func parseJSONString(JSONString: Swift.String) -> Any? + @objc deinit +} +extension ZTCoreKit.ZTMapper { + final public func map(JSONfile: Swift.String) -> N? + final public func mapArray(JSONfile: Swift.String) -> [N]? +} +extension ZTCoreKit.ZTMapper { + final public func toJSON(_ object: N) -> [Swift.String : Any] + final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] + final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] + final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] + final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? + final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? + public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? + public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? +} +extension ZTCoreKit.ZTMapper where N : Swift.Hashable { + final public func mapSet(JSONString: Swift.String) -> Swift.Set? + final public func mapSet(JSONObject: Any?) -> Swift.Set? + final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set + final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] + final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? +} +public enum ZTLoggerComponent : Swift.String { + case api + case app + case sdk + case firmware + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTLoggerSeverity : Swift.String { + case debug + case error + case info + case warn + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTDfuPackageType : Swift.String { + case APP + case BL + case SD + case SD_BL + case SD_BL_APP + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { + get + } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + @objc deinit +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Event : Swift.CustomStringConvertible { + public var timestamp: Swift.UInt32? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { + get + } + public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { + get + } + public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { + get + } + public var arguments: [Swift.UInt8]? { + get + } + public var description: Swift.String { + get } + public init(data: Foundation.Data) } } -public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { - case activityNone - case activityStarting - case eraseMemory - case activityRunning - case activityPaused - case activityStopping - case activityPendData - case activitySendData - case unknown +public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { + public enum Mode : Swift.UInt8 { + case manual + case automatic + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var byte0: Swift.UInt8? { + get + } + public var byte1: Swift.UInt8? { + get + } + public var byte2: Swift.UInt8? { + get + } + public var byte3: Swift.UInt8? { + get + } + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkData { + public var side: ZTCoreKit.ZTModuleSide { + get + } + public var mode: ZTCoreKit.ZTMessageChunkData.Mode { + get + } + public var length: Swift.UInt8 { + get + } + public var payload: Foundation.Data? { + get + } public var description: Swift.String { get } +} +public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case timestamp + case modeId + case precisionMode + case numberOfSteps public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } +public enum ZTLogLevel : Swift.String { + case all + case debug + case info + case error + case fatal + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +public enum ZTLogCategory : Swift.String { + case networkAgent + case modules + case sdk + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType where Key : Swift.Hashable, Key : Swift.RawRepresentable, Value : ZTCoreKit.ZTMappable, Key.RawValue == Swift.String { public init() public func transformFromJSON(_ value: Any?) -> [Key : Value]? @@ -2242,494 +2228,367 @@ public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType wher public typealias JSON = Any public typealias Object = [Key : Value] } -public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void -public enum ZTScannerResult { - case success(device: ZTCoreKit.ZTDevice) - case cancelled - case failed((any Swift.Error)?) -} -@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var side: ZTCoreKit.ZTModuleSide { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { + public var bootloaderVersion: Swift.UInt8 { get } - open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { + public var appSupportVersion: Swift.UInt8 { get } - open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { + public var softDeviceId: Swift.UInt8 { get } - open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { + public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { get } - open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { + public var description: Swift.String { get } - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + public enum DfuState : Swift.UInt8 { + case none + case inProgress + case received + case readyForCopy + case activation + case done + case error + case validationError + case activationError + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTServices { - public enum Primary { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - case test - public var uid: Swift.String { - get - } - public var uuid: CoreBluetooth.CBUUID { - get - } - public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +extension ZTCoreKit.ZTCore { + final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) + final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +} +public struct ZTMessageTime : Swift.CustomStringConvertible { + public var timestamp: Swift.Int64 + public var side: ZTCoreKit.ZTModuleSide + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { + get + } +} +public enum ZTNotifyData { + public enum GroupID : Swift.UInt8 { + case common + case warm + case running + case cycling + case safety + case generic + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum PrimaryOld { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public enum CommonMessageId : Swift.UInt8 { + case MSG_GENERAL_STATES + case MSG_BATTERY_LEVEL + case MSG_MEMS + case MSG_FLASH + case MSG_TIME + case MSG_HARDWARE + case MSG_SOFTWARE + case MSG_ACTIVITY_INFO + case MSG_ACTIVITY_METADATA + case MSG_RAWDATA_HEADER + case MSG_RAWDATA_FRAME + case MSG_BTLOADER_INFO + case MSG_INACTIVITY_TIMEOUT + case MSG_CHUNK_SEND_STATUS + case MSG_CHUNK_DATA + case MSG_CHUNK_CONFIG + case MSG_DEBUG + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceInformation { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case manufacturerName - case modelNumber - case serialNumber - case firmwareRevision - case hardwareRevision - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum WarmMessageId : Swift.UInt8 { + case MSG_HEATING_TEMP_1 + case MSG_HEATING_TEMP_2 + case MSG_HEATING_STEP_R_CNT + case MSG_HEATING_STEP_L_CNT + case MSG_HEATING_SETPOINT_R + case MSG_HEATING_SETPOINT_L + case MSG_GET_HEAT_TIMER + case MSG_HEATING_DEBUG_R + case MSG_HEATING_DEBUG_L + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceDFU { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case dfuControlPoint - case dfuPacket - case dfuButtonless - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum RunningMessageId : Swift.UInt8 { + case UNKNOWN + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } } -public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { - case staticType - case dynamic +extension ZTCoreKit.ZTNotifyData { + public enum CyclingMessageId : Swift.UInt8 { + case MSG_CADENCE + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum SafetyMessageId : Swift.UInt8 { + case MSG_CALIBRATION_SAFETY + case MSG_ALGO_RT_EVENT + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum GenericMessageId : Swift.UInt8 { + case MSG_ALGO_RT_EVENT + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { + case activityNone + case activityStarting + case eraseMemory + case activityRunning + case activityPaused + case activityStopping + case activityPendData + case activitySendData + case unknown + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined case walking case running - case cycling + case pedaling case jump case stairsUp case stairsDown - case staticOther - case kneel + case standing + case sitting + case kneeling case tiptoe case vibration - case trampling - case crawling - case dynamicOther case slip - case trip - case active - case inactive + case incident + case freewheel public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -open class ZTTransformOf : ZTCoreKit.ZTTransformType { - public typealias Object = ObjectType - public typealias JSON = JSONType - public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) - open func transformFromJSON(_ value: Any?) -> ObjectType? - open func transformToJSON(_ value: ObjectType?) -> JSONType? - @objc deinit +public protocol ZTDfuDelegate : AnyObject { + func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) + func dfuDelegate(didFinish: Swift.Bool) + func dfuDelegate(didFail error: ZTCoreKit.ZTError?) + func dfuDelegate(progress: Swift.Float?) + func dfuDelegate(leftDidFinish newVersion: Swift.String?) + func dfuDelegate(rightDidFinish newVersion: Swift.String?) } -@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { - @objc open var softdevice: Swift.UInt32 { +public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var isRight: Swift.Bool { get } - @objc open var bootloader: Swift.UInt32 { + public var isLeft: Swift.Bool { get } - @objc open var application: Swift.UInt32 { + public var selectedMode: ZTCoreKit.ZTActivityMode? { get } - @objc deinit -} -public enum ZTActivityMode : Swift.UInt8, Swift.Codable { - case safety - case walking - case running - case cycling - case mobility - public var name: Swift.String { + public var timeInterval: Swift.Int? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case defaultMode - case economicMode - case performanceMode - public var parameters: [Swift.UInt8] { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public class ZTUserShoe : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var code: Swift.String? + public var attributes: [Swift.String : Any]? + public var firmware: ZTCoreKit.ZTUserShoe.Firmware? + public var organizationId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + public class Firmware : ZTCoreKit.ZTMappable { + public var type: Swift.String? + public var arch: Swift.String? + public var version: Swift.String? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -} -@_hasMissingDesignatedInitializers open class Adapter { - @objc deinit -} -@_hasMissingDesignatedInitializers open class Retrier { @objc deinit } -@_hasMissingDesignatedInitializers open class Interceptor { - @objc deinit -} -extension ZTCoreKit.ZTCore { - final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) - final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) - final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) -} extension Foundation.Data { - public var hexString: Swift.String { - get - } -} -public protocol DataConvertible { - static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - public static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension Swift.UInt8 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt16 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt32 : ZTCoreKit.DataConvertible { -} -extension Swift.Int : ZTCoreKit.DataConvertible { -} -extension Swift.Float : ZTCoreKit.DataConvertible { -} -extension Swift.Double : ZTCoreKit.DataConvertible { -} -extension Swift.String : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data -} -extension Foundation.Data : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data -} -public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { - init(map: ZTCoreKit.ZTMap) throws -} -extension ZTCoreKit.ZTImmutableMappable { - public func mapping(map: ZTCoreKit.ZTMap) - public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws -} -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType -} -extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { - final public func map(JSON: [Swift.String : Any]) throws -> N - final public func map(JSONString: Swift.String) throws -> N - final public func map(JSONObject: Any) throws -> N - final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] - final public func mapArray(JSONString: Swift.String) throws -> [N] - final public func mapArray(JSONObject: Any) throws -> [N] - final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] - final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] - final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] -} -@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { + public func macAddress() -> Swift.String? + public var bytes: [Swift.UInt8] { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@objc public enum DFUUuidType : Swift.Int { - case legacyService = 0 - case legacyControlPoint = 1 - case legacyPacket = 2 - case legacyVersion = 3 - case secureService = 4 - case secureControl = 5 - case securePacket = 6 - case buttonlessService = 7 - case buttonlessCharacteristic = 8 - case buttonlessWithoutBondSharing = 9 - case buttonlessWithBondSharing = 10 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexDescription: Swift.String { get } + public init?(hex: Swift.String) + public func getUInt(offset: Swift.Int) -> Swift.UInt16 + public func getUInt32(offset: Swift.Int) -> Swift.UInt32 + public func getFloat(offset: Swift.Int) -> Swift.Float + public func getByte(at index: Swift.Int) -> Swift.Int8 + public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 + public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 + public mutating func append(byte data: Swift.Int8) + public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) + public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -@objc public class DFUUuid : ObjectiveC.NSObject { - @objc final public let uuid: CoreBluetooth.CBUUID - @objc final public let type: ZTCoreKit.DFUUuidType - @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) - @objc deinit +extension Foundation.Data { + public func dataObject(at index: Foundation.Data.Index = 0) -> T + public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int + public func object(at offset: Swift.Int) -> T } -@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { - @objc public var legacyDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { +extension Swift.Numeric { + public var data: Foundation.Data { get } - @objc override dynamic public init() - @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) - @objc deinit } -public class ZTUser : ZTCoreKit.ZTMappable { - public var attributes: [Swift.String : Any] - public var id: Swift.String? - public var organizationId: Swift.String? - public var appId: Swift.String? - public var createdAt: Swift.String? - public var updatedAt: Swift.String? - public var userId: Swift.String? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public class ZTAchievement : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var type: Swift.String? - public var activityId: Swift.String? - public var code: Swift.String? - public var appuserId: Swift.String? - public var data: [Swift.String : Any]? - public var duration: Swift.Int64? - public var calories: Swift.Double? - public var createdAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { - final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) - final public func updateFirmware(path: Swift.String) - @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) - @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) - @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) - @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) - final public func checkDfuState() -} -@_hasMissingDesignatedInitializers open class ZTWebSocket { - @objc deinit -} -open class ZTActivity : Swift.Codable { - public var id: Swift.String { +public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { + case jump + case run + case walk + public var parameters: [Swift.UInt8] { get - set } - public var activityIdentifier: Swift.String - public var appId: Swift.String? - public var activityType: Swift.String - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var startTimestamp: Swift.Int64? - public var endTimestamp: Swift.Int64? - public var tz: Swift.String? - public var status: Swift.String? - public var state: ZTCoreKit.ZTDeviceActualState { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } - public var packetsIds: [Swift.UInt16] - public var cachedPackets: [ZTCoreKit.ZTSegmentData] - public var metaData: ZTCoreKit.ZTMessageActivityMetadata? - public var stopReason: ZTCoreKit.ZTActivityLastStopReason? - public var isRawDataMode: Swift.Bool - public var isAutomatic: Swift.Bool - public var forceStop: Swift.Bool - public var isInterrupted: Swift.Bool - public var firstChunkId: Swift.UInt16? - public var lastChunkId: Swift.UInt16? - public var chunkCount: Swift.UInt16? - public var anchorTimestamp: Swift.Int64? - public var customActivityStartTimestamp: Swift.Int64? - public var customActivityFirstChunkId: Swift.UInt16? - public var fwVersion: Swift.String? - public var shoesSerial: Swift.String? - public init() - open func save() - public func loadAll(firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public func lastSavedChunkId(startId: Swift.UInt16? = 0, lastId: Swift.UInt16? = 0) -> Swift.UInt16 - public func addToCache(_ segment: ZTCoreKit.ZTSegmentData) - public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) - public func saveCachedPackets() - @objc deinit - open func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTActivity { - public var duration: Swift.Double { +public enum ZTEnvironment { + case dev + case staging + case production + case zcdev + case zcstaging + case zcproduction + public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -public protocol ZTDfuDelegate : AnyObject { - func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) - func dfuDelegate(didFinish: Swift.Bool) - func dfuDelegate(didFail error: ZTCoreKit.ZTError?) - func dfuDelegate(progress: Swift.Float?) - func dfuDelegate(leftDidFinish newVersion: Swift.String?) - func dfuDelegate(rightDidFinish newVersion: Swift.String?) -} -@objc public class DFUServiceInitiator : ObjectiveC.NSObject { - @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? - @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? - @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? - @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate - @objc public var packetReceiptNotificationParameter: Swift.UInt16 - @objc public var forceDfu: Swift.Bool - @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool - @objc public var connectionTimeout: Swift.Double - @objc public var dataObjectPreparationDelay: Swift.Double - @objc public var alternativeAdvertisingNameEnabled: Swift.Bool - @objc public var alternativeAdvertisingName: Swift.String? - @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool - @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper - @objc public var disableResume: Swift.Bool - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) - @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator - @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") - @objc public func start() -> ZTCoreKit.DFUServiceController? - @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? - @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @objc deinit -} -public protocol ZTPlistStorage { - static var plist: ZTCoreKit.ZTPlist { get } -} -public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var right: Swift.UInt8 - public var left: Swift.UInt8 - public var min: Swift.UInt8 { - get - } - public var description: Swift.String { +public enum ZTModuleSide : Swift.String, Swift.Codable { + case left + case right + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public init() - public init(data: Foundation.Data) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } +public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable +public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable @objc public enum DFUError : Swift.Int { case remoteLegacyDFUSuccess = 1 case remoteLegacyDFUInvalidState = 2 @@ -2818,369 +2677,186 @@ extension ZTCoreKit.DFUState : Swift.CustomStringConvertible { @objc func dfuStateDidChange(to state: ZTCoreKit.DFUState) @objc func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) } -public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var baseMajor: Swift.UInt8 { - get - } - public var baseMinor: Swift.UInt8 { - get - } - public var baseBuild: Swift.UInt16 { - get - } - public var app: Swift.String { - get - } - public var appMajor: Swift.UInt8 { - get - } - public var appMinor: Swift.UInt8 { - get - } - public var version: Swift.String { - get - } - public var description: Swift.String { - get - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTPlist { - public func encrypt(_ rawValue: Any?) -> Foundation.Data? - public func decrypt(_ data: Foundation.Data?) -> Foundation.Data? - public func decryptedDictionary(decryptedData rawValue: Any?) -> [Swift.String : Any]? - public func decryptedCollection(decryptedData rawValue: Any?) -> [Any]? - public func decryptedString(decryptedData rawValue: Any?) -> Swift.String? - public func decryptedBool(decryptedData rawValue: Any?) -> Swift.Bool? - public func decryptedInt(decryptedData rawValue: Any?) -> Swift.Int? - public func decryptedFloat(decryptedData rawValue: Any?) -> Swift.Float? - public func decryptedDouble(decryptedData rawValue: Any?) -> Swift.Double? - public func decryptedDate(decryptedData rawValue: Any?) -> Foundation.Date? -} -open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { - public typealias Object = UIKit.UIColor - public typealias JSON = Swift.String - public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? - open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? - @objc deinit -} -public class ZTActivityComment : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var timeZone: Swift.String? - public var timestamp: Foundation.Date? - public var text: Swift.String? - public var activityId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - public var mediaFiles: [ZTCoreKit.ZTMediaFile]? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTSegmentData : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var id: Swift.UInt16 - public var activityId: Swift.String? - public var activityType: ZTCoreKit.ZTActivityMode? - public var timestamp: Swift.Int64? - public var duration: Swift.Int? - public var status: ZTCoreKit.ZTSegmentData.Status - public var timestampType: ZTCoreKit.ZTSegmentData.TimestampType - public var bmTimestampType: ZTCoreKit.ZTSegmentData.BmTimestampType - public var packetType: ZTCoreKit.ZTSegmentData.PacketType - public var originalTimestamp: Swift.Int64 - public var packetsNumber: Swift.UInt8 - public var rawDescription: Swift.String { - get - } - public var fwVersion: Swift.String? - public var retryCount: Swift.Int - public enum CodingKeys : Swift.CodingKey { - case id - case activityId - case rawData - case timestamp - case duration - case status - case packetType - case timestampType - case originalTimestamp - case packetsNumber - case fwVersion - case retryCount - public static func == (a: ZTCoreKit.ZTSegmentData.CodingKeys, b: ZTCoreKit.ZTSegmentData.CodingKeys) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public init?(stringValue: Swift.String) - public init?(intValue: Swift.Int) - public var hashValue: Swift.Int { - get - } - public var intValue: Swift.Int? { - get - } - public var stringValue: Swift.String { +public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { + public enum Status : Swift.UInt8 { + case success + case errorOutOfRange + case errorSendFailed + case errorUnexpected + case errorNotFound + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } - public init(data: Foundation.Data) - public init(data: Foundation.Data, activityId: Swift.String, fwversion: Swift.String? = nil) - required public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws - @objc deinit -} -extension ZTCoreKit.ZTSegmentData { - public static func lastSegmentId(activityId: Swift.String) -> Swift.Int - public static func segmentsCount(activityId: Swift.String) -> Swift.Int - public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, startId: Swift.UInt16) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllPackets(activityId: Swift.String, startId: Swift.UInt16? = nil, lastId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.Int] - public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16] - public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.UInt16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTSegmentData? - public static func loadPacket(activityId: Swift.String?, id: Swift.UInt16) -> ZTCoreKit.ZTSegmentData? - public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> ZTCoreKit.ZTSegmentData? - public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTSegmentData - public static func loadAll(activityId: Swift.String, lastChunkId: Swift.UInt16?) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func clear(activityId: Swift.String?) - public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.UInt16? - public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMissedPackets(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16]? - public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.UInt16, lastId: Swift.UInt16?) -> Swift.UInt16? - public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.UInt16, anchorTime: Swift.Int64?) -} -extension ZTCoreKit.ZTSegmentData { - public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool - public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.UInt16?, endIndex: Swift.UInt16?) -> Swift.Bool - public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.UInt16) - public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.UInt16) -> Swift.Bool - public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> Swift.Bool - public static func isSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16?, endId: Swift.UInt16?) -> Swift.Bool - public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.UInt16) -> Swift.Bool -} -extension ZTCoreKit.ZTSegmentData : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTSegmentData, rhs: ZTCoreKit.ZTSegmentData) -> Swift.Bool -} -public enum ZTActivitySummaryStatus : Swift.String { - case started - case complete - case processing - case errored - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public let bytes: [Swift.UInt8] + public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? + public var chunkId: Swift.UInt16? + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } } -open class ZTActivitySummary : ZTCoreKit.ZTMappable { - public var id: Swift.String - public var activityType: Swift.String - public var activityIdentifier: Swift.String - public var start: Swift.String? - public var end: Swift.String? - public var duration: Swift.Int? - public var tz: Swift.String? - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var status: ZTCoreKit.ZTActivitySummaryStatus? - required public init?(map: ZTCoreKit.ZTMap) - open func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - final public let dateFormatter: Foundation.DateFormatter - public init(dateFormatter: Foundation.DateFormatter) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? +open class ZTTransformOf : ZTCoreKit.ZTTransformType { + public typealias Object = ObjectType + public typealias JSON = JSONType + public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) + open func transformFromJSON(_ value: Any?) -> ObjectType? + open func transformToJSON(_ value: ObjectType?) -> JSONType? @objc deinit } -@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { - final public var advertisingServices: [CoreBluetooth.CBUUID]? - final public var managerState: ZTCoreKit.ZTBleManagerState { +open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { + public typealias Object = T + public typealias JSON = T.RawValue + public init() + open func transformFromJSON(_ value: Any?) -> T? + open func transformToJSON(_ value: T?) -> T.RawValue? + @objc deinit +} +extension Foundation.UserDefaults { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { get set } - final public class var instance: ZTCoreKit.ZTBleManager { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { get + set } - final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { get + set } - final public var macAddress: Swift.String? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { get + set } - final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? - final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { get + set } - final public var product: ZTCoreKit.ZTProductType? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { get set } - final public var connectedDevice: ZTCoreKit.ZTDevice? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { get + set } - final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { get + set } - final public var scanning: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { get + set } - final public var isDfuMode: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { get + set } - final public let onBluetoothStateChange: ZTCoreKit.ZTSignal - final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onDeviceDiscovered: ZTCoreKit.ZTSignal - final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - @objc deinit + public subscript(key: Swift.String) -> Any? { + get + set(value) + } + public func value(forKey key: Swift.String) -> T? + public func clear(_ key: Swift.String) + public func clear(_ key: ZTCoreKit.ZTDefaultsKey) + public func clearAll() } -extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +extension Foundation.DateFormatter { + convenience public init(withFormat format: Swift.String, locale: Swift.String) } -public enum ZTAlgoCommand : Swift.UInt8 { - case getStatus - case startNewChunk - case changeProductMode - case setPrecisionMode - case setMinimumNumberOfStrides - case enableStreamingOfValues - case setDisconnectionDelay - case setUserInfo - case setDailyTimestamp - case getPositionOfPods - case enableSpecificPacket - case holdRealtimeStreaming - case getSingleTimeMetrics - case calibrateGravity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { + public init() + @objc deinit +} +public enum ZTDFUState : Swift.Int { + case started + case startedLeft + case completedLeft + case startedRight + case completedRight + case completed + case error + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } } -public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case monitoring - case gaming - public var parameters: [Swift.UInt8] { +public class ZTFirmwareRevision { + public var fwSystemVersion: Swift.String? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var productType: ZTCoreKit.ZTProductCodeType? { get } -} -public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var isRight: Swift.Bool { + public var bmVersion: Swift.String? { get } - public var isLeft: Swift.Bool { + public var date: Foundation.Date? { get } - public var selectedMode: ZTCoreKit.ZTActivityMode? { + public var code: Swift.String { get } - public var timeInterval: Swift.Int? { + public var fwVersion: Swift.String { get } - public var description: Swift.String { + public var versions: ZTCoreKit.ZTFwBmVersion? { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + public init(code: Swift.String) + @objc deinit } -public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { - case jump - case run - case walk - public var parameters: [Swift.UInt8] { +extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool +} +public struct ZTFwBmVersion { + public var fwSystemMajorVersion: Swift.Int + public var fwSystemMinorVersion: Swift.Int + public var fwSystemBuildVersion: Swift.Int + public var bmMajorVersion: Swift.Int + public var bmMinorVersion: Swift.Int +} +extension ZTCoreKit.ZTFirmwareRevision { + public var fwSystemMajorVersion: Swift.Int { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var fwSystemMinorVersion: Swift.Int { get } -} -public enum ZTDFUState : Swift.Int { - case started - case startedLeft - case completedLeft - case startedRight - case completedRight - case completed - case error - public var description: Swift.String { + public var fwSystemBuildVersion: Swift.Int { get } - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var bmMajorVersion: Swift.Int { + get + } + public var bmMinorVersion: Swift.Int { get } } -extension ZTCoreKit.ZTCore { - final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) - final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +@_hasMissingDesignatedInitializers public class ZTCoreDataStack { + public static let shared: ZTCoreKit.ZTCoreDataStack + public var context: CoreData.NSManagedObjectContext { + get + set + } + public func oneTimeBackgroundContext() -> CoreData.NSManagedObjectContext + public func saveOneTimeBackgroundContext(_ oneTimeBackgroundContext: CoreData.NSManagedObjectContext) throws + public func saveContext() throws + @objc deinit +} +public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { + var rawData: Foundation.Data? { get set } } -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable public class ZTMediaFile : ZTCoreKit.ZTMappable { public var id: Swift.String? public var name: Swift.String? @@ -3195,537 +2871,583 @@ public class ZTMediaFile : ZTCoreKit.ZTMappable { public func mapping(map: ZTCoreKit.ZTMap) @objc deinit } -public protocol ZTMapContext { -} -final public class ZTMap { - final public let mappingType: ZTCoreKit.ZTMappingType - final public var JSON: [Swift.String : Any] { +@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } - final public var isKeyPresent: Swift.Bool { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { + public typealias Object = T + public typealias JSON = Any + public init() + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? + open func transformToJSON(_ value: T?) -> Any? + @objc deinit +} +public protocol ZTTransformType { + associatedtype Object + associatedtype JSON + func transformFromJSON(_ value: Any?) -> Self.Object? + func transformToJSON(_ value: Self.Object?) -> Self.JSON? +} +open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.NSDecimalNumber + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? + open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? + @objc deinit +} +@objc public enum DFUUuidType : Swift.Int { + case legacyService = 0 + case legacyControlPoint = 1 + case legacyPacket = 2 + case legacyVersion = 3 + case secureService = 4 + case secureControl = 5 + case securePacket = 6 + case buttonlessService = 7 + case buttonlessCharacteristic = 8 + case buttonlessWithoutBondSharing = 9 + case buttonlessWithBondSharing = 10 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - final public var currentValue: Any? { +} +@objc public class DFUUuid : ObjectiveC.NSObject { + @objc final public let uuid: CoreBluetooth.CBUUID + @objc final public let type: ZTCoreKit.DFUUuidType + @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { + @objc public var legacyDFUService: CoreBluetooth.CBUUID { get } - final public var currentKey: Swift.String? { + @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { get } - final public var nestedKeyDelimiter: Swift.String { + @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { get } - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - final public let toObject: Swift.Bool - public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUPacket: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { get } - final public func value() -> T? + @objc override dynamic public init() + @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) @objc deinit } -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, default: T) throws -> T - final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +@_hasMissingDesignatedInitializers public class ZTLogger { + public static let instance: ZTCoreKit.ZTLogger + @objc deinit } -public struct ZTEntry : Swift.Equatable { - public enum EntryType : Swift.Int { - case file - case directory - case symlink - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } - } - public func path(using encoding: Swift.String.Encoding) -> Swift.String - public var path: Swift.String { - get - } - public var fileAttributes: [Foundation.FileAttributeKey : Any] { - get - } - public var checksum: ZTCoreKit.CRC32 { - get - } - public var type: ZTCoreKit.ZTEntry.EntryType { - get - } - public var compressedSize: Swift.Int { - get - } - public var uncompressedSize: Swift.Int { - get - } - public static func == (lhs: ZTCoreKit.ZTEntry, rhs: ZTCoreKit.ZTEntry) -> Swift.Bool +extension ZTCoreKit.ZTLogger { + public func ztDebugPrint(_ message: Swift.String) + public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) } -@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { - public var name: Swift.String - public var description: Swift.String? - public var mimeType: Swift.String? - public var key: Swift.String? - public var url: Swift.String? - public var data: Foundation.Data? - convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) - required convenience public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit +public struct ZTLoggerLine : Swift.Codable { + public static let notification: Foundation.Notification.Name + public static let ble: Foundation.Notification.Name + public var date: Foundation.Date + public let message: Swift.String + public let level: Swift.String + public let category: Swift.String + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@objc public protocol DFUPeripheralSelectorDelegate { + @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool + @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? } -@propertyWrapper public struct ZTPlisted { - public let key: Swift.String - public let plist: ZTCoreKit.ZTPlist - public let defaultValue: Value - public init(key: Swift.String, plist: ZTCoreKit.ZTPlist, defaultValue: Value) - public var wrappedValue: Value { +public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case success + case busy + case invalidParam + case invalidState + case fwResForbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerResponse + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } } -public struct ZTMapError : Swift.Error { - public var key: Swift.String? - public var currentValue: Any? - public var reason: Swift.String? - public var file: Swift.StaticString? - public var function: Swift.StaticString? - public var line: Swift.UInt? - public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) -} -extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { - public var description: Swift.String { +public enum ZTActivityMode : Swift.UInt8, Swift.Codable { + case safety + case walking + case running + case cycling + case mobility + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -public enum ZTPeriod : Swift.String { - case day - case week - case month - case year +public enum ZTActivitySummaryStatus : Swift.String { + case started + case complete + case processing + case errored public init?(rawValue: Swift.String) public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public func save() - public func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool - public static func forceSegmentsUpload(activityId: Swift.String) - public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTSegmentData) -} -extension Foundation.FileManager { - public func zipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, shouldKeepParent: Swift.Bool = true, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, progress: Foundation.Progress? = nil) throws - public func unzipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, preferredEncoding: Swift.String.Encoding? = nil) throws +open class ZTActivitySummary : ZTCoreKit.ZTMappable { + public var id: Swift.String + public var activityType: Swift.String + public var activityIdentifier: Swift.String + public var start: Swift.String? + public var end: Swift.String? + public var duration: Swift.Int? + public var tz: Swift.String? + public var startDate: Foundation.Date? + public var endDate: Foundation.Date? + public var status: ZTCoreKit.ZTActivitySummaryStatus? + required public init?(map: ZTCoreKit.ZTMap) + open func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Foundation.URL { - public func isContained(in parentDirectoryURL: Foundation.URL) -> Swift.Bool +public protocol ZTCBPeripheralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBPeripheralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + var isAdvertising: Swift.Bool { get } + func startAdvertising(_ advertisementData: [Swift.String : Any]?) + func stopAdvertising() + func setDesiredConnectionLatency(_ latency: CoreBluetooth.CBPeripheralManagerConnectionLatency, for central: CoreBluetooth.CBCentral) + func add(_ service: CoreBluetooth.CBMutableService) + func remove(_ service: CoreBluetooth.CBMutableService) + func removeAllServices() + func respond(to request: CoreBluetooth.CBATTRequest, withResult result: CoreBluetooth.CBATTError.Code) + func updateValue(_ value: Foundation.Data, for characteristic: CoreBluetooth.CBMutableCharacteristic, onSubscribedCentrals centrals: [CoreBluetooth.CBCentral]?) -> Swift.Bool +} +extension CoreBluetooth.CBPeripheralManager : ZTCoreKit.ZTCBPeripheralManagerProtocol { } -public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { - get - } - public var byte1: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var byte2: Swift.UInt8? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { + public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason + public var chunkCount: Swift.Int16 + public var firstChunkId: Swift.Int16 + public var lastChunkId: Swift.Int16 { get } - public var byte3: Swift.UInt8? { + public var startTime: Swift.UInt32 + public var endTime: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } - public init(bytes: [Swift.UInt8]) public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageGeneralState { - public var activityStartedRight: Swift.Bool { +open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { + public typealias Object = UIKit.UIColor + public typealias JSON = Swift.String + public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? + open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? + @objc deinit +} +public class ZTReachability { + public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter + public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { get + set } - public var activityStartedLeft: Swift.Bool { - get + public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? + public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? + public var managerStarted: Swift.Bool + public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { + case all, wifi, cellular, wiredEthernet, loopback, other, none + public var description: Swift.String { + get + } + public func getInterfaceType() -> Network.NWInterface.InterfaceType + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public var hashValue: Swift.Int { + get + } + } + public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { + case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline + public var description: Swift.String { + get + } + public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool + } + public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) + public func startManager() + public func stopManager() + @objc deinit +} +public let ztActivityKey: Swift.String +@_inheritsConvenienceInitializers @objc(ZTActivity) open class ZTActivity : CoreData.NSManagedObject, ZTCoreKit.ZTActivityCachable { + @objc @NSManaged dynamic public var id: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityIdentifier: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var appId: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityType: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var tz: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var status: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packets: Foundation.NSMutableOrderedSet? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var metaDataRawValue: Foundation.Data? { + @objc get + @objc set } - public var pairIsConnected: Swift.Bool { + public var metaData: ZTCoreKit.ZTMessageActivityMetadata? { get } - public var memsHasError: Swift.Bool { - get + public func metaData(_ newValue: ZTCoreKit.ZTMessageActivityMetadata?) + @objc @NSManaged dynamic public var stopReasonRawValue: Foundation.Data? { + @objc get + @objc set } - public var firmwareDifferent: Swift.Bool { + public var stopReason: ZTCoreKit.ZTActivityLastStopReason? { get } - public var actualState: ZTCoreKit.ZTDeviceActualState { - get + public func stopReason(_ newValue: ZTCoreKit.ZTActivityLastStopReason?) + @objc @NSManaged dynamic public var isRawDataMode: Swift.Bool { + @objc get + @objc set } - public var previousState: ZTCoreKit.ZTDeviceActualState { - get + @objc @NSManaged dynamic public var isAutomatic: Swift.Bool { + @objc get + @objc set } - public var description: Swift.String { - get + @objc @NSManaged dynamic public var forceStop: Swift.Bool { + @objc get + @objc set } -} -@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { - @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool - @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? - @objc override dynamic public init() - @objc deinit -} -public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { - public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason - public var chunkCount: Swift.UInt16 - public var firstChunkId: Swift.UInt16 - public var lastChunkId: Swift.UInt16 { - get + @objc @NSManaged dynamic public var isInterrupted: Swift.Bool { + @objc get + @objc set } - public var startTime: Swift.UInt32 - public var endTime: Swift.UInt32 - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { - get + @objc @NSManaged dynamic public var firstChunkId: Swift.Int16 { + @objc get + @objc set } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { - public typealias Object = T - public typealias JSON = Any - public init() - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? - open func transformToJSON(_ value: T?) -> Any? - @objc deinit -} -open class ZTURLTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.URL - public typealias JSON = Swift.String - public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) - open func transformFromJSON(_ value: Any?) -> Foundation.URL? - open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? - @objc deinit -} -public enum ZTBleManagerState : Swift.CustomStringConvertible { - case off - case on - case idle - case scanning - case unauthorized - case resetting - case unknown - case unsupported - public var description: Swift.String { - get + @objc @NSManaged dynamic public var lastChunkId: Swift.Int16 { + @objc get + @objc set } - public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var chunkCount: Swift.Int16 { + @objc get + @objc set } -} -public class ZTUserShoe : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var code: Swift.String? - public var attributes: [Swift.String : Any]? - public var firmware: ZTCoreKit.ZTUserShoe.Firmware? - public var organizationId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - public class Firmware : ZTCoreKit.ZTMappable { - public var type: Swift.String? - public var arch: Swift.String? - public var version: Swift.String? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit + @objc @NSManaged dynamic public var anchorTimestamp: Swift.Int64 { + @objc get + @objc set } - @objc deinit -} -public enum ZTLoggerComponent : Swift.String { - case api - case app - case sdk - case firmware - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityStartTimestamp: Swift.Int64 { + @objc get + @objc set } -} -public enum ZTLoggerSeverity : Swift.String { - case debug - case error - case info - case warn - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityFirstChunkId: Swift.Int16 { + @objc get + @objc set } -} -public enum ZTMappingType { - case fromJSON - case toJSON - public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set } -} -final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public func map(JSONObject: Any?, toObject object: N) -> N - final public func map(JSONString: Swift.String, toObject object: N) -> N - final public func map(JSON: [Swift.String : Any], toObject object: N) -> N - final public func map(JSONString: Swift.String) -> N? - final public func map(JSONObject: Any?) -> N? - final public func map(JSON: [Swift.String : Any]) -> N? - final public func mapArray(JSONString: Swift.String) -> [N]? - final public func mapArray(JSONObject: Any?) -> [N]? - final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] - final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? - final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? - public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? - public static func parseJSONString(JSONString: Swift.String) -> Any? - @objc deinit -} -extension ZTCoreKit.ZTMapper { - final public func map(JSONfile: Swift.String) -> N? - final public func mapArray(JSONfile: Swift.String) -> [N]? -} -extension ZTCoreKit.ZTMapper { - final public func toJSON(_ object: N) -> [Swift.String : Any] - final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] - final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] - final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] - final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? - final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? - public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? - public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? -} -extension ZTCoreKit.ZTMapper where N : Swift.Hashable { - final public func mapSet(JSONString: Swift.String) -> Swift.Set? - final public func mapSet(JSONObject: Any?) -> Swift.Set? - final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set - final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] - final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? -} -public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { - public enum Status : Swift.UInt8 { - case success - case errorOutOfRange - case errorSendFailed - case errorUnexpected - case errorNotFound - case unknown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + @objc @NSManaged dynamic public var shoesSerial: Swift.String? { + @objc get + @objc set } - public let bytes: [Swift.UInt8] - public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? - public var chunkId: Swift.UInt16? - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { + public var duration: Swift.Double { get } + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + public func loadAll(firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + public func lastSavedChunkId(startId: Swift.Int16? = 0, lastId: Swift.Int16? = 0) -> Swift.Int16 + public func addToCache(_ segment: ZTCoreKit.ZTPacket) + public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) + public func saveCachedPackets() + #if compiler(>=5.3) && $AsyncAwait + open func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif + @objc deinit } -@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String +extension ZTCoreKit.ZTActivity { + @nonobjc public class func fetchRequest() -> CoreData.NSFetchRequest + public func getPacketIds() -> [Swift.Int16] + @discardableResult + public func setPackets(ids: [Swift.Int16]) -> [Swift.Int16] + @discardableResult + public func addPacket(id: Swift.Int16) -> [Swift.Int16] + public func getActulState() -> ZTCoreKit.ZTDeviceActualState + public func update(actualState: ZTCoreKit.ZTDeviceActualState) +} +@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String open var data: Foundation.Data? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { - case undefined - case userRequest - case memoryFull - case inactivity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } -} -extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) - @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) - public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) - public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) - public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) -} -extension Foundation.DateFormatter { - convenience public init(withFormat format: Swift.String, locale: Swift.String) +extension ZTCoreKit.ZTCore { + final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) + final public func updateFirmware(path: Swift.String) } -open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { - public init() - @objc deinit +extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { + @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) + final public func dfuFailed(error: ZTCoreKit.ZTError) + @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) + @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) + @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) + final public func checkDfuState() } -@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +@_inheritsConvenienceInitializers @objc(ZTPacket) open class ZTPacket : CoreData.NSManagedObject, ZTCoreKit.ZTNotifyDataMessage, ZTCoreKit.ZTPacketCachable { + @available(*, deprecated, message: "This property will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static let key: Swift.String + @objc @NSManaged dynamic public var id: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var createdAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var fulfilledAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var scheduledDeleted: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var sentAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var rawData: Foundation.Data? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activity: ZTCoreKit.ZTActivity? { + @objc get + @objc set + } + public var activityType: ZTCoreKit.ZTActivityMode? + @objc @NSManaged dynamic public var timestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var duration: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var statusRawValue: Swift.Int16 { + @objc get + @objc set + } + public var status: ZTCoreKit.ZTPacket.Status { get + set } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let object: T? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> T - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> T - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableArrayResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [T] - @available(*, deprecated, message: "This method will be deleted in a future version of the SDK.") - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> [T] - @objc deinit -} -open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { - public typealias Object = T - public typealias JSON = T.RawValue - public init() - open func transformFromJSON(_ value: Any?) -> T? - open func transformToJSON(_ value: T?) -> T.RawValue? - @objc deinit -} -public class ZTReachability { - public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter - public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { + public var timestampType: ZTCoreKit.ZTPacket.TimestampType { get set } - public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? - public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? - public var managerStarted: Swift.Bool - public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { - case all, wifi, cellular, wiredEthernet, loopback, other, none - public var description: Swift.String { - get - } - public func getInterfaceType() -> Network.NWInterface.InterfaceType + public var bmTimestampType: ZTCoreKit.ZTPacket.BmTimestampType { + get + set + } + public var packetType: ZTCoreKit.ZTPacket.PacketType { + get + set + } + @objc @NSManaged dynamic public var originalTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packetsNumber: Swift.Int16 { + @objc get + @objc set + } + public var rawDescription: Swift.String { + get + } + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var retryCount: Swift.Int16 { + @objc get + @objc set + } + public enum CodingKeys : Swift.CodingKey { + case id + case activityId + case rawData + case timestamp + case duration + case status + case packetType + case timestampType + case originalTimestamp + case packetsNumber + case fwVersion + case retryCount + public static func == (a: ZTCoreKit.ZTPacket.CodingKeys, b: ZTCoreKit.ZTPacket.CodingKeys) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) - public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) public var hashValue: Swift.Int { get } - } - public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { - case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline - public var description: Swift.String { + public var intValue: Swift.Int? { get } - public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool - } - public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) - public func startManager() - public func stopManager() - @objc deinit -} -open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.Double - public enum Unit : Foundation.TimeInterval { - case seconds - case milliseconds - public init?(rawValue: Foundation.TimeInterval) - public typealias RawValue = Foundation.TimeInterval - public var rawValue: Foundation.TimeInterval { + public var stringValue: Swift.String { get } } - public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + public init(data: Foundation.Data) + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + required public init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String? = nil, context: CoreData.NSManagedObjectContext, name: Swift.String) + required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + open func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool + public typealias Activity = ZTCoreKit.ZTActivity @objc deinit } -public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void -public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void -public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void -public typealias ZTCompletion = (() -> Swift.Void) -public protocol ZTBaseMappable { - mutating func mapping(map: ZTCoreKit.ZTMap) -} -public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { - init?(map: ZTCoreKit.ZTMap) -} -public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { - static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? -} -extension ZTCoreKit.ZTMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) -} -extension ZTCoreKit.ZTBaseMappable { - public func toJSON() -> [Swift.String : Any] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func lastSegmentId(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func segmentsCount(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, startId: Swift.Int16) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPackets(activityId: Swift.String, startId: Swift.Int16? = nil, lastId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.Int16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPacket(activityId: Swift.String?, id: Swift.Int16) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTPacket + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, lastChunkId: Swift.Int16?) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func clear(activityId: Swift.String?) + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedPackets(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16]? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.Int16, lastId: Swift.Int16?) -> Swift.Int16? +} +extension ZTCoreKit.ZTPacket { + public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool + public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.Int16?, endIndex: Swift.Int16?) -> Swift.Bool + public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.Int16) + public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.Int16) -> Swift.Bool + public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> Swift.Bool + public static func isSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16?, endId: Swift.Int16?) -> Swift.Bool + public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.Int16) -> Swift.Bool } @_hasMissingDesignatedInitializers final public class ZTApi { public static let shared: ZTCoreKit.ZTApi @@ -3747,12 +3469,12 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func getActivities(code: Swift.String?, offset: Swift.Int, limit: Swift.Int, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: (([T]?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getActivity(id: Swift.String, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func startActivity(id: Swift.String, code: Swift.String, startTime: Swift.Int64 = Date().timestamp, attributes: [Swift.String : Any]? = nil, completion: ((Swift.String?, (any Swift.Error)?) -> Swift.Void)?) - final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTSegmentData, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTSegmentData], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int16? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTPacket, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTPacket], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) final public func deleteActivity(id: Swift.String, completion: ZTCoreKit.ZTBaseResult? = nil) final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, data: [Swift.String]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable - final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable + final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> Swift.Void)) final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([[Swift.String : Any]]?, (any Swift.Error)?) -> Swift.Void)) @@ -3791,224 +3513,408 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func resendSavedRequests() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func extract(_ entry: ZTCoreKit.ZTEntry, to url: Foundation.URL, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil) throws -> ZTCoreKit.CRC32 - final public func extract(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 +public protocol ZTCBPeripheralProtocol { + var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } + var name: Swift.String? { get } + var rssi: Foundation.NSNumber? { get } + var state: CoreBluetooth.CBPeripheralState { get } + var services: [CoreBluetooth.CBService]? { get } + var identifier: Foundation.UUID { get } + func discoverServices(_: [CoreBluetooth.CBUUID]?) + func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) + func readValue(for: CoreBluetooth.CBCharacteristic) + func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) + func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) } -public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void -@_hasMissingDesignatedInitializers final public class ZTCore { - public static let version: Swift.String - final public var zcVersion: Swift.String - public static let shared: ZTCoreKit.ZTCore - final public let bleManager: ZTCoreKit.ZTBleManager - final public var settings: ZTCoreKit.ZTSettings { +extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { +} +public protocol ZTBaseMappable { + mutating func mapping(map: ZTCoreKit.ZTMap) +} +public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { + init?(map: ZTCoreKit.ZTMap) +} +public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { + static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? +} +extension ZTCoreKit.ZTMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) +} +extension ZTCoreKit.ZTBaseMappable { + public func toJSON() -> [Swift.String : Any] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +public struct ZTRealtimeMessage : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } + public enum Side : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + get + } + public var content: [Swift.UInt8] { + get + } + public init(bytes: [Swift.UInt8]) + public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + get + } + public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + get + } + public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + get + } + public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + get + } +} +@_hasMissingDesignatedInitializers public class ZTDefaults { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { + final public let stringValue: Swift.String + public init(_ value: Swift.String) + @objc deinit +} +@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + public var stringValue: Swift.String? { + get + } + @objc deinit +} +public class ZTActivityComment : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var timeZone: Swift.String? + public var timestamp: Foundation.Date? + public var text: Swift.String? + public var activityId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + public var mediaFiles: [ZTCoreKit.ZTMediaFile]? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +public enum ZTAlgoCommand : Swift.UInt8 { + case getStatus + case startNewChunk + case changeProductMode + case setPrecisionMode + case setMinimumNumberOfStrides + case enableStreamingOfValues + case setDisconnectionDelay + case setUserInfo + case setDailyTimestamp + case getPositionOfPods + case enableSpecificPacket + case holdRealtimeStreaming + case getSingleTimeMetrics + case calibrateGravity + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var appUserId: Swift.String? { +} +public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case status + case acknowledgment + case realTimeEvent + case realTimeMetrics + case warning + case error + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var lastCommand: ZTCoreKit.ZTCommand? - final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] - final public var lastActivityId: Swift.String? { - get +} +public enum ZTError : Swift.Equatable, Swift.Error { + case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) + case ble(type: ZTCoreKit.ZTError.Enums.BleError) + case network(type: ZTCoreKit.ZTError.Enums.NetworkError) + case store(type: ZTCoreKit.ZTError.Enums.StoreError) + case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) + case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) + case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) + case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) + @_hasMissingDesignatedInitializers public class Enums { + @objc deinit } - final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { + public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool + public var error: (any Swift.Error)? { get } - final public var connectedDevice: ZTCoreKit.ZTDevice? { +} +extension ZTCoreKit.ZTError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastDeviceSerialNumber: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum ScanningError { + case cameraPermission + case wrongCode + case unknown + case notLinkedUser + public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var lastDeviceQRCode: Swift.String? { +} +extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastQRCode: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum BleError { + case invalidState + case resetting + case poweredOff + case unsupported + case timeout + case unauthorized + case notConnected + case notConnectedLeft + case activityIsRunning + case busy + case dfu + case commandError + public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var isDfuInProgress: Swift.Bool { +} +extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? - final public var firmwareDfuState: ZTCoreKit.DFUState? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum FirmwareError { + case differentFirmware + case memsError + case leftNoConnected + case restartRequired + case recoverFromDfu + case minimumFwVersion + case updateRequired + case unsupported + case wrongProductType + case firstChunkIdIsGreater + case startTimeZero + public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { +} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> - final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> - final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuCopied: ZTCoreKit.ZTSignal<()> - final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) - final public func clearUser() - final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) - @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func stopScan() - final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) - #if compiler(>=5.3) && $AsyncAwait - final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice - #endif - @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") - final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) - final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) - final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func setDeepSleepMode() throws - @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Metrics : Swift.CustomStringConvertible { - public var activityType: ZTCoreKit.ZTActivityType? { - get - } - public var metricId: Swift.UInt8? { - get - } - public var metric: ZTCoreKit.ZTRealtimeMetric? { - get - } - public var value: [Swift.UInt8]? { +extension ZTCoreKit.ZTError.Enums { + public enum DfuError { + case noLeftModule + case noUpdate + case wrongFile + case noStart + case aborted + case abortedRight + case abortedLeft + case unsupported + case lowBattery + case inProgress + case updateRequired + case wrongProductType + public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public var description: Swift.String { + } +} +extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum StoreError { + case missing(Swift.String) + case invalid(Swift.String, Any?) + case wrong(Swift.String) + case unknown + } +} +extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum ActivityError { + case notStarted + case notStartedLeft + case notStopped + case unknown + case modeNotSetActivityIsRunning + case previousNotStopped + case previousRestoring + case noUserParametersSet + case rawDataFlowIsRunning + case invalidMobilityScanResults + case outsideActivityDetected + case anomalyDetected + case mobility + public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public init(data: Foundation.Data) } } -@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum NetworkError { + case userLinkError + case inaccessible + case urlError(Foundation.URLError) + case generalError(any Swift.Error) + case noResponse + case invalidResponseType(Foundation.URLResponse) + case noResponseData(Foundation.HTTPURLResponse) + case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) + case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) + } +} +extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTJSONParameterEncoder { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTURLEncodedFormParameterEncoder { - @objc deinit } -@_hasMissingDesignatedInitializers final public class ZTSettings { - public static let shared: ZTCoreKit.ZTSettings - final public var version: Swift.String? - final public var logLevel: ZTCoreKit.ZTLogLevel - final public var environment: ZTCoreKit.ZTEnvironment - final public var autoConnect: Swift.Bool - final public var enableEventLogging: Swift.Bool - final public var shouldObtaineMissedChunks: Swift.Bool - final public var enableRawDataCheck: Swift.Bool - final public var shouldAutoResendData: Swift.Bool - final public var activityDataSyncThreshold: Swift.Int - final public var enableBackgroundDFU: Swift.Bool - final public var enableBackgroundDataStreaming: Swift.Bool - final public var activityChunkStoreForFreeMemory: Swift.Int - final public var activityChunkRetryLimit: Swift.Int - final public var checkFirmwareUpdatePeriod: Swift.Int - final public var enableAnalyticsData: Swift.Bool - final public var autorestartBackgroundDfu: Swift.Bool - final public var getChunksOnApplicationDidBecomeActive: Swift.Bool - final public var enablePacketsDataLogging: Swift.Bool - final public var cachedPacketsBatchUploadSize: Swift.Int - final public var chunkDuration: Swift.Int? { +extension ZTCoreKit.ZTError.Enums { + public enum DecodableError { + case invalidKeyPath + case emptyKeyPath + case invalidJSON + public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } +} +extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public func clear() - @objc deinit } -@_hasMissingDesignatedInitializers open class ZTClosureEventMonitor { - open var sessionDidBecomeInvalidWithError: ((Foundation.URLSession, (any Swift.Error)?) -> Swift.Void)? - open var taskDidReceiveChallenge: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> Swift.Void)? - open var taskDidSendBodyData: ((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var taskNeedNewBodyStream: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var taskWillPerformHTTPRedirection: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> Swift.Void)? - open var taskDidFinishCollectingMetrics: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> Swift.Void)? - open var taskDidComplete: ((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> Swift.Void)? - open var taskIsWaitingForConnectivity: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var dataTaskDidReceiveData: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> Swift.Void)? - open var dataTaskWillCacheResponse: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> Swift.Void)? - open var downloadTaskDidFinishDownloadingToURL: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> Swift.Void)? - open var downloadTaskDidWriteData: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var downloadTaskDidResumeAtOffset: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> Swift.Void)? - @objc deinit -} -extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} -extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} -extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Equatable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareType : Swift.Hashable {} extension ZTCoreKit.DFUFirmwareType : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Equatable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} -extension ZTCoreKit.LogLevel : Swift.Equatable {} -extension ZTCoreKit.LogLevel : Swift.Hashable {} -extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.Status : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.RawRepresentable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityType : Swift.Equatable {} +extension ZTCoreKit.ZTActivityType : Swift.Hashable {} +extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} extension ZTCoreKit.ZTTXPower : Swift.Equatable {} extension ZTCoreKit.ZTTXPower : Swift.Hashable {} extension ZTCoreKit.ZTTXPower : Swift.RawRepresentable {} extension ZTCoreKit.ZTCommand : Swift.Equatable {} extension ZTCoreKit.ZTCommand : Swift.Hashable {} extension ZTCoreKit.ZTCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} -extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.Equatable {} +extension ZTCoreKit.ZTPeriod : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTProductType : Swift.Equatable {} extension ZTCoreKit.ZTProductType : Swift.Hashable {} extension ZTCoreKit.ZTProductType : Swift.RawRepresentable {} @@ -4033,42 +3939,44 @@ extension ZTCoreKit.ZTGenderSizeCodeType : Swift.RawRepresentable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Equatable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Hashable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.Equatable {} +extension ZTCoreKit.LogLevel : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMappingType : Swift.Equatable {} +extension ZTCoreKit.ZTMappingType : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Equatable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Hashable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogLevel : Swift.Equatable {} extension ZTCoreKit.ZTLogLevel : Swift.Hashable {} extension ZTCoreKit.ZTLogLevel : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogCategory : Swift.Equatable {} extension ZTCoreKit.ZTLogCategory : Swift.Hashable {} extension ZTCoreKit.ZTLogCategory : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Equatable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Hashable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.RawRepresentable {} @@ -4093,72 +4001,62 @@ extension ZTCoreKit.ZTNotifyData.GenericMessageId : Swift.RawRepresentable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Equatable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Hashable {} extension ZTCoreKit.ZTDeviceActualState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.Equatable {} -extension ZTCoreKit.ZTActivityType : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} -extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} -extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} -extension ZTCoreKit.DFUUuidType : Swift.Equatable {} -extension ZTCoreKit.DFUUuidType : Swift.Hashable {} -extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} +extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} +extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} +extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUError : Swift.Equatable {} extension ZTCoreKit.DFUError : Swift.Hashable {} extension ZTCoreKit.DFUError : Swift.RawRepresentable {} extension ZTCoreKit.DFUState : Swift.Equatable {} extension ZTCoreKit.DFUState : Swift.Hashable {} extension ZTCoreKit.DFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDFUState : Swift.Equatable {} +extension ZTCoreKit.ZTDFUState : Swift.Hashable {} +extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} +extension ZTCoreKit.DFUUuidType : Swift.Equatable {} +extension ZTCoreKit.DFUUuidType : Swift.Hashable {} +extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} +extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} +extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Equatable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Hashable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Equatable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Hashable {} extension ZTCoreKit.ZTAlgoCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} -extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDFUState : Swift.Equatable {} -extension ZTCoreKit.ZTDFUState : Swift.Hashable {} -extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Equatable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Hashable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTPeriod : Swift.Equatable {} -extension ZTCoreKit.ZTPeriod : Swift.Hashable {} -extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMappingType : Swift.Equatable {} -extension ZTCoreKit.ZTMappingType : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} -extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 2bbf05e..2535f42 100644 Binary files a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 93936fa..c988747 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,18 +1,13 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit -import Combine -import CommonCrypto -import Compression +// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit import CoreBluetooth -import CoreFoundation +import CoreData import CoreTelephony import Dispatch import Foundation -import MobileCoreServices import Network import ObjectiveC -import Security import Swift import SystemConfiguration import UIKit @@ -21,175 +16,158 @@ import _StringProcessing import _SwiftConcurrencyShims import os.log import os -import zlib -public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case timestamp - case modeId - case precisionMode - case numberOfSteps - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +public protocol ZTEnum : Swift.Decodable, Swift.Encodable { + var description: Swift.String { get } } -extension Foundation.Data { - public func macAddress() -> Swift.String? - public var bytes: [Swift.UInt8] { - get - } - public var hexDescription: Swift.String { +extension ZTCoreKit.ZTEnum { + public var description: Swift.String { get } - public init?(hex: Swift.String) - public func getUInt(offset: Swift.Int) -> Swift.UInt16 - public func getUInt32(offset: Swift.Int) -> Swift.UInt32 - public func getFloat(offset: Swift.Int) -> Swift.Float - public func getByte(at index: Swift.Int) -> Swift.Int8 - public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 - public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 - public mutating func append(byte data: Swift.Int8) - public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) - public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -extension Foundation.Data { - public func dataObject(at index: Foundation.Data.Index = 0) -> T - public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int - public func object(at offset: Swift.Int) -> T +@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { + public var name: Swift.String + public var description: Swift.String? + public var mimeType: Swift.String? + public var key: Swift.String? + public var url: Swift.String? + public var data: Foundation.Data? + convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) + required convenience public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Swift.Numeric { - public var data: Foundation.Data { +public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void +public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void +public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void +public typealias ZTCompletion = (() -> Swift.Void) +public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { + public var rawData: Foundation.Data? + public var right: Swift.UInt8 + public var left: Swift.UInt8 + public var min: Swift.UInt8 { get } -} -public struct ZTAES { - public let key: Foundation.Data - public let iv: Foundation.Data - public var algorithm: CommonCrypto.CCAlgorithm { + public var description: Swift.String { get } - public var options: CommonCrypto.CCOptions { + public init() + public init(data: Foundation.Data) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static let uuid: Swift.String + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var encOption: CommonCrypto.CCOptions { + public var byte1: Swift.UInt8? { get } - public var decOption: CommonCrypto.CCOptions { + public var byte2: Swift.UInt8? { get } - public var successStatus: Swift.UInt32 { + public var byte3: Swift.UInt8? { get } - public func evaluate(_ current: CommonCrypto.CCCryptorStatus, with needed: Swift.UInt32) -> Swift.Bool - public typealias error = ZTCoreKit.ZTPlist.Error - public init?(key: Swift.String, iv: Swift.String) - public func encrypt(data: Foundation.Data) -> Foundation.Data? - public func decrypt(data: Foundation.Data?) -> Foundation.Data? - public func crypt(data: Foundation.Data?, option: CommonCrypto.CCOperation) -> Foundation.Data? -} -@_hasMissingDesignatedInitializers open class ZTRetryPolicy { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTConnectionLostRetryPolicy : ZTCoreKit.ZTRetryPolicy { - @objc deinit + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTMessageGeneralState { + public var activityStartedRight: Swift.Bool { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -extension Foundation.UserDefaults { - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { + public var activityStartedLeft: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { + public var pairIsConnected: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { + public var memsHasError: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { + public var firmwareDifferent: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { + public var actualState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { + public var previousState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { + public var description: Swift.String { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { +} +@_hasMissingDesignatedInitializers public class ZTCommandResponse { + public var bytes: [Swift.UInt8] + public var rightModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { + public var leftModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { + public var command: ZTCoreKit.ZTCommand? { get - set } - public subscript(key: Swift.String) -> Any? { + public var status: ZTCoreKit.ZTCommandStatus? { get - set(value) } - public func value(forKey key: Swift.String) -> T? - public func clear(_ key: Swift.String) - public func clear(_ key: ZTCoreKit.ZTDefaultsKey) - public func clearAll() + @objc deinit } -public struct ZTPairedDevice : Swift.Codable { - public var macAddress: Swift.String { +public enum ZTCommandStatus : Swift.UInt8 { + case success + case busy + case invalidParam + case invalidState + case forbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerresponse + public var description: Swift.String { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -public enum ZTDfuPackageType : Swift.String { - case APP - case BL - case SD - case SD_BL - case SD_BL_APP - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers final public class ZTSettings { + public static let shared: ZTCoreKit.ZTSettings + final public var version: Swift.String? + final public var logLevel: ZTCoreKit.ZTLogLevel + final public var environment: ZTCoreKit.ZTEnvironment + final public var autoConnect: Swift.Bool + final public var enableEventLogging: Swift.Bool + final public var shouldObtaineMissedChunks: Swift.Bool + final public var enableRawDataCheck: Swift.Bool + final public var shouldAutoResendData: Swift.Bool + final public var activityDataSyncThreshold: Swift.Int + final public var enableBackgroundDFU: Swift.Bool + final public var enableBackgroundDataStreaming: Swift.Bool + final public var activityChunkStoreForFreeMemory: Swift.Int + final public var activityChunkRetryLimit: Swift.Int + final public var checkFirmwareUpdatePeriod: Swift.Int + final public var enableAnalyticsData: Swift.Bool + final public var autorestartBackgroundDfu: Swift.Bool + final public var getChunksOnApplicationDidBecomeActive: Swift.Bool + final public var enablePacketsDataLogging: Swift.Bool + final public var cachedPacketsBatchUploadSize: Swift.Int + final public var chunkDuration: Swift.Int? { get + set } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + final public func clear() @objc deinit } -@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { +@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { public static let uuid: Swift.String open var data: Foundation.Data? { get @@ -198,336 +176,317 @@ public enum ZTDfuPackageType : Swift.String { override open func valueUpdated() @objc deinit } -public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var bootloaderVersion: Swift.UInt8 { - get - } - public var appSupportVersion: Swift.UInt8 { - get - } - public var softDeviceId: Swift.UInt8 { - get +extension ZTCoreKit.ZTRealtimeMessage { + public struct Status : Swift.CustomStringConvertible { + public var code: ZTCoreKit.ZTAlgoStatus? { + get + } + public var timestamp: Swift.UInt32? { + get + } + public var algoMode: ZTCoreKit.ZTAlgoMode? { + get + } + public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { + get + } + public var consecutiveSteps: Swift.UInt8? { + get + } + public var description: Swift.String { + get + } + public init(data: Foundation.Data) } - public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { +} +public enum ZTBleManagerState : Swift.CustomStringConvertible { + case off + case on + case idle + case scanning + case unauthorized + case resetting + case unknown + case unsupported + public var description: Swift.String { get } - public var description: Swift.String { + public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public enum DfuState : Swift.UInt8 { - case none - case inProgress - case received - case readyForCopy - case activation - case done - case error - case validationError - case activationError - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } -extension Swift.String { - public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String - public var fromBase64: Swift.String? { +public enum ZTRealtimeMetric : Swift.String { + case duration + case steps + case cycleDuration + case stepCadence + case stepSpeed + case distance + case footDistance + case energySum + case walkingQualityScore + case stairsClimbed + case intenseActivity + case slope + case accelerationFoot + case strideLength + case relativePronationAngleFoot + case pronationAngleFFI + case pronationAngleFFO + case plantarFlexionAngularSpeedMaxPropulsion + case symmetry + public func value() -> Swift.UInt8 + public var activityType: ZTCoreKit.ZTActivityType { get } - public var toBase64: Swift.String { + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String - public func substring(range: Foundation.NSRange) -> Swift.String - public func matches(regex: Swift.String) -> [Swift.String] - public static func random(length: Swift.Int = 9) -> Swift.String - public func split(usingRegex pattern: Swift.String) -> [Swift.String] - public func serialNumber() -> Swift.String - public func fileName() -> Swift.String - public func incrementedMacAddress() -> Swift.String } -extension Swift.Int { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +extension ZTCoreKit.ZTRealtimeMetric { + public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) + public init?(name: Swift.String) } -extension Swift.UInt8 { - public var bits: [Swift.UInt8] { - get - } - public var hexValue: Swift.String { - get +open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.Double + public enum Unit : Foundation.TimeInterval { + case seconds + case milliseconds + public init?(rawValue: Foundation.TimeInterval) + public typealias RawValue = Foundation.TimeInterval + public var rawValue: Foundation.TimeInterval { + get + } } + public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + @objc deinit } -extension Swift.UInt16 { - public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] -} -extension Swift.UInt32 { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] -} -extension Swift.UInt64 { - public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] +open class ZTDataTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Data + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.Data? + open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? + @objc deinit } -extension Swift.Double { - public var milliseconds: Swift.Int64 { +@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension Swift.Array where Element == Swift.UInt8 { - public var hex: Swift.String { +public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case defaultMode + case economicMode + case performanceMode + public var parameters: [Swift.UInt8] { get } -} -extension Swift.Dictionary { - public func merge(dict: [Key : Value]) -> [Key : Value] -} -extension Foundation.Date { - public var timestamp: Swift.Int64 { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - public var apiFormat: Swift.String { - get +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { + @objc public func pause() + @objc public func resume() + @objc public func abort() -> Swift.Bool + @objc public func restart() + @objc public var paused: Swift.Bool { + @objc get } - public var logFormat: Swift.String { - get + @objc public var aborted: Swift.Bool { + @objc get } + @objc deinit } -extension Swift.Array where Element : CoreBluetooth.CBPeripheral { - public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool -} -extension Swift.Array { - public func chunked(into size: Swift.Int = 1000) -> [[Element]] -} -extension Swift.Array where Element == Swift.String { - public func stringify() -> Swift.String -} -extension CoreBluetooth.CBCharacteristic { - public func notifyValue(_ isEnabled: Swift.Bool) - public func readValue() - @discardableResult - public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { + public var left: Swift.UInt32 + public var right: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTEnvironment { - case dev - case staging - case production - case zcdev - case zcstaging - case zcproduction - public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { +extension ZTCoreKit.ZTMessageInactivityTimeout { + public var description: Swift.String { get } } -public enum ZTModuleSide : Swift.String, Swift.Codable { - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } +public protocol ZTCBCentralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + func stopScan() + func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] + func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] + func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) + func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) + func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) } -public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable -public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable -public protocol ZTEnum : Swift.Decodable, Swift.Encodable { - var description: Swift.String { get } +extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { + public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? + public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] + public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) } -extension ZTCoreKit.ZTEnum { +open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { + public init(formatString: Swift.String) + @objc deinit +} +public struct ZTMapError : Swift.Error { + public var key: Swift.String? + public var currentValue: Any? + public var reason: Swift.String? + public var file: Swift.StaticString? + public var function: Swift.StaticString? + public var line: Swift.UInt? + public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) +} +extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { public var description: Swift.String { get } } -extension ZTCoreKit.ZTArchive { - final public func totalUnitCountForRemoving(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForReading(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForAddingItem(at url: Foundation.URL) -> Swift.Int64 -} -public let defaultReadChunkSize: Swift.UInt32 -public let defaultWriteChunkSize: Swift.UInt32 -public let defaultFilePermissions: Swift.UInt16 -public let defaultDirectoryPermissions: Swift.UInt16 -final public class ZTArchive : Swift.Sequence { - public enum ArchiveError : Swift.Error { - case unreadableArchive - case unwritableArchive - case invalidEntryPath - case invalidCompressionMethod - case invalidStartOfCentralDirectoryOffset - case missingEndOfCentralDirectoryRecord - case invalidNumberOfEntriesOnDisk - case invalidNumberOfEntriesInCentralDirectory - case cancelledOperation - case invalidBufferSize - public static func == (a: ZTCoreKit.ZTArchive.ArchiveError, b: ZTCoreKit.ZTArchive.ArchiveError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get +public protocol ZTPacketCachable : CoreData.NSManagedObject { + associatedtype Activity : ZTCoreKit.ZTActivityCachable + var id: Swift.Int16 { get set } + var createdAt: Foundation.Date { get set } + var fulfilledAt: Foundation.Date { get set } + var sentAt: Foundation.Date { get set } + var timestamp: Swift.Int64 { get set } + var duration: Swift.Int16 { get set } + var statusRawValue: Swift.Int16 { get set } + var status: ZTCoreKit.ZTPacket.Status { get set } + var scheduledDeleted: Foundation.Date? { get set } + var rawData: Foundation.Data? { get set } + var activity: Self.Activity? { get set } + var fwVersion: Swift.String? { get set } + init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, context: CoreData.NSManagedObjectContext, name: Swift.String) +} +extension ZTCoreKit.ZTPacketCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public enum ZTServices { + public enum Primary { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + case test + public var uid: Swift.String { + get + } + public var uuid: CoreBluetooth.CBUUID { + get + } + public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - public enum AccessMode : Swift.UInt { - case create - case read - case update - public init?(rawValue: Swift.UInt) - public typealias RawValue = Swift.UInt - public var rawValue: Swift.UInt { - get + public enum PrimaryOld { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - final public let url: Foundation.URL - final public let accessMode: ZTCoreKit.ZTArchive.AccessMode - public init?(url: Foundation.URL, accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - public init?(data: Foundation.Data = Data(), accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - @objc deinit - final public func makeIterator() -> Swift.AnyIterator - final public subscript(path: Swift.String) -> ZTCoreKit.ZTEntry? { - get - } - public typealias Element = ZTCoreKit.ZTEntry - public typealias Iterator = Swift.AnyIterator -} -final public class ZTSignal { - public typealias ZTSignalCallback = (T) -> Swift.Void - final public var fireCount: Swift.Int { - get - } - final public var retainLastData: Swift.Bool { - get - set - } - final public var lastDataFired: T? { - get + public enum DeviceInformation { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case manufacturerName + case modelNumber + case serialNumber + case firmwareRevision + case hardwareRevision + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - final public var observers: [Swift.AnyObject] { - get + public enum DeviceDFU { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case dfuControlPoint + case dfuPacket + case dfuButtonless + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - public init(retainLastData: Swift.Bool = false) - @discardableResult - final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - final public func fire(_ data: T) - final public func cancelSubscription(for observer: Swift.AnyObject) - final public func cancelAllSubscriptions() - final public func clearLastData() - @objc deinit -} -extension ZTCoreKit.ZTSignal where T == () { - final public func fire() -} -@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { - public typealias ZTSignalCallback = (T) -> Swift.Void - public typealias ZTSignalFilter = (T) -> Swift.Bool - weak final public var observer: Swift.AnyObject? - final public var once: Swift.Bool - @discardableResult - final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription - final public func cancel() - @objc deinit } -infix operator => : AssignmentPrecedence -public func => (signal: ZTCoreKit.ZTSignal, data: T) -public struct ZTMessageTime : Swift.CustomStringConvertible { - public var timestamp: Swift.Int64 - public var side: ZTCoreKit.ZTModuleSide - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { +public enum ZTRealtimeSide : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@objc public protocol DFUPeripheralSelectorDelegate { - @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool - @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? -} -extension ZTCoreKit.ZTArchive { - final public var data: Foundation.Data? { - get - } +@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { + public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? + @objc override dynamic public init() + @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage.Event { - public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case motion - case transition - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension ZTCoreKit.ZTRealtimeMessage { + public struct Acknowledgment : Swift.CustomStringConvertible { + public var command: ZTCoreKit.ZTAlgoCommand? { get } - } - public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case stepForward - case stepBackward - case stepSideLeft - case stepSideRight - case stepUp - case stepDown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { get } - } - public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case low - case medium - case high - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -public class ZTDateTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public enum DFUStreamHexError : Swift.Error { - case invalidHexFile - public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -open class ZTDataTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Data - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.Data? - open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? - @objc deinit -} open class ZTCharacteristic { weak public var service: ZTCoreKit.ZTService? { get @@ -557,951 +516,1103 @@ open class ZTCharacteristic { open func notificationUpdated() @objc deinit } -@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@objc public enum DFUFirmwareType : Swift.UInt8 { + case softdevice = 1 + case bootloader = 2 + case application = 4 + case softdeviceBootloader = 3 + case softdeviceBootloaderApplication = 7 + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) +} +public struct DFUFirmwareError : Swift.Error { + public enum FileType { + case zip + case binOrHex + case dat + public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public let type: ZTCoreKit.DFUFirmwareError.FileType +} +extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +@objc public class DFUFirmware : ObjectiveC.NSObject { + @objc final public let fileName: Swift.String? + @objc final public let fileUrl: Foundation.URL? + @objc public var valid: Swift.Bool { + @objc get + } + @objc public var size: ZTCoreKit.DFUFirmwareSize { + @objc get + } + @objc public var parts: Swift.Int { + @objc get + } + @objc convenience public init(urlToZipFile: Foundation.URL) throws + @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws + @objc convenience public init(zipFile: Foundation.Data) throws + @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) + @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws @objc deinit } -public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { +public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void +@_hasMissingDesignatedInitializers final public class ZTCore { + public static let version: Swift.String + final public var zcVersion: Swift.String + public static let shared: ZTCoreKit.ZTCore + final public let bleManager: ZTCoreKit.ZTBleManager + final public var settings: ZTCoreKit.ZTSettings { get } - public var byte1: Swift.UInt8? { + final public var appUserId: Swift.String? { get } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTMessageChunkConfig { - public var side: ZTCoreKit.ZTModuleSide { + final public var lastCommand: ZTCoreKit.ZTCommand? + final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] + final public var lastActivityId: Swift.String? { get } - public var flag: Swift.UInt8 { + final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { get } - public var description: Swift.String { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } -} -@_hasMissingDesignatedInitializers open class ZTSession { - @objc deinit -} -open class ZTService { - weak public var device: ZTCoreKit.ZTDevice! { + final public var lastDeviceSerialNumber: Swift.String? { get } - final public let service: CoreBluetooth.CBService - public static var serviceType: ZTCoreKit.ZTService.Type { + final public var lastDeviceQRCode: Swift.String? { get } - public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { + final public var lastQRCode: Swift.String? { get } - public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + final public var isDfuInProgress: Swift.Bool { + get + } + weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? + final public var firmwareDfuState: ZTCoreKit.DFUState? { + get + } + final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { + get + set + } + final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> + final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> + final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuCopied: ZTCoreKit.ZTSignal<()> + final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + final public func clearUser() + final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) + @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func stopScan() + final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) + #if compiler(>=5.3) && $AsyncAwait + final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice + #endif + @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") + final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) + final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) + final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func setDeepSleepMode() throws + @objc deinit } -extension ZTCoreKit.ZTService : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +public class ZTDatabaseService where Packet : ZTCoreKit.ZTPacketCachable, Activity : ZTCoreKit.ZTActivityCachable { + public var currentActivityId: Swift.String? + public init(context: CoreData.NSManagedObjectContext = ZTCoreDataStack.shared.context) + @objc deinit + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withId activityId: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withSerial serial: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func createActivity(withId id: Swift.String, updateBlock: ((Activity) -> Swift.Void)? = nil) async throws -> Activity? + #endif + public func updateActivity(id: Swift.String, updateBlock: @escaping (Activity) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + public func deleteActivity(withId id: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + #if compiler(>=5.3) && $AsyncAwait + public func createPacket(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, updateBlock: ((Packet) -> Swift.Void)? = nil) async -> Packet + #endif + public func fetchPackets(for activityId: Swift.String, completion: @escaping (Swift.Result<[Packet], any Swift.Error>) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func fetchPackets(forActivityId activityId: Swift.String, from startId: Swift.Int16? = nil, to lastId: Swift.Int16? = nil, in managedObjectContext: CoreData.NSManagedObjectContext) async throws -> [Packet] + #endif + public func trashOldPackets() + public func updatePackets(for activityId: Swift.String, from startId: Swift.Int16, to endId: Swift.Int16, withStatus newStatus: ZTCoreKit.ZTPacket.Status, completion: @escaping ((any Swift.Error)?) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func add(_ packet: Packet, to activityId: Swift.String, in managedContext: CoreData.NSManagedObjectContext) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + public func update(_ packets: [Packet], withNewStatus newStatus: ZTCoreKit.ZTPacket.Status, in managedContext: CoreData.NSManagedObjectContext) async + #endif + public func update(packet: Packet, updateBlock: @escaping (Packet) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) } -public protocol ZTServiceProtocol : AnyObject { - static var uuid: Swift.String { get } - static var serviceType: ZTCoreKit.ZTService.Type { get } - static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +public class ZTUser : ZTCoreKit.ZTMappable { + public var attributes: [Swift.String : Any] + public var id: Swift.String? + public var organizationId: Swift.String? + public var appId: Swift.String? + public var createdAt: Swift.String? + public var updatedAt: Swift.String? + public var userId: Swift.String? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { +public class ZTAchievement : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var type: Swift.String? + public var activityId: Swift.String? + public var code: Swift.String? + public var appuserId: Swift.String? + public var data: [Swift.String : Any]? + public var duration: Swift.Int64? + public var calories: Swift.Double? + public var createdAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +open class ZTService { + weak public var device: ZTCoreKit.ZTDevice! { + get + } + final public let service: CoreBluetooth.CBService public static var serviceType: ZTCoreKit.ZTService.Type { get } -} -@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) - @objc deinit -} -public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { - case status(id: ZTCoreKit.ZTAlgoStatus) - case startNewChunk - case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) - case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) - case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) - case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) - case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) - public var parameters: [Swift.UInt8] { + public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static let uuid: Swift.String - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) @objc deinit } -public enum ZTRealtimeMetric : Swift.String { - case duration - case steps - case cycleDuration - case stepCadence - case stepSpeed - case distance - case footDistance - case energySum - case walkingQualityScore - case stairsClimbed - case intenseActivity - case slope - case accelerationFoot - case strideLength - case relativePronationAngleFoot - case pronationAngleFFI - case pronationAngleFFO - case plantarFlexionAngularSpeedMaxPropulsion - case symmetry - public func value() -> Swift.UInt8 - public var activityType: ZTCoreKit.ZTActivityType { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +extension ZTCoreKit.ZTService : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +} +extension Foundation.Data { + public var hexString: Swift.String { get } } -extension ZTCoreKit.ZTRealtimeMetric { - public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) - public init?(name: Swift.String) +public protocol DataConvertible { + static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + static func += (lhs: inout Foundation.Data, rhs: Self) } -public protocol ZTCBCentralManagerProtocol : AnyObject { - var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } - var state: CoreBluetooth.CBManagerState { get } - func stopScan() - func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] - func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] - func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) - func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) - func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) +extension ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + public static func += (lhs: inout Foundation.Data, rhs: Self) } -extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { - public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? - public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] - public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) +extension Swift.UInt8 : ZTCoreKit.DataConvertible { } -@objc @_hasMissingDesignatedInitializers open class ZTSessionDelegate : ObjectiveC.NSObject { - @objc deinit +extension Swift.UInt16 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, didBecomeInvalidWithError error: (any Swift.Error)?) +extension Swift.UInt32 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionTaskDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didReceive challenge: Foundation.URLAuthenticationChallenge, completionHandler: @escaping (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didSendBodyData bytesSent: Swift.Int64, totalBytesSent: Swift.Int64, totalBytesExpectedToSend: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, needNewBodyStream completionHandler: @escaping (Foundation.InputStream?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didFinishCollecting metrics: Foundation.URLSessionTaskMetrics) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didCompleteWithError error: (any Swift.Error)?) - @available(macOS 10.13, iOS 11.0, tvOS 11.0, watchOS 4.0, *) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, taskIsWaitingForConnectivity task: Foundation.URLSessionTask) +extension Swift.Int : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDataDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, didReceive data: Foundation.Data) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, willCacheResponse proposedResponse: Foundation.CachedURLResponse, completionHandler: @escaping (Foundation.CachedURLResponse?) -> Swift.Void) +extension Swift.Float : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDownloadDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didResumeAtOffset fileOffset: Swift.Int64, expectedTotalBytes: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didWriteData bytesWritten: Swift.Int64, totalBytesWritten: Swift.Int64, totalBytesExpectedToWrite: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didFinishDownloadingTo location: Foundation.URL) +extension Swift.Double : ZTCoreKit.DataConvertible { } -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +extension Swift.String : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data +} +extension Foundation.Data : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data +} +@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { + @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool + @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? + @objc override dynamic public init() + @objc deinit +} +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.Int16, anchorTime: Swift.Int64?) + public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTPacket) + public static func updateSegments(ids: [Swift.Int16], status: ZTCoreKit.ZTPacket.Status, activityId: Swift.String?) +} +@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public protocol ZTCBPeripheralProtocol { - var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } - var name: Swift.String? { get } - var rssi: Foundation.NSNumber? { get } - var state: CoreBluetooth.CBPeripheralState { get } - var services: [CoreBluetooth.CBService]? { get } - var identifier: Foundation.UUID { get } - func discoverServices(_: [CoreBluetooth.CBUUID]?) - func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) - func readValue(for: CoreBluetooth.CBCharacteristic) - func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) - func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) -} -extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { -} -extension ZTCoreKit.ZTPlist { - public func asCollection() -> [Foundation.NSDictionary.Element] - public func set(_ rawValue: Any?, for key: Swift.String) - public func get(_ key: Swift.String) -> Any? - public func clean() - public func remove(_ keys: Swift.String...) - public func remove(keys collection: [Swift.String]) - public func bool(_ key: Swift.String) -> Swift.Bool? - public func int(_ key: Swift.String) -> Swift.Int? - public func double(_ key: Swift.String) -> Swift.Double? - public func float(_ key: Swift.String) -> Swift.Float? - public func string(_ key: Swift.String) -> Swift.String? - public func dictionary(_ key: Swift.String) -> [Swift.String : Any]? - public func collection(_ key: Swift.String) -> [Any]? - public func date(_ key: Swift.String) -> Foundation.Date? - public func data(_ key: Swift.String) -> Foundation.Data? - public func null(_ key: Swift.String) -} -public struct ZTRealtimeMessage : Swift.CustomStringConvertible { - public var description: Swift.String { - get +extension ZTCoreKit.ZTPacket { + public enum Status : Swift.Int16, Swift.Codable, Swift.Equatable { + case new + case readyToSend + case sending + case sent + case error + public init?(rawValue: Swift.Int16) + public typealias RawValue = Swift.Int16 + public var rawValue: Swift.Int16 { + get + } } - public enum Side : Swift.UInt8 { - case none - case left - case right - case both + public enum TimestampType : Swift.UInt8, Swift.Codable { + case unknown + case start + case stop + case pause + case resume + case reboot + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } - public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + public enum BmTimestampType : Swift.UInt8, Swift.Codable { + case unknown + case shoeWearOn + case shoeWearOff + case walkingStart + case walkingStop + case runningStart + case runningStop + case cyclingStart + case cyclingStop + case transportStart + case transportStop + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public enum PacketType : Swift.UInt8, Swift.Codable { + public static let maxDataValue: Swift.UInt8 + case unknown + case quantification + case walkAnalysis + case runAnalysis + case stairs + case cycling + case jump + case safety + case staticActivity + case debug + case debugTelemetry + case debugProba + case bmTimestampPacket + case fwTimestampPacket + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { + final public var advertisingServices: [CoreBluetooth.CBUUID]? + final public var managerState: ZTCoreKit.ZTBleManagerState { get + set } - public var content: [Swift.UInt8] { + final public class var instance: ZTCoreKit.ZTBleManager { get } - public init(bytes: [Swift.UInt8]) - public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { get } - public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + final public var macAddress: Swift.String? { get } - public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? + final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { get } - public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + final public var product: ZTCoreKit.ZTProductType? { get + set } -} -@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() + final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + get + } + final public var scanning: Swift.Bool { + get + } + final public var isDfuMode: Swift.Bool { + get + } + final public let onBluetoothStateChange: ZTCoreKit.ZTSignal + final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onDeviceDiscovered: ZTCoreKit.ZTSignal + final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> @objc deinit } -public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { - public var left: Swift.UInt32 - public var right: Swift.UInt32 - public init(bytes: [Swift.UInt8]) +extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +} +public struct ZTPairedDevice : Swift.Codable { + public var macAddress: Swift.String { + get + } public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageInactivityTimeout { - public var description: Swift.String { +public enum DFUStreamHexError : Swift.Error { + case invalidHexFile + public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -@objc public enum DFUFirmwareType : Swift.UInt8 { - case softdevice = 1 - case bootloader = 2 - case application = 4 - case softdeviceBootloader = 3 - case softdeviceBootloaderApplication = 7 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void +public enum ZTScannerResult { + case success(device: ZTCoreKit.ZTDevice) + case cancelled + case failed((any Swift.Error)?) +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit } -public struct DFUFirmwareError : Swift.Error { - public enum FileType { - case zip - case binOrHex - case dat - public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +public enum DFUStreamZipError : Swift.Error { + case noManifest + case invalidManifest + case fileNotFound + case typeNotFound + public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get } - public let type: ZTCoreKit.DFUFirmwareError.FileType } -extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { +extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { public var errorDescription: Swift.String? { get } } -@objc public class DFUFirmware : ObjectiveC.NSObject { - @objc final public let fileName: Swift.String? - @objc final public let fileUrl: Foundation.URL? - @objc public var valid: Swift.Bool { - @objc get - } - @objc public var size: ZTCoreKit.DFUFirmwareSize { - @objc get - } - @objc public var parts: Swift.Int { - @objc get +@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get } - @objc convenience public init(urlToZipFile: Foundation.URL) throws - @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws - @objc convenience public init(zipFile: Foundation.Data) throws - @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) - @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Status : Swift.CustomStringConvertible { - public var code: ZTCoreKit.ZTAlgoStatus? { - get - } - public var timestamp: Swift.UInt32? { - get - } - public var algoMode: ZTCoreKit.ZTAlgoMode? { - get - } - public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { - get - } - public var consecutiveSteps: Swift.UInt8? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) +public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { + case status(id: ZTCoreKit.ZTAlgoStatus) + case startNewChunk + case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) + case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) + case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) + case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) + case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) + public var parameters: [Swift.UInt8] { + get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { + @objc open var softdevice: Swift.UInt32 { + get + } + @objc open var bootloader: Swift.UInt32 { + get + } + @objc open var application: Swift.UInt32 { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() @objc deinit } -infix operator <<- : DefaultPrecedence -infix operator ->> : DefaultPrecedence -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) -public func ->> (left: T, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) -public func ->> (left: T?, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { - public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? - @objc override dynamic public init() - @objc deinit -} -public enum ZTCompressionMethod : Swift.UInt16 { - case none - case deflate - public init?(rawValue: Swift.UInt16) - public typealias RawValue = Swift.UInt16 - public var rawValue: Swift.UInt16 { +extension Swift.String { + public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String + public var fromBase64: Swift.String? { get } -} -public typealias CRC32 = Swift.UInt32 -public typealias ZTConsumer = (_ data: Foundation.Data) throws -> Swift.Void -public typealias ZTProvider = (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data -extension Foundation.Data { - public func crc32(checksum: ZTCoreKit.CRC32) -> ZTCoreKit.CRC32 - public static func compress(size: Swift.Int, bufferSize: Swift.Int, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 - public static func decompress(size: Swift.Int, bufferSize: Swift.Int, skipCRC32: Swift.Bool, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 -} -extension ZTCoreKit.ZTPlist { - public enum Error { - case notFound(at: Foundation.URL?) - case deleted(at: Foundation.URL?) - case parse(at: Foundation.URL?) - case filemanagerRemove(with: any Swift.Error) - case aesKeyFail(key: Swift.String) - case aesInitialVectorFail(iv: Swift.String) - case aesCryptFail(status: Swift.Int32) - case noData - case stringNotInUtf8 - public static let identifier: Swift.String - public func raise() - } -} -extension ZTCoreKit.ZTPlist.Error : Swift.Error, Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var toBase64: Swift.String { get } + public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String + public func substring(range: Foundation.NSRange) -> Swift.String + public func matches(regex: Swift.String) -> [Swift.String] + public static func random(length: Swift.Int = 9) -> Swift.String + public func split(usingRegex pattern: Swift.String) -> [Swift.String] + public func serialNumber() -> Swift.String + public func fileName() -> Swift.String + public func incrementedMacAddress() -> Swift.String } -public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case walking - case running - case pedaling - case jump - case stairsUp - case stairsDown - case standing - case sitting - case kneeling - case tiptoe - case vibration - case slip - case incident - case freewheel - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Int { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +} +extension Swift.UInt8 { + public var bits: [Swift.UInt8] { get } -} -public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { - var rawData: Foundation.Data? { get set } -} -@objc public enum LogLevel : Swift.Int { - case debug = 0 - case verbose = 1 - case info = 5 - case application = 10 - case warning = 15 - case error = 20 - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexValue: Swift.String { get } } -@objc public protocol LoggerDelegate { - @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +extension Swift.UInt16 { + public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { - get - } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - @objc deinit +extension Swift.UInt32 { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { - @objc public func pause() - @objc public func resume() - @objc public func abort() -> Swift.Bool - @objc public func restart() - @objc public var paused: Swift.Bool { - @objc get - } - @objc public var aborted: Swift.Bool { - @objc get - } - @objc deinit +extension Swift.UInt64 { + public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] } -public enum ZTTXPower : Swift.UInt8 { - case dBm0 - case dBm2 - case dBm3 - case dBm4 - case dBm5 - case dBm6 - case dBm7 - case dBm8 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Double { + public var milliseconds: Swift.Int64 { get } } -public class ZTPlist { - public static let folderName: Swift.String - final public let url: Foundation.URL - public var encrypted: Swift.Bool { - get - } - public var encryption: ZTCoreKit.ZTAES? { +extension Swift.Array where Element == Swift.UInt8 { + public var hex: Swift.String { get } - public var dictionary: Foundation.NSMutableDictionary? { +} +extension Swift.Dictionary { + public func merge(dict: [Key : Value]) -> [Key : Value] +} +extension Foundation.Date { + public var timestamp: Swift.Int64 { get } - public var cache: Foundation.NSMutableDictionary? { + public var apiFormat: Swift.String { get - set } - public var volume: Swift.Int64 { + public var logFormat: Swift.String { get } - public var size: Swift.String { +} +extension Swift.Array where Element : CoreBluetooth.CBPeripheral { + public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool +} +extension Swift.Array { + public func chunked(into size: Swift.Int = 1000) -> [[Element]] +} +extension Swift.Array where Element == Swift.String { + public func stringify() -> Swift.String +} +extension CoreBluetooth.CBCharacteristic { + public func notifyValue(_ isEnabled: Swift.Bool) + public func readValue() + @discardableResult + public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +} +public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var fileName: Swift.String { + public var byte1: Swift.UInt8? { get } - public var name: Swift.String { + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkConfig { + public var side: ZTCoreKit.ZTModuleSide { get } - @objc public func save() - public init(insideBundleUrl url: Foundation.URL) - public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName) - convenience public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName, encryption: ZTCoreKit.ZTAES) - public static func delete(_ plist: inout ZTCoreKit.ZTPlist?) - @objc deinit -} -public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { - public var id: Swift.UInt8 { + public var flag: Swift.UInt8 { get } - case generalState - case startNewActivity - case stopNewActivity - case resendData - case deepSleep - case reboot - case detailedBattery - case hardwareInformation - case firmwareInformation - case bootloaderVersion - case setInactivityTimeout - case setDFUInstall - case setDFUMode - case setChunkConfig - case setChunkMinutesInterval - case setChunkSecondsInterval - case selectAlgorithm - case freeMemory - case getTimestamp - case passthroughAlgo - case resetActivity - case getActivityMetadata - case disableHeating - case setHeating - case setTimer - case getTemperature - case getTimer - case startPostureCalibration - case setUserParameters - case resetCalibration - case getCalibrationState - case rawDataSend - case rawDataEnable - case rawDataLookup - case rawDataDebug - case calibrateStatic - case clearCalibrateStatic - case cancelCalibrateStatic - case getCalibrateStaticMessage - case getCalibrateStaticData - case testCalibrateStatic - case memsConfig - case updateTxPower - case updatePhy - case disconnect - case startDFURight - case startDFULeft - case enablePeerConnection - case factoryReset public var description: Swift.String { get } +} +@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + @objc deinit +} +public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { + case undefined + case userRequest + case memoryFull + case inactivity public init?(rawValue: Swift.UInt8) - public typealias AllCases = [ZTCoreKit.ZTCommand] - public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public static var allCases: [ZTCoreKit.ZTCommand] { - get - } public var rawValue: Swift.UInt8 { get } } -open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { - public init(formatString: Swift.String) - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTMultipartFormData { - open var contentType: Swift.String { +@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get - set } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTCommandResponse { - public var bytes: [Swift.UInt8] - public var rightModule: Swift.Bool { +public protocol ZTServiceProtocol : AnyObject { + static var uuid: Swift.String { get } + static var serviceType: ZTCoreKit.ZTService.Type { get } + static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +} +extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { + public static var serviceType: ZTCoreKit.ZTService.Type { get } - public var leftModule: Swift.Bool { +} +public protocol ZTMapContext { +} +final public class ZTMap { + final public let mappingType: ZTCoreKit.ZTMappingType + final public var JSON: [Swift.String : Any] { get } - public var command: ZTCoreKit.ZTCommand? { + final public var isKeyPresent: Swift.Bool { get } - public var status: ZTCoreKit.ZTCommandStatus? { + final public var currentValue: Any? { + get + } + final public var currentKey: Swift.String? { + get + } + final public var nestedKeyDelimiter: Swift.String { + get + } + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + final public let toObject: Swift.Bool + public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { get } + final public func value() -> T? @objc deinit } -public enum ZTCommandStatus : Swift.UInt8 { - case success - case busy - case invalidParam - case invalidState - case forbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerresponse - public var description: Swift.String { +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, default: T) throws -> T + final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +} +extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) + @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) + public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) + public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) + public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) +} +public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { + case staticType + case dynamic + case walking + case running + case cycling + case jump + case stairsUp + case stairsDown + case staticOther + case kneel + case tiptoe + case vibration + case trampling + case crawling + case dynamicOther + case slip + case trip + case active + case inactive + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } +} +public enum ZTTXPower : Swift.UInt8 { + case dBm0 + case dBm2 + case dBm3 + case dBm4 + case dBm5 + case dBm6 + case dBm7 + case dBm8 public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -@_hasMissingDesignatedInitializers public class ZTDefaults { - @objc deinit -} -@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { - final public let stringValue: Swift.String - public init(_ value: Swift.String) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func addEntry(with path: Swift.String, relativeTo baseURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, fileURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, type: ZTCoreKit.ZTEntry.EntryType, uncompressedSize: Swift.UInt32, modificationDate: Foundation.Date = Date(), permissions: Swift.UInt16? = nil, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data) throws - final public func remove(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, progress: Foundation.Progress? = nil) throws -} -@objc public class ZTDevice : ObjectiveC.NSObject { - public var id: Swift.String - public var peripheral: CoreBluetooth.CBPeripheral? { +@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { get } - public var serialNumber: Swift.String { + open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { get } - public var name: Swift.String? { + open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { get } - public var qrCode: Swift.String? { + open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { get } - public var rssi: Swift.Int { + open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { get } - public var macAddressRight: Swift.String? - public var macAddressLeft: Swift.String? - public var advertisementData: [Swift.String : Any]? - public var manufacturer: Swift.String? { + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +extension ZTCoreKit.ZTCore { + final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) + final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) + final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) +} +@_hasMissingDesignatedInitializers public class ZTDeviceInfo { + public var project: ZTCoreKit.ZTProjectCodeType? { get } - public var hardwareRevision: Swift.String? { + public var productCode: ZTCoreKit.ZTProductCodeType? { get } - public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { get } - public var modelNumber: Swift.String? { + public var productType: ZTCoreKit.ZTProductTypeCode? { get } - public var uuid: Swift.String { + public var hardwareVersion: Swift.Int8? { get } - public var isConnected: Swift.Bool { + public var boardVersion: Swift.Int8? { get } - public var isActivityRunning: Swift.Bool { + public var testeur: Swift.String? { get } - public var isDeviceReady: Swift.Bool { + public var sizeRaw: Swift.String? { get } - public var info: ZTCoreKit.ZTDeviceInfo? { + public var year: Swift.Int? { get - set } - public var batterylevel: ZTCoreKit.ZTBatteryLevel? { + public var week: Swift.Int? { get } - public var lastActivityDate: Foundation.Date { + public var SN: Swift.String? { get } - public var generalState: ZTCoreKit.ZTMessageGeneralState? { + public var serialNumber: Swift.String + public var deviceIdentifier: Swift.String + public var macAddressRight: Swift.String? { get - set } - public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { + public var macAddressLeft: Swift.String? { get - set } - public var lowSoftwareInfo: Swift.String { + public var code: Swift.String? { get } - public var activityInfo: ZTCoreKit.ZTMessageActivity? { + @objc deinit +} +extension ZTCoreKit.ZTDeviceInfo { + public var size: Swift.Int? { get - set } - public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { + public var gender: Swift.String? { get - set } - public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { +} +public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { + public var id: Swift.UInt8 { get - set } - public var actualState: ZTCoreKit.ZTDeviceActualState - public var previousState: ZTCoreKit.ZTDeviceActualState - public var hasInitialUpdate: Swift.Bool { + case generalState + case startNewActivity + case stopNewActivity + case resendData + case deepSleep + case reboot + case detailedBattery + case hardwareInformation + case firmwareInformation + case bootloaderVersion + case setInactivityTimeout + case setDFUInstall + case setDFUMode + case setChunkConfig + case setChunkMinutesInterval + case setChunkSecondsInterval + case selectAlgorithm + case freeMemory + case getTimestamp + case passthroughAlgo + case resetActivity + case getActivityMetadata + case disableHeating + case setHeating + case setTimer + case getTemperature + case getTimer + case startPostureCalibration + case setUserParameters + case resetCalibration + case getCalibrationState + case rawDataSend + case rawDataEnable + case rawDataLookup + case rawDataDebug + case calibrateStatic + case clearCalibrateStatic + case cancelCalibrateStatic + case getCalibrateStaticMessage + case getCalibrateStaticData + case testCalibrateStatic + case memsConfig + case updateTxPower + case updatePhy + case disconnect + case startDFURight + case startDFULeft + case enablePeerConnection + case factoryReset + public var description: Swift.String { get } - final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> - final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> - final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> - final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> - final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> - final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> - final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> - final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> - final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> - final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> - final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> - final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> - final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> - final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> - final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> - final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> - final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> - final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> - final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> - final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> - final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> - required public init(peripheral: CoreBluetooth.CBPeripheral) - public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) - public func connect() - public func disconnect() - @objc deinit - @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) - public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService - public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) - public func readGeneralState() -} -extension ZTCoreKit.ZTDevice { - public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool - public var isLowBattery: Swift.Bool? { - get - } -} -@_hasMissingDesignatedInitializers open class ZTServerTrustManager { - @objc deinit -} -public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case success - case busy - case invalidParam - case invalidState - case fwResForbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerResponse public init?(rawValue: Swift.UInt8) + public typealias AllCases = [ZTCoreKit.ZTCommand] + public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public static var allCases: [ZTCoreKit.ZTCommand] { get } -} -public enum DFUStreamZipError : Swift.Error { - case noManifest - case invalidManifest - case fileNotFound - case typeNotFound - public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { + public var rawValue: Swift.UInt8 { get } } -extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } +public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { + init(map: ZTCoreKit.ZTMap) throws } -@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { - get - } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() +extension ZTCoreKit.ZTImmutableMappable { + public func mapping(map: ZTCoreKit.ZTMap) + public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws +} +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType +} +extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { + final public func map(JSON: [Swift.String : Any]) throws -> N + final public func map(JSONString: Swift.String) throws -> N + final public func map(JSONObject: Any) throws -> N + final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] + final public func mapArray(JSONString: Swift.String) throws -> [N] + final public func mapArray(JSONObject: Any) throws -> [N] + final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] + final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] + final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] +} +@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTDeviceInfo { - public var project: ZTCoreKit.ZTProjectCodeType? { - get - } - public var productCode: ZTCoreKit.ZTProductCodeType? { - get - } - public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { - get - } - public var productType: ZTCoreKit.ZTProductTypeCode? { - get - } - public var hardwareVersion: Swift.Int8? { - get - } - public var boardVersion: Swift.Int8? { - get - } - public var testeur: Swift.String? { - get - } - public var sizeRaw: Swift.String? { - get - } - public var year: Swift.Int? { - get - } - public var week: Swift.Int? { +public enum ZTPeriod : Swift.String { + case day + case week + case month + case year + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public var SN: Swift.String? { +} +open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + final public let dateFormatter: Foundation.DateFormatter + public init(dateFormatter: Foundation.DateFormatter) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +final public class ZTSignal { + public typealias ZTSignalCallback = (T) -> Swift.Void + final public var fireCount: Swift.Int { get } - public var serialNumber: Swift.String - public var deviceIdentifier: Swift.String - public var macAddressRight: Swift.String? { + final public var retainLastData: Swift.Bool { get + set } - public var macAddressLeft: Swift.String? { + final public var lastDataFired: T? { get } - public var code: Swift.String? { + final public var observers: [Swift.AnyObject] { get } + public init(retainLastData: Swift.Bool = false) + @discardableResult + final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + final public func fire(_ data: T) + final public func cancelSubscription(for observer: Swift.AnyObject) + final public func cancelAllSubscriptions() + final public func clearLastData() @objc deinit } -extension ZTCoreKit.ZTDeviceInfo { - public var size: Swift.Int? { - get - } - public var gender: Swift.String? { - get - } +extension ZTCoreKit.ZTSignal where T == () { + final public func fire() } -public enum ZTProductType : Swift.String { - case sports - case warm - case safety - case podoSmart - case dfu - case ztDfu - case baliston - public var activityType: Swift.String { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { + public typealias ZTSignalCallback = (T) -> Swift.Void + public typealias ZTSignalFilter = (T) -> Swift.Bool + weak final public var observer: Swift.AnyObject? + final public var once: Swift.Bool + @discardableResult + final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription + final public func cancel() + @objc deinit +} +infix operator => : AssignmentPrecedence +public func => (signal: ZTCoreKit.ZTSignal, data: T) +public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case monitoring + case gaming + public var parameters: [Swift.UInt8] { get } -} -public enum ZTProjectCodeType : Swift.String { - case zt1 - case zt2 - case zt3 - case zt4 - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +@objc public class DFUServiceInitiator : ObjectiveC.NSObject { + @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? + @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? + @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? + @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate + @objc public var packetReceiptNotificationParameter: Swift.UInt16 + @objc public var forceDfu: Swift.Bool + @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool + @objc public var connectionTimeout: Swift.Double + @objc public var dataObjectPreparationDelay: Swift.Double + @objc public var alternativeAdvertisingNameEnabled: Swift.Bool + @objc public var alternativeAdvertisingName: Swift.String? + @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool + @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper + @objc public var disableResume: Swift.Bool + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) + @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator + @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") + @objc public func start() -> ZTCoreKit.DFUServiceController? + @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? + @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @objc deinit +} +public class ZTDateTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get + } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public enum ZTProductType : Swift.String { + case sports + case warm + case safety + case podoSmart + case dfu + case ztDfu + case baliston + public var activityType: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTProjectCodeType : Swift.String { + case zt1 + case zt2 + case zt3 + case zt4 + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } } @@ -1596,606 +1707,306 @@ public enum ZTUnitSizeCodeType : Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public enum Status : Swift.Int8, Swift.Codable { - case new - case sent - case sending - case error - public init?(rawValue: Swift.Int8) - public typealias RawValue = Swift.Int8 - public var rawValue: Swift.Int8 { - get - } - } - public enum TimestampType : Swift.UInt8, Swift.Codable { - case unknown - case start - case stop - case pause - case resume - case reboot - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +open class ZTURLTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.URL + public typealias JSON = Swift.String + public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) + open func transformFromJSON(_ value: Any?) -> Foundation.URL? + open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? + @objc deinit +} +@objc public class ZTDevice : ObjectiveC.NSObject { + public var id: Swift.String + public var peripheral: CoreBluetooth.CBPeripheral? { + get } - public enum BmTimestampType : Swift.UInt8, Swift.Codable { - case unknown - case shoeWearOn - case shoeWearOff - case walkingStart - case walkingStop - case runningStart - case runningStop - case cyclingStart - case cyclingStop - case transportStart - case transportStop - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + get } - public enum PacketType : Swift.UInt8, Swift.Codable { - case unknown - case quantification - case walkAnalysis - case runAnalysis - case stairs - case cycling - case jump - case safety - case staticActivity - case debug - case debugTelemetry - case debugProba - case bmTimestampPacket - case fwTimestampPacket - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var serialNumber: Swift.String { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Acknowledgment : Swift.CustomStringConvertible { - public var command: ZTCoreKit.ZTAlgoCommand? { - get - } - public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var name: Swift.String? { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Event : Swift.CustomStringConvertible { - public var timestamp: Swift.UInt32? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { - get - } - public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { - get - } - public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { - get - } - public var arguments: [Swift.UInt8]? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var qrCode: Swift.String? { + get } -} -public protocol ZTTransformType { - associatedtype Object - associatedtype JSON - func transformFromJSON(_ value: Any?) -> Self.Object? - func transformToJSON(_ value: Self.Object?) -> Self.JSON? -} -public enum ZTError : Swift.Equatable, Swift.Error { - case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) - case ble(type: ZTCoreKit.ZTError.Enums.BleError) - case network(type: ZTCoreKit.ZTError.Enums.NetworkError) - case store(type: ZTCoreKit.ZTError.Enums.StoreError) - case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) - case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) - case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) - case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) - @_hasMissingDesignatedInitializers public class Enums { - @objc deinit + public var rssi: Swift.Int { + get } - public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool - public var error: (any Swift.Error)? { + public var macAddressRight: Swift.String? + public var macAddressLeft: Swift.String? + public var advertisementData: [Swift.String : Any]? + public var manufacturer: Swift.String? { get } -} -extension ZTCoreKit.ZTError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var hardwareRevision: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ScanningError { - case cameraPermission - case wrongCode - case unknown - case notLinkedUser - public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + get } -} -extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var modelNumber: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum BleError { - case invalidState - case resetting - case poweredOff - case unsupported - case timeout - case unauthorized - case notConnected - case notConnectedLeft - case activityIsRunning - case busy - case dfu - case commandError - public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var uuid: Swift.String { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum FirmwareError { - case differentFirmware - case memsError - case leftNoConnected - case restartRequired - case recoverFromDfu - case minimumFwVersion - case updateRequired - case unsupported - case wrongProductType - case firstChunkIdIsGreater - case startTimeZero - public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isConnected: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DfuError { - case noLeftModule - case noUpdate - case wrongFile - case noStart - case aborted - case abortedRight - case abortedLeft - case unsupported - case lowBattery - case inProgress - case updateRequired - case wrongProductType - public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isActivityRunning: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum StoreError { - case missing(Swift.String) - case invalid(Swift.String, Any?) - case wrong(Swift.String) - case unknown - } -} -extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isDeviceReady: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ActivityError { - case notStarted - case notStartedLeft - case notStopped - case unknown - case modeNotSetActivityIsRunning - case previousNotStopped - case previousRestoring - case noUserParametersSet - case rawDataFlowIsRunning - case invalidMobilityScanResults - case outsideActivityDetected - case anomalyDetected - case mobility - public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var info: ZTCoreKit.ZTDeviceInfo? { get + set } -} -extension ZTCoreKit.ZTError.Enums { - public enum NetworkError { - case userLinkError - case inaccessible - case urlError(Foundation.URLError) - case generalError(any Swift.Error) - case noResponse - case invalidResponseType(Foundation.URLResponse) - case noResponseData(Foundation.HTTPURLResponse) - case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) - case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) - } -} -extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var batterylevel: ZTCoreKit.ZTBatteryLevel? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DecodableError { - case invalidKeyPath - case emptyKeyPath - case invalidJSON - public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var lastActivityDate: Foundation.Date { get } -} -public class ZTFirmwareRevision { - public var fwSystemVersion: Swift.String? { + public var generalState: ZTCoreKit.ZTMessageGeneralState? { get + set } - public var productType: ZTCoreKit.ZTProductCodeType? { + public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { get + set } - public var bmVersion: Swift.String? { + public var lowSoftwareInfo: Swift.String { get } - public var date: Foundation.Date? { + public var activityInfo: ZTCoreKit.ZTMessageActivity? { get + set } - public var code: Swift.String { + public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { get + set } - public var fwVersion: Swift.String { + public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { get + set } - public var versions: ZTCoreKit.ZTFwBmVersion? { + public var actualState: ZTCoreKit.ZTDeviceActualState + public var previousState: ZTCoreKit.ZTDeviceActualState + public var hasInitialUpdate: Swift.Bool { get } - public init(code: Swift.String) + final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> + final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> + final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> + final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> + final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> + final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> + final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> + final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> + final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> + final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> + final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> + final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> + final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> + final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> + final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> + final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> + final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> + final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> + final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> + final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> + final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> + required public init(peripheral: CoreBluetooth.CBPeripheral) + public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) + public func connect() + public func disconnect() @objc deinit + @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) + public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService + public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) + public func readGeneralState() } -extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool -} -public struct ZTFwBmVersion { - public var fwSystemMajorVersion: Swift.Int - public var fwSystemMinorVersion: Swift.Int - public var fwSystemBuildVersion: Swift.Int - public var bmMajorVersion: Swift.Int - public var bmMinorVersion: Swift.Int -} -extension ZTCoreKit.ZTFirmwareRevision { - public var fwSystemMajorVersion: Swift.Int { - get - } - public var fwSystemMinorVersion: Swift.Int { - get - } - public var fwSystemBuildVersion: Swift.Int { - get - } - public var bmMajorVersion: Swift.Int { - get - } - public var bmMinorVersion: Swift.Int { +extension ZTCoreKit.ZTDevice { + public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool + public var isLowBattery: Swift.Bool? { get } } -public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { - public enum Mode : Swift.UInt8 { - case manual - case automatic - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public var byte0: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } - public var byte1: Swift.UInt8? { - get - } - public var byte2: Swift.UInt8? { - get - } - public var byte3: Swift.UInt8? { - get - } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension ZTCoreKit.ZTMessageChunkData { +infix operator <<- : DefaultPrecedence +infix operator ->> : DefaultPrecedence +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) +public func ->> (left: T, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) +public func ->> (left: T?, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) public var side: ZTCoreKit.ZTModuleSide { get } - public var mode: ZTCoreKit.ZTMessageChunkData.Mode { - get - } - public var length: Swift.UInt8 { + public var baseMajor: Swift.UInt8 { get } - public var payload: Foundation.Data? { + public var baseMinor: Swift.UInt8 { get } - public var description: Swift.String { + public var baseBuild: Swift.UInt16 { get } -} -@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - public var stringValue: Swift.String? { + public var app: Swift.String { get } - @objc deinit -} -open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.NSDecimalNumber - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? - open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? - @objc deinit -} -public enum ZTLogLevel : Swift.String { - case all - case debug - case info - case error - case fatal - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var appMajor: Swift.UInt8 { get } -} -extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { - public var description: Swift.String { + public var appMinor: Swift.UInt8 { get } -} -public enum ZTLogCategory : Swift.String { - case networkAgent - case modules - case sdk - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var version: Swift.String { get } -} -extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case status - case acknowledgment - case realTimeEvent - case realTimeMetrics - case warning - case error - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } -} -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -@_hasMissingDesignatedInitializers public class ZTLogger { - public static let instance: ZTCoreKit.ZTLogger + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTLogger { - public func ztDebugPrint(_ message: Swift.String) - public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func print(_ value: @autoclosure () -> Any) +public protocol ZTActivityCachable : CoreData.NSManagedObject { + var id: Swift.String { get set } + var packets: Foundation.NSMutableOrderedSet? { get set } + var startDate: Foundation.Date? { get set } + #if compiler(>=5.3) && $AsyncAwait + func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif } -public struct ZTLoggerLine : Swift.Codable { - public static let notification: Foundation.Notification.Name - public static let ble: Foundation.Notification.Name - public var date: Foundation.Date - public let message: Swift.String - public let level: Swift.String - public let category: Swift.String - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws +extension ZTCoreKit.ZTActivityCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool } -@_hasMissingDesignatedInitializers open class ZTNetworkReachabilityManager { - open var isReachable: Swift.Bool { - get - } - open var isReachableOnCellular: Swift.Bool { - get - } - open var isReachableOnEthernetOrWiFi: Swift.Bool { - get - } - open var flags: SystemConfiguration.SCNetworkReachabilityFlags? { +@objc public enum LogLevel : Swift.Int { + case debug = 0 + case verbose = 1 + case info = 5 + case application = 10 + case warning = 15 + case error = 20 + public func name() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - @objc deinit } -public enum ZTNotifyData { - public enum GroupID : Swift.UInt8 { - case common - case warm - case running - case cycling - case safety - case generic - public var description: Swift.String { +@objc public protocol LoggerDelegate { + @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Metrics : Swift.CustomStringConvertible { + public var activityType: ZTCoreKit.ZTActivityType? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var metricId: Swift.UInt8? { get } - } - public enum CommonMessageId : Swift.UInt8 { - case MSG_GENERAL_STATES - case MSG_BATTERY_LEVEL - case MSG_MEMS - case MSG_FLASH - case MSG_TIME - case MSG_HARDWARE - case MSG_SOFTWARE - case MSG_ACTIVITY_INFO - case MSG_ACTIVITY_METADATA - case MSG_RAWDATA_HEADER - case MSG_RAWDATA_FRAME - case MSG_BTLOADER_INFO - case MSG_INACTIVITY_TIMEOUT - case MSG_CHUNK_SEND_STATUS - case MSG_CHUNK_DATA - case MSG_CHUNK_CONFIG - case MSG_DEBUG - public var description: Swift.String { + public var metric: ZTCoreKit.ZTRealtimeMetric? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var value: [Swift.UInt8]? { get } - } -} -extension ZTCoreKit.ZTNotifyData { - public enum WarmMessageId : Swift.UInt8 { - case MSG_HEATING_TEMP_1 - case MSG_HEATING_TEMP_2 - case MSG_HEATING_STEP_R_CNT - case MSG_HEATING_STEP_L_CNT - case MSG_HEATING_SETPOINT_R - case MSG_HEATING_SETPOINT_L - case MSG_GET_HEAT_TIMER - case MSG_HEATING_DEBUG_R - case MSG_HEATING_DEBUG_L - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -extension ZTCoreKit.ZTNotifyData { - public enum RunningMessageId : Swift.UInt8 { - case UNKNOWN +extension ZTCoreKit.ZTRealtimeMessage.Event { + public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case motion + case transition public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum CyclingMessageId : Swift.UInt8 { - case MSG_CADENCE + public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case stepForward + case stepBackward + case stepSideLeft + case stepSideRight + case stepUp + case stepDown public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum SafetyMessageId : Swift.UInt8 { - case MSG_CALIBRATION_SAFETY - case MSG_ALGO_RT_EVENT + public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case low + case medium + case high public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { @@ -2203,38 +2014,213 @@ extension ZTCoreKit.ZTNotifyData { } } } -extension ZTCoreKit.ZTNotifyData { - public enum GenericMessageId : Swift.UInt8 { - case MSG_ALGO_RT_EVENT - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public enum ZTMappingType { + case fromJSON + case toJSON + public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public func map(JSONObject: Any?, toObject object: N) -> N + final public func map(JSONString: Swift.String, toObject object: N) -> N + final public func map(JSON: [Swift.String : Any], toObject object: N) -> N + final public func map(JSONString: Swift.String) -> N? + final public func map(JSONObject: Any?) -> N? + final public func map(JSON: [Swift.String : Any]) -> N? + final public func mapArray(JSONString: Swift.String) -> [N]? + final public func mapArray(JSONObject: Any?) -> [N]? + final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] + final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? + final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? + public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? + public static func parseJSONString(JSONString: Swift.String) -> Any? + @objc deinit +} +extension ZTCoreKit.ZTMapper { + final public func map(JSONfile: Swift.String) -> N? + final public func mapArray(JSONfile: Swift.String) -> [N]? +} +extension ZTCoreKit.ZTMapper { + final public func toJSON(_ object: N) -> [Swift.String : Any] + final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] + final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] + final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] + final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? + final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? + public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? + public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? +} +extension ZTCoreKit.ZTMapper where N : Swift.Hashable { + final public func mapSet(JSONString: Swift.String) -> Swift.Set? + final public func mapSet(JSONObject: Any?) -> Swift.Set? + final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set + final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] + final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? +} +public enum ZTLoggerComponent : Swift.String { + case api + case app + case sdk + case firmware + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTLoggerSeverity : Swift.String { + case debug + case error + case info + case warn + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTDfuPackageType : Swift.String { + case APP + case BL + case SD + case SD_BL + case SD_BL_APP + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { + get + } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + @objc deinit +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Event : Swift.CustomStringConvertible { + public var timestamp: Swift.UInt32? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { + get + } + public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { + get + } + public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { + get + } + public var arguments: [Swift.UInt8]? { + get + } + public var description: Swift.String { + get } + public init(data: Foundation.Data) } } -public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { - case activityNone - case activityStarting - case eraseMemory - case activityRunning - case activityPaused - case activityStopping - case activityPendData - case activitySendData - case unknown +public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { + public enum Mode : Swift.UInt8 { + case manual + case automatic + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var byte0: Swift.UInt8? { + get + } + public var byte1: Swift.UInt8? { + get + } + public var byte2: Swift.UInt8? { + get + } + public var byte3: Swift.UInt8? { + get + } + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkData { + public var side: ZTCoreKit.ZTModuleSide { + get + } + public var mode: ZTCoreKit.ZTMessageChunkData.Mode { + get + } + public var length: Swift.UInt8 { + get + } + public var payload: Foundation.Data? { + get + } public var description: Swift.String { get } +} +public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case timestamp + case modeId + case precisionMode + case numberOfSteps public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } +public enum ZTLogLevel : Swift.String { + case all + case debug + case info + case error + case fatal + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +public enum ZTLogCategory : Swift.String { + case networkAgent + case modules + case sdk + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType where Key : Swift.Hashable, Key : Swift.RawRepresentable, Value : ZTCoreKit.ZTMappable, Key.RawValue == Swift.String { public init() public func transformFromJSON(_ value: Any?) -> [Key : Value]? @@ -2242,494 +2228,367 @@ public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType wher public typealias JSON = Any public typealias Object = [Key : Value] } -public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void -public enum ZTScannerResult { - case success(device: ZTCoreKit.ZTDevice) - case cancelled - case failed((any Swift.Error)?) -} -@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var side: ZTCoreKit.ZTModuleSide { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { + public var bootloaderVersion: Swift.UInt8 { get } - open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { + public var appSupportVersion: Swift.UInt8 { get } - open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { + public var softDeviceId: Swift.UInt8 { get } - open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { + public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { get } - open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { + public var description: Swift.String { get } - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + public enum DfuState : Swift.UInt8 { + case none + case inProgress + case received + case readyForCopy + case activation + case done + case error + case validationError + case activationError + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTServices { - public enum Primary { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - case test - public var uid: Swift.String { - get - } - public var uuid: CoreBluetooth.CBUUID { - get - } - public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +extension ZTCoreKit.ZTCore { + final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) + final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +} +public struct ZTMessageTime : Swift.CustomStringConvertible { + public var timestamp: Swift.Int64 + public var side: ZTCoreKit.ZTModuleSide + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { + get + } +} +public enum ZTNotifyData { + public enum GroupID : Swift.UInt8 { + case common + case warm + case running + case cycling + case safety + case generic + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum PrimaryOld { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public enum CommonMessageId : Swift.UInt8 { + case MSG_GENERAL_STATES + case MSG_BATTERY_LEVEL + case MSG_MEMS + case MSG_FLASH + case MSG_TIME + case MSG_HARDWARE + case MSG_SOFTWARE + case MSG_ACTIVITY_INFO + case MSG_ACTIVITY_METADATA + case MSG_RAWDATA_HEADER + case MSG_RAWDATA_FRAME + case MSG_BTLOADER_INFO + case MSG_INACTIVITY_TIMEOUT + case MSG_CHUNK_SEND_STATUS + case MSG_CHUNK_DATA + case MSG_CHUNK_CONFIG + case MSG_DEBUG + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceInformation { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case manufacturerName - case modelNumber - case serialNumber - case firmwareRevision - case hardwareRevision - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum WarmMessageId : Swift.UInt8 { + case MSG_HEATING_TEMP_1 + case MSG_HEATING_TEMP_2 + case MSG_HEATING_STEP_R_CNT + case MSG_HEATING_STEP_L_CNT + case MSG_HEATING_SETPOINT_R + case MSG_HEATING_SETPOINT_L + case MSG_GET_HEAT_TIMER + case MSG_HEATING_DEBUG_R + case MSG_HEATING_DEBUG_L + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceDFU { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case dfuControlPoint - case dfuPacket - case dfuButtonless - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum RunningMessageId : Swift.UInt8 { + case UNKNOWN + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } } -public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { - case staticType - case dynamic +extension ZTCoreKit.ZTNotifyData { + public enum CyclingMessageId : Swift.UInt8 { + case MSG_CADENCE + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum SafetyMessageId : Swift.UInt8 { + case MSG_CALIBRATION_SAFETY + case MSG_ALGO_RT_EVENT + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum GenericMessageId : Swift.UInt8 { + case MSG_ALGO_RT_EVENT + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { + case activityNone + case activityStarting + case eraseMemory + case activityRunning + case activityPaused + case activityStopping + case activityPendData + case activitySendData + case unknown + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined case walking case running - case cycling + case pedaling case jump case stairsUp case stairsDown - case staticOther - case kneel + case standing + case sitting + case kneeling case tiptoe case vibration - case trampling - case crawling - case dynamicOther case slip - case trip - case active - case inactive + case incident + case freewheel public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -open class ZTTransformOf : ZTCoreKit.ZTTransformType { - public typealias Object = ObjectType - public typealias JSON = JSONType - public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) - open func transformFromJSON(_ value: Any?) -> ObjectType? - open func transformToJSON(_ value: ObjectType?) -> JSONType? - @objc deinit +public protocol ZTDfuDelegate : AnyObject { + func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) + func dfuDelegate(didFinish: Swift.Bool) + func dfuDelegate(didFail error: ZTCoreKit.ZTError?) + func dfuDelegate(progress: Swift.Float?) + func dfuDelegate(leftDidFinish newVersion: Swift.String?) + func dfuDelegate(rightDidFinish newVersion: Swift.String?) } -@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { - @objc open var softdevice: Swift.UInt32 { +public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var isRight: Swift.Bool { get } - @objc open var bootloader: Swift.UInt32 { + public var isLeft: Swift.Bool { get } - @objc open var application: Swift.UInt32 { + public var selectedMode: ZTCoreKit.ZTActivityMode? { get } - @objc deinit -} -public enum ZTActivityMode : Swift.UInt8, Swift.Codable { - case safety - case walking - case running - case cycling - case mobility - public var name: Swift.String { + public var timeInterval: Swift.Int? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case defaultMode - case economicMode - case performanceMode - public var parameters: [Swift.UInt8] { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public class ZTUserShoe : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var code: Swift.String? + public var attributes: [Swift.String : Any]? + public var firmware: ZTCoreKit.ZTUserShoe.Firmware? + public var organizationId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + public class Firmware : ZTCoreKit.ZTMappable { + public var type: Swift.String? + public var arch: Swift.String? + public var version: Swift.String? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -} -@_hasMissingDesignatedInitializers open class Adapter { - @objc deinit -} -@_hasMissingDesignatedInitializers open class Retrier { @objc deinit } -@_hasMissingDesignatedInitializers open class Interceptor { - @objc deinit -} -extension ZTCoreKit.ZTCore { - final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) - final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) - final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) -} extension Foundation.Data { - public var hexString: Swift.String { - get - } -} -public protocol DataConvertible { - static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - public static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension Swift.UInt8 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt16 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt32 : ZTCoreKit.DataConvertible { -} -extension Swift.Int : ZTCoreKit.DataConvertible { -} -extension Swift.Float : ZTCoreKit.DataConvertible { -} -extension Swift.Double : ZTCoreKit.DataConvertible { -} -extension Swift.String : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data -} -extension Foundation.Data : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data -} -public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { - init(map: ZTCoreKit.ZTMap) throws -} -extension ZTCoreKit.ZTImmutableMappable { - public func mapping(map: ZTCoreKit.ZTMap) - public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws -} -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType -} -extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { - final public func map(JSON: [Swift.String : Any]) throws -> N - final public func map(JSONString: Swift.String) throws -> N - final public func map(JSONObject: Any) throws -> N - final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] - final public func mapArray(JSONString: Swift.String) throws -> [N] - final public func mapArray(JSONObject: Any) throws -> [N] - final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] - final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] - final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] -} -@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { + public func macAddress() -> Swift.String? + public var bytes: [Swift.UInt8] { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@objc public enum DFUUuidType : Swift.Int { - case legacyService = 0 - case legacyControlPoint = 1 - case legacyPacket = 2 - case legacyVersion = 3 - case secureService = 4 - case secureControl = 5 - case securePacket = 6 - case buttonlessService = 7 - case buttonlessCharacteristic = 8 - case buttonlessWithoutBondSharing = 9 - case buttonlessWithBondSharing = 10 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexDescription: Swift.String { get } + public init?(hex: Swift.String) + public func getUInt(offset: Swift.Int) -> Swift.UInt16 + public func getUInt32(offset: Swift.Int) -> Swift.UInt32 + public func getFloat(offset: Swift.Int) -> Swift.Float + public func getByte(at index: Swift.Int) -> Swift.Int8 + public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 + public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 + public mutating func append(byte data: Swift.Int8) + public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) + public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -@objc public class DFUUuid : ObjectiveC.NSObject { - @objc final public let uuid: CoreBluetooth.CBUUID - @objc final public let type: ZTCoreKit.DFUUuidType - @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) - @objc deinit +extension Foundation.Data { + public func dataObject(at index: Foundation.Data.Index = 0) -> T + public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int + public func object(at offset: Swift.Int) -> T } -@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { - @objc public var legacyDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { +extension Swift.Numeric { + public var data: Foundation.Data { get } - @objc override dynamic public init() - @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) - @objc deinit } -public class ZTUser : ZTCoreKit.ZTMappable { - public var attributes: [Swift.String : Any] - public var id: Swift.String? - public var organizationId: Swift.String? - public var appId: Swift.String? - public var createdAt: Swift.String? - public var updatedAt: Swift.String? - public var userId: Swift.String? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public class ZTAchievement : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var type: Swift.String? - public var activityId: Swift.String? - public var code: Swift.String? - public var appuserId: Swift.String? - public var data: [Swift.String : Any]? - public var duration: Swift.Int64? - public var calories: Swift.Double? - public var createdAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { - final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) - final public func updateFirmware(path: Swift.String) - @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) - @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) - @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) - @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) - final public func checkDfuState() -} -@_hasMissingDesignatedInitializers open class ZTWebSocket { - @objc deinit -} -open class ZTActivity : Swift.Codable { - public var id: Swift.String { +public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { + case jump + case run + case walk + public var parameters: [Swift.UInt8] { get - set } - public var activityIdentifier: Swift.String - public var appId: Swift.String? - public var activityType: Swift.String - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var startTimestamp: Swift.Int64? - public var endTimestamp: Swift.Int64? - public var tz: Swift.String? - public var status: Swift.String? - public var state: ZTCoreKit.ZTDeviceActualState { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } - public var packetsIds: [Swift.UInt16] - public var cachedPackets: [ZTCoreKit.ZTSegmentData] - public var metaData: ZTCoreKit.ZTMessageActivityMetadata? - public var stopReason: ZTCoreKit.ZTActivityLastStopReason? - public var isRawDataMode: Swift.Bool - public var isAutomatic: Swift.Bool - public var forceStop: Swift.Bool - public var isInterrupted: Swift.Bool - public var firstChunkId: Swift.UInt16? - public var lastChunkId: Swift.UInt16? - public var chunkCount: Swift.UInt16? - public var anchorTimestamp: Swift.Int64? - public var customActivityStartTimestamp: Swift.Int64? - public var customActivityFirstChunkId: Swift.UInt16? - public var fwVersion: Swift.String? - public var shoesSerial: Swift.String? - public init() - open func save() - public func loadAll(firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public func lastSavedChunkId(startId: Swift.UInt16? = 0, lastId: Swift.UInt16? = 0) -> Swift.UInt16 - public func addToCache(_ segment: ZTCoreKit.ZTSegmentData) - public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) - public func saveCachedPackets() - @objc deinit - open func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTActivity { - public var duration: Swift.Double { +public enum ZTEnvironment { + case dev + case staging + case production + case zcdev + case zcstaging + case zcproduction + public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -public protocol ZTDfuDelegate : AnyObject { - func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) - func dfuDelegate(didFinish: Swift.Bool) - func dfuDelegate(didFail error: ZTCoreKit.ZTError?) - func dfuDelegate(progress: Swift.Float?) - func dfuDelegate(leftDidFinish newVersion: Swift.String?) - func dfuDelegate(rightDidFinish newVersion: Swift.String?) -} -@objc public class DFUServiceInitiator : ObjectiveC.NSObject { - @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? - @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? - @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? - @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate - @objc public var packetReceiptNotificationParameter: Swift.UInt16 - @objc public var forceDfu: Swift.Bool - @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool - @objc public var connectionTimeout: Swift.Double - @objc public var dataObjectPreparationDelay: Swift.Double - @objc public var alternativeAdvertisingNameEnabled: Swift.Bool - @objc public var alternativeAdvertisingName: Swift.String? - @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool - @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper - @objc public var disableResume: Swift.Bool - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) - @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator - @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") - @objc public func start() -> ZTCoreKit.DFUServiceController? - @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? - @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @objc deinit -} -public protocol ZTPlistStorage { - static var plist: ZTCoreKit.ZTPlist { get } -} -public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var right: Swift.UInt8 - public var left: Swift.UInt8 - public var min: Swift.UInt8 { - get - } - public var description: Swift.String { +public enum ZTModuleSide : Swift.String, Swift.Codable { + case left + case right + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public init() - public init(data: Foundation.Data) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } +public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable +public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable @objc public enum DFUError : Swift.Int { case remoteLegacyDFUSuccess = 1 case remoteLegacyDFUInvalidState = 2 @@ -2818,369 +2677,186 @@ extension ZTCoreKit.DFUState : Swift.CustomStringConvertible { @objc func dfuStateDidChange(to state: ZTCoreKit.DFUState) @objc func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) } -public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var baseMajor: Swift.UInt8 { - get - } - public var baseMinor: Swift.UInt8 { - get - } - public var baseBuild: Swift.UInt16 { - get - } - public var app: Swift.String { - get - } - public var appMajor: Swift.UInt8 { - get - } - public var appMinor: Swift.UInt8 { - get - } - public var version: Swift.String { - get - } - public var description: Swift.String { - get - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTPlist { - public func encrypt(_ rawValue: Any?) -> Foundation.Data? - public func decrypt(_ data: Foundation.Data?) -> Foundation.Data? - public func decryptedDictionary(decryptedData rawValue: Any?) -> [Swift.String : Any]? - public func decryptedCollection(decryptedData rawValue: Any?) -> [Any]? - public func decryptedString(decryptedData rawValue: Any?) -> Swift.String? - public func decryptedBool(decryptedData rawValue: Any?) -> Swift.Bool? - public func decryptedInt(decryptedData rawValue: Any?) -> Swift.Int? - public func decryptedFloat(decryptedData rawValue: Any?) -> Swift.Float? - public func decryptedDouble(decryptedData rawValue: Any?) -> Swift.Double? - public func decryptedDate(decryptedData rawValue: Any?) -> Foundation.Date? -} -open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { - public typealias Object = UIKit.UIColor - public typealias JSON = Swift.String - public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? - open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? - @objc deinit -} -public class ZTActivityComment : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var timeZone: Swift.String? - public var timestamp: Foundation.Date? - public var text: Swift.String? - public var activityId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - public var mediaFiles: [ZTCoreKit.ZTMediaFile]? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTSegmentData : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var id: Swift.UInt16 - public var activityId: Swift.String? - public var activityType: ZTCoreKit.ZTActivityMode? - public var timestamp: Swift.Int64? - public var duration: Swift.Int? - public var status: ZTCoreKit.ZTSegmentData.Status - public var timestampType: ZTCoreKit.ZTSegmentData.TimestampType - public var bmTimestampType: ZTCoreKit.ZTSegmentData.BmTimestampType - public var packetType: ZTCoreKit.ZTSegmentData.PacketType - public var originalTimestamp: Swift.Int64 - public var packetsNumber: Swift.UInt8 - public var rawDescription: Swift.String { - get - } - public var fwVersion: Swift.String? - public var retryCount: Swift.Int - public enum CodingKeys : Swift.CodingKey { - case id - case activityId - case rawData - case timestamp - case duration - case status - case packetType - case timestampType - case originalTimestamp - case packetsNumber - case fwVersion - case retryCount - public static func == (a: ZTCoreKit.ZTSegmentData.CodingKeys, b: ZTCoreKit.ZTSegmentData.CodingKeys) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public init?(stringValue: Swift.String) - public init?(intValue: Swift.Int) - public var hashValue: Swift.Int { - get - } - public var intValue: Swift.Int? { - get - } - public var stringValue: Swift.String { +public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { + public enum Status : Swift.UInt8 { + case success + case errorOutOfRange + case errorSendFailed + case errorUnexpected + case errorNotFound + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } - public init(data: Foundation.Data) - public init(data: Foundation.Data, activityId: Swift.String, fwversion: Swift.String? = nil) - required public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws - @objc deinit -} -extension ZTCoreKit.ZTSegmentData { - public static func lastSegmentId(activityId: Swift.String) -> Swift.Int - public static func segmentsCount(activityId: Swift.String) -> Swift.Int - public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, startId: Swift.UInt16) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllPackets(activityId: Swift.String, startId: Swift.UInt16? = nil, lastId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.Int] - public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16] - public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.UInt16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTSegmentData? - public static func loadPacket(activityId: Swift.String?, id: Swift.UInt16) -> ZTCoreKit.ZTSegmentData? - public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> ZTCoreKit.ZTSegmentData? - public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTSegmentData - public static func loadAll(activityId: Swift.String, lastChunkId: Swift.UInt16?) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func clear(activityId: Swift.String?) - public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.UInt16? - public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMissedPackets(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16]? - public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.UInt16, lastId: Swift.UInt16?) -> Swift.UInt16? - public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.UInt16, anchorTime: Swift.Int64?) -} -extension ZTCoreKit.ZTSegmentData { - public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool - public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.UInt16?, endIndex: Swift.UInt16?) -> Swift.Bool - public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.UInt16) - public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.UInt16) -> Swift.Bool - public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> Swift.Bool - public static func isSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16?, endId: Swift.UInt16?) -> Swift.Bool - public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.UInt16) -> Swift.Bool -} -extension ZTCoreKit.ZTSegmentData : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTSegmentData, rhs: ZTCoreKit.ZTSegmentData) -> Swift.Bool -} -public enum ZTActivitySummaryStatus : Swift.String { - case started - case complete - case processing - case errored - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public let bytes: [Swift.UInt8] + public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? + public var chunkId: Swift.UInt16? + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } } -open class ZTActivitySummary : ZTCoreKit.ZTMappable { - public var id: Swift.String - public var activityType: Swift.String - public var activityIdentifier: Swift.String - public var start: Swift.String? - public var end: Swift.String? - public var duration: Swift.Int? - public var tz: Swift.String? - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var status: ZTCoreKit.ZTActivitySummaryStatus? - required public init?(map: ZTCoreKit.ZTMap) - open func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - final public let dateFormatter: Foundation.DateFormatter - public init(dateFormatter: Foundation.DateFormatter) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? +open class ZTTransformOf : ZTCoreKit.ZTTransformType { + public typealias Object = ObjectType + public typealias JSON = JSONType + public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) + open func transformFromJSON(_ value: Any?) -> ObjectType? + open func transformToJSON(_ value: ObjectType?) -> JSONType? @objc deinit } -@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { - final public var advertisingServices: [CoreBluetooth.CBUUID]? - final public var managerState: ZTCoreKit.ZTBleManagerState { +open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { + public typealias Object = T + public typealias JSON = T.RawValue + public init() + open func transformFromJSON(_ value: Any?) -> T? + open func transformToJSON(_ value: T?) -> T.RawValue? + @objc deinit +} +extension Foundation.UserDefaults { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { get set } - final public class var instance: ZTCoreKit.ZTBleManager { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { get + set } - final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { get + set } - final public var macAddress: Swift.String? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { get + set } - final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? - final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { get + set } - final public var product: ZTCoreKit.ZTProductType? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { get set } - final public var connectedDevice: ZTCoreKit.ZTDevice? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { get + set } - final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { get + set } - final public var scanning: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { get + set } - final public var isDfuMode: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { get + set } - final public let onBluetoothStateChange: ZTCoreKit.ZTSignal - final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onDeviceDiscovered: ZTCoreKit.ZTSignal - final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - @objc deinit + public subscript(key: Swift.String) -> Any? { + get + set(value) + } + public func value(forKey key: Swift.String) -> T? + public func clear(_ key: Swift.String) + public func clear(_ key: ZTCoreKit.ZTDefaultsKey) + public func clearAll() } -extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +extension Foundation.DateFormatter { + convenience public init(withFormat format: Swift.String, locale: Swift.String) } -public enum ZTAlgoCommand : Swift.UInt8 { - case getStatus - case startNewChunk - case changeProductMode - case setPrecisionMode - case setMinimumNumberOfStrides - case enableStreamingOfValues - case setDisconnectionDelay - case setUserInfo - case setDailyTimestamp - case getPositionOfPods - case enableSpecificPacket - case holdRealtimeStreaming - case getSingleTimeMetrics - case calibrateGravity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { + public init() + @objc deinit +} +public enum ZTDFUState : Swift.Int { + case started + case startedLeft + case completedLeft + case startedRight + case completedRight + case completed + case error + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } } -public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case monitoring - case gaming - public var parameters: [Swift.UInt8] { +public class ZTFirmwareRevision { + public var fwSystemVersion: Swift.String? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var productType: ZTCoreKit.ZTProductCodeType? { get } -} -public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var isRight: Swift.Bool { + public var bmVersion: Swift.String? { get } - public var isLeft: Swift.Bool { + public var date: Foundation.Date? { get } - public var selectedMode: ZTCoreKit.ZTActivityMode? { + public var code: Swift.String { get } - public var timeInterval: Swift.Int? { + public var fwVersion: Swift.String { get } - public var description: Swift.String { + public var versions: ZTCoreKit.ZTFwBmVersion? { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + public init(code: Swift.String) + @objc deinit } -public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { - case jump - case run - case walk - public var parameters: [Swift.UInt8] { +extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool +} +public struct ZTFwBmVersion { + public var fwSystemMajorVersion: Swift.Int + public var fwSystemMinorVersion: Swift.Int + public var fwSystemBuildVersion: Swift.Int + public var bmMajorVersion: Swift.Int + public var bmMinorVersion: Swift.Int +} +extension ZTCoreKit.ZTFirmwareRevision { + public var fwSystemMajorVersion: Swift.Int { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var fwSystemMinorVersion: Swift.Int { get } -} -public enum ZTDFUState : Swift.Int { - case started - case startedLeft - case completedLeft - case startedRight - case completedRight - case completed - case error - public var description: Swift.String { + public var fwSystemBuildVersion: Swift.Int { get } - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var bmMajorVersion: Swift.Int { + get + } + public var bmMinorVersion: Swift.Int { get } } -extension ZTCoreKit.ZTCore { - final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) - final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +@_hasMissingDesignatedInitializers public class ZTCoreDataStack { + public static let shared: ZTCoreKit.ZTCoreDataStack + public var context: CoreData.NSManagedObjectContext { + get + set + } + public func oneTimeBackgroundContext() -> CoreData.NSManagedObjectContext + public func saveOneTimeBackgroundContext(_ oneTimeBackgroundContext: CoreData.NSManagedObjectContext) throws + public func saveContext() throws + @objc deinit +} +public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { + var rawData: Foundation.Data? { get set } } -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable public class ZTMediaFile : ZTCoreKit.ZTMappable { public var id: Swift.String? public var name: Swift.String? @@ -3195,537 +2871,583 @@ public class ZTMediaFile : ZTCoreKit.ZTMappable { public func mapping(map: ZTCoreKit.ZTMap) @objc deinit } -public protocol ZTMapContext { -} -final public class ZTMap { - final public let mappingType: ZTCoreKit.ZTMappingType - final public var JSON: [Swift.String : Any] { +@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } - final public var isKeyPresent: Swift.Bool { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { + public typealias Object = T + public typealias JSON = Any + public init() + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? + open func transformToJSON(_ value: T?) -> Any? + @objc deinit +} +public protocol ZTTransformType { + associatedtype Object + associatedtype JSON + func transformFromJSON(_ value: Any?) -> Self.Object? + func transformToJSON(_ value: Self.Object?) -> Self.JSON? +} +open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.NSDecimalNumber + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? + open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? + @objc deinit +} +@objc public enum DFUUuidType : Swift.Int { + case legacyService = 0 + case legacyControlPoint = 1 + case legacyPacket = 2 + case legacyVersion = 3 + case secureService = 4 + case secureControl = 5 + case securePacket = 6 + case buttonlessService = 7 + case buttonlessCharacteristic = 8 + case buttonlessWithoutBondSharing = 9 + case buttonlessWithBondSharing = 10 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - final public var currentValue: Any? { +} +@objc public class DFUUuid : ObjectiveC.NSObject { + @objc final public let uuid: CoreBluetooth.CBUUID + @objc final public let type: ZTCoreKit.DFUUuidType + @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { + @objc public var legacyDFUService: CoreBluetooth.CBUUID { get } - final public var currentKey: Swift.String? { + @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { get } - final public var nestedKeyDelimiter: Swift.String { + @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { get } - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - final public let toObject: Swift.Bool - public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUPacket: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { get } - final public func value() -> T? + @objc override dynamic public init() + @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) @objc deinit } -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, default: T) throws -> T - final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +@_hasMissingDesignatedInitializers public class ZTLogger { + public static let instance: ZTCoreKit.ZTLogger + @objc deinit } -public struct ZTEntry : Swift.Equatable { - public enum EntryType : Swift.Int { - case file - case directory - case symlink - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } - } - public func path(using encoding: Swift.String.Encoding) -> Swift.String - public var path: Swift.String { - get - } - public var fileAttributes: [Foundation.FileAttributeKey : Any] { - get - } - public var checksum: ZTCoreKit.CRC32 { - get - } - public var type: ZTCoreKit.ZTEntry.EntryType { - get - } - public var compressedSize: Swift.Int { - get - } - public var uncompressedSize: Swift.Int { - get - } - public static func == (lhs: ZTCoreKit.ZTEntry, rhs: ZTCoreKit.ZTEntry) -> Swift.Bool +extension ZTCoreKit.ZTLogger { + public func ztDebugPrint(_ message: Swift.String) + public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) } -@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { - public var name: Swift.String - public var description: Swift.String? - public var mimeType: Swift.String? - public var key: Swift.String? - public var url: Swift.String? - public var data: Foundation.Data? - convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) - required convenience public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit +public struct ZTLoggerLine : Swift.Codable { + public static let notification: Foundation.Notification.Name + public static let ble: Foundation.Notification.Name + public var date: Foundation.Date + public let message: Swift.String + public let level: Swift.String + public let category: Swift.String + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@objc public protocol DFUPeripheralSelectorDelegate { + @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool + @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? } -@propertyWrapper public struct ZTPlisted { - public let key: Swift.String - public let plist: ZTCoreKit.ZTPlist - public let defaultValue: Value - public init(key: Swift.String, plist: ZTCoreKit.ZTPlist, defaultValue: Value) - public var wrappedValue: Value { +public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case success + case busy + case invalidParam + case invalidState + case fwResForbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerResponse + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } } -public struct ZTMapError : Swift.Error { - public var key: Swift.String? - public var currentValue: Any? - public var reason: Swift.String? - public var file: Swift.StaticString? - public var function: Swift.StaticString? - public var line: Swift.UInt? - public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) -} -extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { - public var description: Swift.String { +public enum ZTActivityMode : Swift.UInt8, Swift.Codable { + case safety + case walking + case running + case cycling + case mobility + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -public enum ZTPeriod : Swift.String { - case day - case week - case month - case year +public enum ZTActivitySummaryStatus : Swift.String { + case started + case complete + case processing + case errored public init?(rawValue: Swift.String) public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public func save() - public func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool - public static func forceSegmentsUpload(activityId: Swift.String) - public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTSegmentData) -} -extension Foundation.FileManager { - public func zipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, shouldKeepParent: Swift.Bool = true, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, progress: Foundation.Progress? = nil) throws - public func unzipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, preferredEncoding: Swift.String.Encoding? = nil) throws +open class ZTActivitySummary : ZTCoreKit.ZTMappable { + public var id: Swift.String + public var activityType: Swift.String + public var activityIdentifier: Swift.String + public var start: Swift.String? + public var end: Swift.String? + public var duration: Swift.Int? + public var tz: Swift.String? + public var startDate: Foundation.Date? + public var endDate: Foundation.Date? + public var status: ZTCoreKit.ZTActivitySummaryStatus? + required public init?(map: ZTCoreKit.ZTMap) + open func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Foundation.URL { - public func isContained(in parentDirectoryURL: Foundation.URL) -> Swift.Bool +public protocol ZTCBPeripheralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBPeripheralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + var isAdvertising: Swift.Bool { get } + func startAdvertising(_ advertisementData: [Swift.String : Any]?) + func stopAdvertising() + func setDesiredConnectionLatency(_ latency: CoreBluetooth.CBPeripheralManagerConnectionLatency, for central: CoreBluetooth.CBCentral) + func add(_ service: CoreBluetooth.CBMutableService) + func remove(_ service: CoreBluetooth.CBMutableService) + func removeAllServices() + func respond(to request: CoreBluetooth.CBATTRequest, withResult result: CoreBluetooth.CBATTError.Code) + func updateValue(_ value: Foundation.Data, for characteristic: CoreBluetooth.CBMutableCharacteristic, onSubscribedCentrals centrals: [CoreBluetooth.CBCentral]?) -> Swift.Bool +} +extension CoreBluetooth.CBPeripheralManager : ZTCoreKit.ZTCBPeripheralManagerProtocol { } -public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { - get - } - public var byte1: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var byte2: Swift.UInt8? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { + public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason + public var chunkCount: Swift.Int16 + public var firstChunkId: Swift.Int16 + public var lastChunkId: Swift.Int16 { get } - public var byte3: Swift.UInt8? { + public var startTime: Swift.UInt32 + public var endTime: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } - public init(bytes: [Swift.UInt8]) public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageGeneralState { - public var activityStartedRight: Swift.Bool { +open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { + public typealias Object = UIKit.UIColor + public typealias JSON = Swift.String + public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? + open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? + @objc deinit +} +public class ZTReachability { + public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter + public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { get + set } - public var activityStartedLeft: Swift.Bool { - get + public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? + public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? + public var managerStarted: Swift.Bool + public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { + case all, wifi, cellular, wiredEthernet, loopback, other, none + public var description: Swift.String { + get + } + public func getInterfaceType() -> Network.NWInterface.InterfaceType + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public var hashValue: Swift.Int { + get + } + } + public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { + case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline + public var description: Swift.String { + get + } + public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool + } + public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) + public func startManager() + public func stopManager() + @objc deinit +} +public let ztActivityKey: Swift.String +@_inheritsConvenienceInitializers @objc(ZTActivity) open class ZTActivity : CoreData.NSManagedObject, ZTCoreKit.ZTActivityCachable { + @objc @NSManaged dynamic public var id: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityIdentifier: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var appId: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityType: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var tz: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var status: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packets: Foundation.NSMutableOrderedSet? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var metaDataRawValue: Foundation.Data? { + @objc get + @objc set } - public var pairIsConnected: Swift.Bool { + public var metaData: ZTCoreKit.ZTMessageActivityMetadata? { get } - public var memsHasError: Swift.Bool { - get + public func metaData(_ newValue: ZTCoreKit.ZTMessageActivityMetadata?) + @objc @NSManaged dynamic public var stopReasonRawValue: Foundation.Data? { + @objc get + @objc set } - public var firmwareDifferent: Swift.Bool { + public var stopReason: ZTCoreKit.ZTActivityLastStopReason? { get } - public var actualState: ZTCoreKit.ZTDeviceActualState { - get + public func stopReason(_ newValue: ZTCoreKit.ZTActivityLastStopReason?) + @objc @NSManaged dynamic public var isRawDataMode: Swift.Bool { + @objc get + @objc set } - public var previousState: ZTCoreKit.ZTDeviceActualState { - get + @objc @NSManaged dynamic public var isAutomatic: Swift.Bool { + @objc get + @objc set } - public var description: Swift.String { - get + @objc @NSManaged dynamic public var forceStop: Swift.Bool { + @objc get + @objc set } -} -@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { - @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool - @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? - @objc override dynamic public init() - @objc deinit -} -public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { - public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason - public var chunkCount: Swift.UInt16 - public var firstChunkId: Swift.UInt16 - public var lastChunkId: Swift.UInt16 { - get + @objc @NSManaged dynamic public var isInterrupted: Swift.Bool { + @objc get + @objc set } - public var startTime: Swift.UInt32 - public var endTime: Swift.UInt32 - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { - get + @objc @NSManaged dynamic public var firstChunkId: Swift.Int16 { + @objc get + @objc set } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { - public typealias Object = T - public typealias JSON = Any - public init() - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? - open func transformToJSON(_ value: T?) -> Any? - @objc deinit -} -open class ZTURLTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.URL - public typealias JSON = Swift.String - public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) - open func transformFromJSON(_ value: Any?) -> Foundation.URL? - open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? - @objc deinit -} -public enum ZTBleManagerState : Swift.CustomStringConvertible { - case off - case on - case idle - case scanning - case unauthorized - case resetting - case unknown - case unsupported - public var description: Swift.String { - get + @objc @NSManaged dynamic public var lastChunkId: Swift.Int16 { + @objc get + @objc set } - public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var chunkCount: Swift.Int16 { + @objc get + @objc set } -} -public class ZTUserShoe : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var code: Swift.String? - public var attributes: [Swift.String : Any]? - public var firmware: ZTCoreKit.ZTUserShoe.Firmware? - public var organizationId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - public class Firmware : ZTCoreKit.ZTMappable { - public var type: Swift.String? - public var arch: Swift.String? - public var version: Swift.String? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit + @objc @NSManaged dynamic public var anchorTimestamp: Swift.Int64 { + @objc get + @objc set } - @objc deinit -} -public enum ZTLoggerComponent : Swift.String { - case api - case app - case sdk - case firmware - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityStartTimestamp: Swift.Int64 { + @objc get + @objc set } -} -public enum ZTLoggerSeverity : Swift.String { - case debug - case error - case info - case warn - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityFirstChunkId: Swift.Int16 { + @objc get + @objc set } -} -public enum ZTMappingType { - case fromJSON - case toJSON - public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set } -} -final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public func map(JSONObject: Any?, toObject object: N) -> N - final public func map(JSONString: Swift.String, toObject object: N) -> N - final public func map(JSON: [Swift.String : Any], toObject object: N) -> N - final public func map(JSONString: Swift.String) -> N? - final public func map(JSONObject: Any?) -> N? - final public func map(JSON: [Swift.String : Any]) -> N? - final public func mapArray(JSONString: Swift.String) -> [N]? - final public func mapArray(JSONObject: Any?) -> [N]? - final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] - final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? - final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? - public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? - public static func parseJSONString(JSONString: Swift.String) -> Any? - @objc deinit -} -extension ZTCoreKit.ZTMapper { - final public func map(JSONfile: Swift.String) -> N? - final public func mapArray(JSONfile: Swift.String) -> [N]? -} -extension ZTCoreKit.ZTMapper { - final public func toJSON(_ object: N) -> [Swift.String : Any] - final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] - final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] - final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] - final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? - final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? - public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? - public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? -} -extension ZTCoreKit.ZTMapper where N : Swift.Hashable { - final public func mapSet(JSONString: Swift.String) -> Swift.Set? - final public func mapSet(JSONObject: Any?) -> Swift.Set? - final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set - final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] - final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? -} -public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { - public enum Status : Swift.UInt8 { - case success - case errorOutOfRange - case errorSendFailed - case errorUnexpected - case errorNotFound - case unknown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + @objc @NSManaged dynamic public var shoesSerial: Swift.String? { + @objc get + @objc set } - public let bytes: [Swift.UInt8] - public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? - public var chunkId: Swift.UInt16? - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { + public var duration: Swift.Double { get } + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + public func loadAll(firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + public func lastSavedChunkId(startId: Swift.Int16? = 0, lastId: Swift.Int16? = 0) -> Swift.Int16 + public func addToCache(_ segment: ZTCoreKit.ZTPacket) + public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) + public func saveCachedPackets() + #if compiler(>=5.3) && $AsyncAwait + open func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif + @objc deinit } -@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String +extension ZTCoreKit.ZTActivity { + @nonobjc public class func fetchRequest() -> CoreData.NSFetchRequest + public func getPacketIds() -> [Swift.Int16] + @discardableResult + public func setPackets(ids: [Swift.Int16]) -> [Swift.Int16] + @discardableResult + public func addPacket(id: Swift.Int16) -> [Swift.Int16] + public func getActulState() -> ZTCoreKit.ZTDeviceActualState + public func update(actualState: ZTCoreKit.ZTDeviceActualState) +} +@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String open var data: Foundation.Data? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { - case undefined - case userRequest - case memoryFull - case inactivity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } -} -extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) - @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) - public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) - public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) - public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) -} -extension Foundation.DateFormatter { - convenience public init(withFormat format: Swift.String, locale: Swift.String) +extension ZTCoreKit.ZTCore { + final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) + final public func updateFirmware(path: Swift.String) } -open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { - public init() - @objc deinit +extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { + @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) + final public func dfuFailed(error: ZTCoreKit.ZTError) + @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) + @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) + @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) + final public func checkDfuState() } -@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +@_inheritsConvenienceInitializers @objc(ZTPacket) open class ZTPacket : CoreData.NSManagedObject, ZTCoreKit.ZTNotifyDataMessage, ZTCoreKit.ZTPacketCachable { + @available(*, deprecated, message: "This property will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static let key: Swift.String + @objc @NSManaged dynamic public var id: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var createdAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var fulfilledAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var scheduledDeleted: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var sentAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var rawData: Foundation.Data? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activity: ZTCoreKit.ZTActivity? { + @objc get + @objc set + } + public var activityType: ZTCoreKit.ZTActivityMode? + @objc @NSManaged dynamic public var timestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var duration: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var statusRawValue: Swift.Int16 { + @objc get + @objc set + } + public var status: ZTCoreKit.ZTPacket.Status { get + set } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let object: T? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> T - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> T - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableArrayResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [T] - @available(*, deprecated, message: "This method will be deleted in a future version of the SDK.") - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> [T] - @objc deinit -} -open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { - public typealias Object = T - public typealias JSON = T.RawValue - public init() - open func transformFromJSON(_ value: Any?) -> T? - open func transformToJSON(_ value: T?) -> T.RawValue? - @objc deinit -} -public class ZTReachability { - public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter - public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { + public var timestampType: ZTCoreKit.ZTPacket.TimestampType { get set } - public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? - public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? - public var managerStarted: Swift.Bool - public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { - case all, wifi, cellular, wiredEthernet, loopback, other, none - public var description: Swift.String { - get - } - public func getInterfaceType() -> Network.NWInterface.InterfaceType + public var bmTimestampType: ZTCoreKit.ZTPacket.BmTimestampType { + get + set + } + public var packetType: ZTCoreKit.ZTPacket.PacketType { + get + set + } + @objc @NSManaged dynamic public var originalTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packetsNumber: Swift.Int16 { + @objc get + @objc set + } + public var rawDescription: Swift.String { + get + } + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var retryCount: Swift.Int16 { + @objc get + @objc set + } + public enum CodingKeys : Swift.CodingKey { + case id + case activityId + case rawData + case timestamp + case duration + case status + case packetType + case timestampType + case originalTimestamp + case packetsNumber + case fwVersion + case retryCount + public static func == (a: ZTCoreKit.ZTPacket.CodingKeys, b: ZTCoreKit.ZTPacket.CodingKeys) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) - public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) public var hashValue: Swift.Int { get } - } - public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { - case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline - public var description: Swift.String { + public var intValue: Swift.Int? { get } - public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool - } - public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) - public func startManager() - public func stopManager() - @objc deinit -} -open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.Double - public enum Unit : Foundation.TimeInterval { - case seconds - case milliseconds - public init?(rawValue: Foundation.TimeInterval) - public typealias RawValue = Foundation.TimeInterval - public var rawValue: Foundation.TimeInterval { + public var stringValue: Swift.String { get } } - public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + public init(data: Foundation.Data) + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + required public init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String? = nil, context: CoreData.NSManagedObjectContext, name: Swift.String) + required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + open func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool + public typealias Activity = ZTCoreKit.ZTActivity @objc deinit } -public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void -public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void -public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void -public typealias ZTCompletion = (() -> Swift.Void) -public protocol ZTBaseMappable { - mutating func mapping(map: ZTCoreKit.ZTMap) -} -public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { - init?(map: ZTCoreKit.ZTMap) -} -public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { - static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? -} -extension ZTCoreKit.ZTMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) -} -extension ZTCoreKit.ZTBaseMappable { - public func toJSON() -> [Swift.String : Any] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func lastSegmentId(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func segmentsCount(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, startId: Swift.Int16) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPackets(activityId: Swift.String, startId: Swift.Int16? = nil, lastId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.Int16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPacket(activityId: Swift.String?, id: Swift.Int16) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTPacket + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, lastChunkId: Swift.Int16?) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func clear(activityId: Swift.String?) + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedPackets(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16]? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.Int16, lastId: Swift.Int16?) -> Swift.Int16? +} +extension ZTCoreKit.ZTPacket { + public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool + public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.Int16?, endIndex: Swift.Int16?) -> Swift.Bool + public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.Int16) + public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.Int16) -> Swift.Bool + public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> Swift.Bool + public static func isSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16?, endId: Swift.Int16?) -> Swift.Bool + public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.Int16) -> Swift.Bool } @_hasMissingDesignatedInitializers final public class ZTApi { public static let shared: ZTCoreKit.ZTApi @@ -3747,12 +3469,12 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func getActivities(code: Swift.String?, offset: Swift.Int, limit: Swift.Int, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: (([T]?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getActivity(id: Swift.String, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func startActivity(id: Swift.String, code: Swift.String, startTime: Swift.Int64 = Date().timestamp, attributes: [Swift.String : Any]? = nil, completion: ((Swift.String?, (any Swift.Error)?) -> Swift.Void)?) - final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTSegmentData, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTSegmentData], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int16? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTPacket, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTPacket], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) final public func deleteActivity(id: Swift.String, completion: ZTCoreKit.ZTBaseResult? = nil) final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, data: [Swift.String]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable - final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable + final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> Swift.Void)) final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([[Swift.String : Any]]?, (any Swift.Error)?) -> Swift.Void)) @@ -3791,224 +3513,408 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func resendSavedRequests() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func extract(_ entry: ZTCoreKit.ZTEntry, to url: Foundation.URL, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil) throws -> ZTCoreKit.CRC32 - final public func extract(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 +public protocol ZTCBPeripheralProtocol { + var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } + var name: Swift.String? { get } + var rssi: Foundation.NSNumber? { get } + var state: CoreBluetooth.CBPeripheralState { get } + var services: [CoreBluetooth.CBService]? { get } + var identifier: Foundation.UUID { get } + func discoverServices(_: [CoreBluetooth.CBUUID]?) + func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) + func readValue(for: CoreBluetooth.CBCharacteristic) + func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) + func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) } -public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void -@_hasMissingDesignatedInitializers final public class ZTCore { - public static let version: Swift.String - final public var zcVersion: Swift.String - public static let shared: ZTCoreKit.ZTCore - final public let bleManager: ZTCoreKit.ZTBleManager - final public var settings: ZTCoreKit.ZTSettings { +extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { +} +public protocol ZTBaseMappable { + mutating func mapping(map: ZTCoreKit.ZTMap) +} +public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { + init?(map: ZTCoreKit.ZTMap) +} +public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { + static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? +} +extension ZTCoreKit.ZTMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) +} +extension ZTCoreKit.ZTBaseMappable { + public func toJSON() -> [Swift.String : Any] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +public struct ZTRealtimeMessage : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } + public enum Side : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + get + } + public var content: [Swift.UInt8] { + get + } + public init(bytes: [Swift.UInt8]) + public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + get + } + public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + get + } + public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + get + } + public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + get + } +} +@_hasMissingDesignatedInitializers public class ZTDefaults { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { + final public let stringValue: Swift.String + public init(_ value: Swift.String) + @objc deinit +} +@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + public var stringValue: Swift.String? { + get + } + @objc deinit +} +public class ZTActivityComment : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var timeZone: Swift.String? + public var timestamp: Foundation.Date? + public var text: Swift.String? + public var activityId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + public var mediaFiles: [ZTCoreKit.ZTMediaFile]? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +public enum ZTAlgoCommand : Swift.UInt8 { + case getStatus + case startNewChunk + case changeProductMode + case setPrecisionMode + case setMinimumNumberOfStrides + case enableStreamingOfValues + case setDisconnectionDelay + case setUserInfo + case setDailyTimestamp + case getPositionOfPods + case enableSpecificPacket + case holdRealtimeStreaming + case getSingleTimeMetrics + case calibrateGravity + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var appUserId: Swift.String? { +} +public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case status + case acknowledgment + case realTimeEvent + case realTimeMetrics + case warning + case error + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var lastCommand: ZTCoreKit.ZTCommand? - final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] - final public var lastActivityId: Swift.String? { - get +} +public enum ZTError : Swift.Equatable, Swift.Error { + case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) + case ble(type: ZTCoreKit.ZTError.Enums.BleError) + case network(type: ZTCoreKit.ZTError.Enums.NetworkError) + case store(type: ZTCoreKit.ZTError.Enums.StoreError) + case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) + case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) + case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) + case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) + @_hasMissingDesignatedInitializers public class Enums { + @objc deinit } - final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { + public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool + public var error: (any Swift.Error)? { get } - final public var connectedDevice: ZTCoreKit.ZTDevice? { +} +extension ZTCoreKit.ZTError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastDeviceSerialNumber: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum ScanningError { + case cameraPermission + case wrongCode + case unknown + case notLinkedUser + public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var lastDeviceQRCode: Swift.String? { +} +extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastQRCode: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum BleError { + case invalidState + case resetting + case poweredOff + case unsupported + case timeout + case unauthorized + case notConnected + case notConnectedLeft + case activityIsRunning + case busy + case dfu + case commandError + public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var isDfuInProgress: Swift.Bool { +} +extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? - final public var firmwareDfuState: ZTCoreKit.DFUState? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum FirmwareError { + case differentFirmware + case memsError + case leftNoConnected + case restartRequired + case recoverFromDfu + case minimumFwVersion + case updateRequired + case unsupported + case wrongProductType + case firstChunkIdIsGreater + case startTimeZero + public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { +} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> - final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> - final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuCopied: ZTCoreKit.ZTSignal<()> - final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) - final public func clearUser() - final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) - @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func stopScan() - final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) - #if compiler(>=5.3) && $AsyncAwait - final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice - #endif - @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") - final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) - final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) - final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func setDeepSleepMode() throws - @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Metrics : Swift.CustomStringConvertible { - public var activityType: ZTCoreKit.ZTActivityType? { - get - } - public var metricId: Swift.UInt8? { - get - } - public var metric: ZTCoreKit.ZTRealtimeMetric? { - get - } - public var value: [Swift.UInt8]? { +extension ZTCoreKit.ZTError.Enums { + public enum DfuError { + case noLeftModule + case noUpdate + case wrongFile + case noStart + case aborted + case abortedRight + case abortedLeft + case unsupported + case lowBattery + case inProgress + case updateRequired + case wrongProductType + public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public var description: Swift.String { + } +} +extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum StoreError { + case missing(Swift.String) + case invalid(Swift.String, Any?) + case wrong(Swift.String) + case unknown + } +} +extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum ActivityError { + case notStarted + case notStartedLeft + case notStopped + case unknown + case modeNotSetActivityIsRunning + case previousNotStopped + case previousRestoring + case noUserParametersSet + case rawDataFlowIsRunning + case invalidMobilityScanResults + case outsideActivityDetected + case anomalyDetected + case mobility + public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public init(data: Foundation.Data) } } -@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum NetworkError { + case userLinkError + case inaccessible + case urlError(Foundation.URLError) + case generalError(any Swift.Error) + case noResponse + case invalidResponseType(Foundation.URLResponse) + case noResponseData(Foundation.HTTPURLResponse) + case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) + case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) + } +} +extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTJSONParameterEncoder { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTURLEncodedFormParameterEncoder { - @objc deinit } -@_hasMissingDesignatedInitializers final public class ZTSettings { - public static let shared: ZTCoreKit.ZTSettings - final public var version: Swift.String? - final public var logLevel: ZTCoreKit.ZTLogLevel - final public var environment: ZTCoreKit.ZTEnvironment - final public var autoConnect: Swift.Bool - final public var enableEventLogging: Swift.Bool - final public var shouldObtaineMissedChunks: Swift.Bool - final public var enableRawDataCheck: Swift.Bool - final public var shouldAutoResendData: Swift.Bool - final public var activityDataSyncThreshold: Swift.Int - final public var enableBackgroundDFU: Swift.Bool - final public var enableBackgroundDataStreaming: Swift.Bool - final public var activityChunkStoreForFreeMemory: Swift.Int - final public var activityChunkRetryLimit: Swift.Int - final public var checkFirmwareUpdatePeriod: Swift.Int - final public var enableAnalyticsData: Swift.Bool - final public var autorestartBackgroundDfu: Swift.Bool - final public var getChunksOnApplicationDidBecomeActive: Swift.Bool - final public var enablePacketsDataLogging: Swift.Bool - final public var cachedPacketsBatchUploadSize: Swift.Int - final public var chunkDuration: Swift.Int? { +extension ZTCoreKit.ZTError.Enums { + public enum DecodableError { + case invalidKeyPath + case emptyKeyPath + case invalidJSON + public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } +} +extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public func clear() - @objc deinit } -@_hasMissingDesignatedInitializers open class ZTClosureEventMonitor { - open var sessionDidBecomeInvalidWithError: ((Foundation.URLSession, (any Swift.Error)?) -> Swift.Void)? - open var taskDidReceiveChallenge: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> Swift.Void)? - open var taskDidSendBodyData: ((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var taskNeedNewBodyStream: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var taskWillPerformHTTPRedirection: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> Swift.Void)? - open var taskDidFinishCollectingMetrics: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> Swift.Void)? - open var taskDidComplete: ((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> Swift.Void)? - open var taskIsWaitingForConnectivity: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var dataTaskDidReceiveData: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> Swift.Void)? - open var dataTaskWillCacheResponse: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> Swift.Void)? - open var downloadTaskDidFinishDownloadingToURL: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> Swift.Void)? - open var downloadTaskDidWriteData: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var downloadTaskDidResumeAtOffset: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> Swift.Void)? - @objc deinit -} -extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} -extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} -extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Equatable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareType : Swift.Hashable {} extension ZTCoreKit.DFUFirmwareType : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Equatable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} -extension ZTCoreKit.LogLevel : Swift.Equatable {} -extension ZTCoreKit.LogLevel : Swift.Hashable {} -extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.Status : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.RawRepresentable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityType : Swift.Equatable {} +extension ZTCoreKit.ZTActivityType : Swift.Hashable {} +extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} extension ZTCoreKit.ZTTXPower : Swift.Equatable {} extension ZTCoreKit.ZTTXPower : Swift.Hashable {} extension ZTCoreKit.ZTTXPower : Swift.RawRepresentable {} extension ZTCoreKit.ZTCommand : Swift.Equatable {} extension ZTCoreKit.ZTCommand : Swift.Hashable {} extension ZTCoreKit.ZTCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} -extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.Equatable {} +extension ZTCoreKit.ZTPeriod : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTProductType : Swift.Equatable {} extension ZTCoreKit.ZTProductType : Swift.Hashable {} extension ZTCoreKit.ZTProductType : Swift.RawRepresentable {} @@ -4033,42 +3939,44 @@ extension ZTCoreKit.ZTGenderSizeCodeType : Swift.RawRepresentable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Equatable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Hashable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.Equatable {} +extension ZTCoreKit.LogLevel : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMappingType : Swift.Equatable {} +extension ZTCoreKit.ZTMappingType : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Equatable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Hashable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogLevel : Swift.Equatable {} extension ZTCoreKit.ZTLogLevel : Swift.Hashable {} extension ZTCoreKit.ZTLogLevel : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogCategory : Swift.Equatable {} extension ZTCoreKit.ZTLogCategory : Swift.Hashable {} extension ZTCoreKit.ZTLogCategory : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Equatable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Hashable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.RawRepresentable {} @@ -4093,72 +4001,62 @@ extension ZTCoreKit.ZTNotifyData.GenericMessageId : Swift.RawRepresentable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Equatable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Hashable {} extension ZTCoreKit.ZTDeviceActualState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.Equatable {} -extension ZTCoreKit.ZTActivityType : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} -extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} -extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} -extension ZTCoreKit.DFUUuidType : Swift.Equatable {} -extension ZTCoreKit.DFUUuidType : Swift.Hashable {} -extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} +extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} +extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} +extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUError : Swift.Equatable {} extension ZTCoreKit.DFUError : Swift.Hashable {} extension ZTCoreKit.DFUError : Swift.RawRepresentable {} extension ZTCoreKit.DFUState : Swift.Equatable {} extension ZTCoreKit.DFUState : Swift.Hashable {} extension ZTCoreKit.DFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDFUState : Swift.Equatable {} +extension ZTCoreKit.ZTDFUState : Swift.Hashable {} +extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} +extension ZTCoreKit.DFUUuidType : Swift.Equatable {} +extension ZTCoreKit.DFUUuidType : Swift.Hashable {} +extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} +extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} +extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Equatable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Hashable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Equatable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Hashable {} extension ZTCoreKit.ZTAlgoCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} -extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDFUState : Swift.Equatable {} -extension ZTCoreKit.ZTDFUState : Swift.Hashable {} -extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Equatable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Hashable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTPeriod : Swift.Equatable {} -extension ZTCoreKit.ZTPeriod : Swift.Hashable {} -extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMappingType : Swift.Equatable {} -extension ZTCoreKit.ZTMappingType : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} -extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json index f231381..d22dc7c 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -4,6 +4,26 @@ "name": "TopLevel", "printedName": "TopLevel", "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -16,207 +36,68 @@ }, { "kind": "TypeDecl", - "name": "ZTAlgoStatus", - "printedName": "ZTAlgoStatus", + "name": "ZTEnum", + "printedName": "ZTEnum", "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "modeId", - "printedName": "modeId", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "precisionMode", - "printedName": "precisionMode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "numberOfSteps", - "printedName": "numberOfSteps", + "name": "description", + "printedName": "description", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvp", + "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvg", + "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", + "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -225,73 +106,39 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", + "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", + "sugared_genericSig": "", + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO", - "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", @@ -299,63 +146,9 @@ "printedName": "Decodable", "usr": "s:Se", "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "ObjectiveC", - "printedName": "ObjectiveC", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "Import", "name": "Foundation", @@ -366,61 +159,33 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreTelephony", - "printedName": "CoreTelephony", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTAES", - "printedName": "ZTAES", + "name": "ZTMediaFileTemplate", + "printedName": "ZTMediaFileTemplate", "children": [ { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV3key10Foundation4DataVvp", - "mangledName": "$s9ZTCoreKit5ZTAESV3key10Foundation4DataVvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -430,42 +195,91 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV3key10Foundation4DataVvg", - "mangledName": "$s9ZTCoreKit5ZTAESV3key10Foundation4DataVvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "iv", - "printedName": "iv", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV2iv10Foundation4DataVvp", - "mangledName": "$s9ZTCoreKit5ZTAESV2iv10Foundation4DataVvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -475,81 +289,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV2iv10Foundation4DataVvg", - "mangledName": "$s9ZTCoreKit5ZTAESV2iv10Foundation4DataVvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "algorithm", - "printedName": "algorithm", - "children": [ + }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9algorithms6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9algorithms6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9algorithms6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9algorithms6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "options", - "printedName": "options", + "name": "mimeType", + "printedName": "mimeType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV7optionss6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV7optionss6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -558,80 +399,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV7optionss6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV7optionss6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "encOption", - "printedName": "encOption", - "children": [ + }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9encOptions6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9encOptions6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9encOptions6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9encOptions6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "decOption", - "printedName": "decOption", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV9decOptions6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV9decOptions6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -640,39 +509,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV9decOptions6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV9decOptions6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "successStatus", - "printedName": "successStatus", + "name": "url", + "printedName": "url", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvp", - "mangledName": "$s9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvp", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -681,99 +619,82 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvg", - "mangledName": "$s9ZTCoreKit5ZTAESV13successStatuss6UInt32Vvg", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "evaluate", - "printedName": "evaluate(_:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" }, { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV8evaluate_4withSbs5Int32V_s6UInt32VtF", - "mangledName": "$s9ZTCoreKit5ZTAESV8evaluate_4withSbs5Int32V_s6UInt32VtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:iv:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit5ZTAESV3key2ivACSgSS_SStcfc", - "mangledName": "$s9ZTCoreKit5ZTAESV3key2ivACSgSS_SStcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { - "kind": "Function", - "name": "encrypt", - "printedName": "encrypt(data:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", @@ -788,73 +709,109 @@ } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV7encrypt4data10Foundation4DataVSgAH_tF", - "mangledName": "$s9ZTCoreKit5ZTAESV7encrypt4data10Foundation4DataVSgAH_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decrypt", - "printedName": "decrypt(data:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV7decrypt4data10Foundation4DataVSgAI_tF", - "mangledName": "$s9ZTCoreKit5ZTAESV7decrypt4data10Foundation4DataVSgAI_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "crypt", - "printedName": "crypt(data:option:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:fileName:mimeType:description:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + }, { "kind": "TypeNominal", "name": "Optional", @@ -867,32 +824,123 @@ "usr": "s:10Foundation4DataV" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMediaFileTemplate?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "Convenience", + "Required" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTAESV5crypt4data6option10Foundation4DataVSgAJ_s6UInt32VtF", - "mangledName": "$s9ZTCoreKit5ZTAESV5crypt4data6option10Foundation4DataVSgAJ_s6UInt32VtF", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -901,13 +949,30 @@ "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit5ZTAESV", - "mangledName": "$s9ZTCoreKit5ZTAESV", + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC", + "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" + }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } ] }, { @@ -921,37 +986,13 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTRetryPolicy", - "printedName": "ZTRetryPolicy", - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTRetryPolicyC", - "mangledName": "$s9ZTCoreKit13ZTRetryPolicyC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTConnectionLostRetryPolicy", - "printedName": "ZTConnectionLostRetryPolicy", - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTConnectionLostRetryPolicyC", - "mangledName": "$s9ZTCoreKit27ZTConnectionLostRetryPolicyC", + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit13ZTRetryPolicyC", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTRetryPolicy" + "ImplementationOnly" ] }, { @@ -964,43 +1005,41 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTCommandsCharacteristic", - "printedName": "ZTCommandsCharacteristic", + "name": "ZTBatteryLevel", + "printedName": "ZTBatteryLevel", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -1010,52 +1049,97 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "right", + "printedName": "right", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -1068,131 +1152,194 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "left", + "printedName": "left", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandsCharacteristic", - "printedName": "ZTCoreKit.ZTCommandsCharacteristic", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "kind": "Var", + "name": "min", + "printedName": "min", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPairedDevice", - "printedName": "ZTPairedDevice", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { "kind": "Var", - "name": "macAddress", - "printedName": "macAddress", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -1202,8 +1349,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -1223,13 +1370,63 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelVACycfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelVACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, { "kind": "Constructor", "name": "init", @@ -1237,9 +1434,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTPairedDevice", - "printedName": "ZTCoreKit.ZTPairedDevice", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" }, { "kind": "TypeNominal", @@ -1249,8 +1446,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -1274,8 +1471,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -1283,14 +1480,21 @@ } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit14ZTPairedDeviceV", - "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV", + "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" + }, { "kind": "Conformance", "name": "Decodable", @@ -1309,8 +1513,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -1318,315 +1522,11 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTDfuPackageType", - "printedName": "ZTDfuPackageType", - "children": [ - { - "kind": "Var", - "name": "APP", - "printedName": "APP", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "BL", - "printedName": "BL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD", - "printedName": "SD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD_BL", - "printedName": "SD_BL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "SD_BL_APP", - "printedName": "SD_BL_APP", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDfuPackageType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDfuPackageType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO", - "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" }, { "kind": "Import", @@ -1638,17 +1538,10 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTPairedSolesCharacteristic", - "printedName": "ZTPairedSolesCharacteristic", + "name": "ZTDfuService", + "printedName": "ZTDfuService", "children": [ { "kind": "Var", @@ -1663,8 +1556,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", "static": true, "declAttributes": [ @@ -1690,8 +1583,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", "moduleName": "ZTCoreKit", "static": true, "implicit": true, @@ -1704,33 +1597,48 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -1741,359 +1649,190 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPairedSolesCharacteristic", - "printedName": "ZTCoreKit.ZTPairedSolesCharacteristic", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC", - "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SecureDFUServiceInitiator", - "printedName": "SecureDFUServiceInitiator", - "children": [ - { - "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "startWithTargetWithIdentifier:", - "declAttributes": [ - "ObjC", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SecureDFUServiceInitiator", - "printedName": "ZTCoreKit.SecureDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", - "moduleName": "ZTCoreKit", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithCentralManager:target:", - "declAttributes": [ - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "SecureDFUServiceInitiator", - "printedName": "ZTCoreKit.SecureDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "ZTDfuService", + "printedName": "ZTCoreKit.ZTDfuService", + "usr": "s:9ZTCoreKit12ZTDfuServiceC" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "usr": "s:9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", "declAttributes": [ - "ObjC", - "Override" + "Required" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator", - "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC", + "usr": "s:9ZTCoreKit12ZTDfuServiceC", + "mangledName": "$s9ZTCoreKit12ZTDfuServiceC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ZTCoreKit.DFUServiceInitiator", - "ObjectiveC.NSObject" + "ZTCoreKit.ZTService" ], "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" + }, { "kind": "Conformance", "name": "Equatable", "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ + "ImplementationOnly", "RawDocComment" ] }, @@ -2107,44 +1846,39 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTNotifyCharacteristic", - "printedName": "ZTNotifyCharacteristic", + "name": "ZTMessageGeneralState", + "printedName": "ZTMessageGeneralState", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "byte0", + "printedName": "byte0", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2153,56 +1887,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "byte1", + "printedName": "byte1", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2212,133 +1945,140 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "byte2", + "printedName": "byte2", "children": [ { "kind": "TypeNominal", - "name": "ZTNotifyCharacteristic", - "printedName": "ZTCoreKit.ZTNotifyCharacteristic", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "kind": "Var", + "name": "byte3", + "printedName": "byte3", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC", - "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTMessageBootloaderInfo", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -2346,9 +2086,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" }, { "kind": "TypeNominal", @@ -2366,8 +2106,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -2375,26 +2115,74 @@ ], "init_kind": "Designated" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "activityStartedRight", + "printedName": "activityStartedRight", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2403,39 +2191,37 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "bootloaderVersion", - "printedName": "bootloaderVersion", + "name": "activityStartedLeft", + "printedName": "activityStartedLeft", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2444,39 +2230,37 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appSupportVersion", - "printedName": "appSupportVersion", + "name": "pairIsConnected", + "printedName": "pairIsConnected", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2485,39 +2269,37 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "softDeviceId", - "printedName": "softDeviceId", + "name": "memsHasError", + "printedName": "memsHasError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2526,47 +2308,115 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "dfuState", - "printedName": "dfuState", + "name": "firmwareDifferent", + "printedName": "firmwareDifferent", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actualState", + "printedName": "actualState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "previousState", + "printedName": "previousState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } ], + "declKind": "Var", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2575,23 +2425,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "usr": "s:Sq" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] @@ -2609,13 +2452,13 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2630,607 +2473,428 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV", + "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "TypeDecl", - "name": "DfuState", - "printedName": "DfuState", + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCommandResponse", + "printedName": "ZTCommandResponse", + "children": [ + { + "kind": "Var", + "name": "bytes", + "printedName": "bytes", "children": [ { - "kind": "Var", - "name": "none", - "printedName": "none", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "inProgress", - "printedName": "inProgress", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "received", - "printedName": "received", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "readyForCopy", - "printedName": "readyForCopy", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rightModule", + "printedName": "rightModule", + "children": [ { - "kind": "Var", - "name": "activation", - "printedName": "activation", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "done", - "printedName": "done", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "leftModule", + "printedName": "leftModule", + "children": [ { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "validationError", - "printedName": "validationError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "command", + "printedName": "command", + "children": [ { - "kind": "Var", - "name": "activationError", - "printedName": "activationError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV", - "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV", + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTCommandResponseC", + "mangledName": "$s9ZTCoreKit17ZTCommandResponseC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "hasMissingDesignatedInitializers": true }, { "kind": "TypeDecl", - "name": "ZTEnvironment", - "printedName": "ZTEnvironment", + "name": "ZTCommandStatus", + "printedName": "ZTCommandStatus", "children": [ { "kind": "Var", - "name": "dev", - "printedName": "dev", + "name": "success", + "printedName": "success", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3238,36 +2902,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO3devyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO3devyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "staging", - "printedName": "staging", + "name": "busy", + "printedName": "busy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3275,36 +2942,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "production", - "printedName": "production", + "name": "invalidParam", + "printedName": "invalidParam", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3312,36 +2982,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcdev", - "printedName": "zcdev", + "name": "invalidState", + "printedName": "invalidState", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3349,36 +3022,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcstaging", - "printedName": "zcstaging", + "name": "forbidden", + "printedName": "forbidden", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3386,36 +3062,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zcproduction", - "printedName": "zcproduction", + "name": "notSupported", + "printedName": "notSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTEnvironment.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3423,162 +3102,79 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "unknownCommand", + "printedName": "unknownCommand", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTEnvironmentO", - "mangledName": "$s9ZTCoreKit13ZTEnvironmentO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declAttributes": [ + "RawDocComment" + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTModuleSide", - "printedName": "ZTModuleSide", - "children": [ { "kind": "Var", - "name": "left", - "printedName": "left", + "name": "commandInProgress", + "printedName": "commandInProgress", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTModuleSide.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3586,36 +3182,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTModuleSideO4leftyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO4leftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "right", - "printedName": "right", + "name": "noPeerresponse", + "printedName": "noPeerresponse", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", + "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTModuleSide.Type", + "printedName": "ZTCoreKit.ZTCommandStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ] } @@ -3623,9 +3222,52 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTModuleSideO5rightyA2CmF", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO5rightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Constructor", @@ -3635,27 +3277,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTModuleSide?", + "printedName": "ZTCoreKit.ZTCommandStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -3667,14 +3309,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvp", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -3685,14 +3327,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvg", + "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -3701,14 +3343,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTModuleSideO", - "mangledName": "$s9ZTCoreKit12ZTModuleSideO", + "usr": "s:9ZTCoreKit15ZTCommandStatusO", + "mangledName": "$s9ZTCoreKit15ZTCommandStatusO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -3736,118 +3378,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Function", - "name": "decodeData", - "printedName": "decodeData(_:for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", - "mangledName": "$s9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encodeData", - "printedName": "encodeData(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", - "mangledName": "$s9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { @@ -3862,26 +3402,34 @@ }, { "kind": "TypeDecl", - "name": "ZTEnum", - "printedName": "ZTEnum", + "name": "ZTSettings", + "printedName": "ZTSettings", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvp", - "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvp", + "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvpZ", + "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvpZ", "moduleName": "ZTCoreKit", - "protocolReq": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -3890,45 +3438,33 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTEnumP11descriptionSSvg", - "mangledName": "$s9ZTCoreKit6ZTEnumP11descriptionSSvg", + "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvgZ", + "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvgZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", - "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -3937,1062 +3473,715 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", - "mangledName": "$s9ZTCoreKit6ZTEnumPAAE11descriptionSSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTEnum>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "defaultReadChunkSize", - "printedName": "defaultReadChunkSize", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20defaultReadChunkSizes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit20defaultReadChunkSizes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20defaultReadChunkSizes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit20defaultReadChunkSizes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultWriteChunkSize", - "printedName": "defaultWriteChunkSize", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit21defaultWriteChunkSizes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultFilePermissions", - "printedName": "defaultFilePermissions", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22defaultFilePermissionss6UInt16Vvp", - "mangledName": "$s9ZTCoreKit22defaultFilePermissionss6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22defaultFilePermissionss6UInt16Vvg", - "mangledName": "$s9ZTCoreKit22defaultFilePermissionss6UInt16Vvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultDirectoryPermissions", - "printedName": "defaultDirectoryPermissions", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvp", - "mangledName": "$s9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvg", - "mangledName": "$s9ZTCoreKit27defaultDirectoryPermissionss6UInt16Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTArchive", - "printedName": "ZTArchive", - "children": [ - { - "kind": "TypeDecl", - "name": "ArchiveError", - "printedName": "ArchiveError", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "unreadableArchive", - "printedName": "unreadableArchive", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unreadableD0yA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unreadableD0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "unwritableArchive", - "printedName": "unwritableArchive", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] - } + "Final" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unwritableD0yA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO010unwritableD0yA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "accessorKind": "get" }, { - "kind": "Var", - "name": "invalidEntryPath", - "printedName": "invalidEntryPath", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO16invalidEntryPathyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO16invalidEntryPathyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidCompressionMethod", - "printedName": "invalidCompressionMethod", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO24invalidCompressionMethodyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO24invalidCompressionMethodyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logLevel", + "printedName": "logLevel", + "children": [ { - "kind": "Var", - "name": "invalidStartOfCentralDirectoryOffset", - "printedName": "invalidStartOfCentralDirectoryOffset", + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO36invalidStartOfCentralDirectoryOffsetyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO36invalidStartOfCentralDirectoryOffsetyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "missingEndOfCentralDirectoryRecord", - "printedName": "missingEndOfCentralDirectoryRecord", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO34missingEndOfCentralDirectoryRecordyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO34missingEndOfCentralDirectoryRecordyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidNumberOfEntriesOnDisk", - "printedName": "invalidNumberOfEntriesOnDisk", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO28invalidNumberOfEntriesOnDiskyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO28invalidNumberOfEntriesOnDiskyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "environment", + "printedName": "environment", + "children": [ { - "kind": "Var", - "name": "invalidNumberOfEntriesInCentralDirectory", - "printedName": "invalidNumberOfEntriesInCentralDirectory", + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO40invalidNumberOfEntriesInCentralDirectoryyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO40invalidNumberOfEntriesInCentralDirectoryyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "cancelledOperation", - "printedName": "cancelledOperation", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO18cancelledOperationyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO18cancelledOperationyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "invalidBufferSize", - "printedName": "invalidBufferSize", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.ArchiveError.Type) -> ZTCoreKit.ZTArchive.ArchiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO17invalidBufferSizeyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO17invalidBufferSizeyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoConnect", + "printedName": "autoConnect", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" - }, - { - "kind": "TypeNominal", - "name": "ArchiveError", - "printedName": "ZTCoreKit.ZTArchive.ArchiveError", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO4hash4intoys6HasherVz_tF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "funcSelfKind": "NonMutating" + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableEventLogging", + "printedName": "enableEventLogging", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTArchiveC12ArchiveErrorO", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12ArchiveErrorO", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AccessMode", - "printedName": "AccessMode", - "children": [ - { - "kind": "Var", - "name": "create", - "printedName": "create", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO6createyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO6createyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "read", - "printedName": "read", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO4readyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO4readyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldObtaineMissedChunks", + "printedName": "shouldObtaineMissedChunks", + "children": [ { - "kind": "Var", - "name": "update", - "printedName": "update", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTArchive.AccessMode.Type) -> ZTCoreKit.ZTArchive.AccessMode", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTArchive.AccessMode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO6updateyA2EmF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO6updateyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive.AccessMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueAESgSu_tcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueAESgSu_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO8rawValueSuvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableRawDataCheck", + "printedName": "enableRawDataCheck", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10AccessModeO", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt", - "conformances": [ + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "shouldAutoResendData", + "printedName": "shouldAutoResendData", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvp", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -5002,46 +4191,94 @@ "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10Foundation3URLVvg", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "accessMode", - "printedName": "accessMode", + "name": "activityDataSyncThreshold", + "printedName": "activityDataSyncThreshold", "children": [ { "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovp", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -5051,203 +4288,192 @@ "children": [ { "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC10accessModeAC06AccessE0Ovg", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(url:accessMode:preferredEncoding:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTArchive", - "printedName": "ZTCoreKit.ZTArchive", - "usr": "s:9ZTCoreKit9ZTArchiveC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableBackgroundDFU", + "printedName": "enableBackgroundDFU", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC3url10accessMode17preferredEncodingACSg10Foundation3URLV_AC06AccessF0OSSAHE0H0VSgtcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC3url10accessMode17preferredEncodingACSg10Foundation3URLV_AC06AccessF0OSSAHE0H0VSgtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:accessMode:preferredEncoding:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTArchive?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTArchive", - "printedName": "ZTCoreKit.ZTArchive", - "usr": "s:9ZTCoreKit9ZTArchiveC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "hasDefaultArg": true, - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "AccessMode", - "printedName": "ZTCoreKit.ZTArchive.AccessMode", - "usr": "s:9ZTCoreKit9ZTArchiveC10AccessModeO" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10accessMode17preferredEncodingACSg10Foundation4DataV_AC06AccessF0OSSAHE0H0VSgtcfc", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10accessMode17preferredEncodingACSg10Foundation4DataV_AC06AccessF0OSSAHE0H0VSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "makeIterator", - "printedName": "makeIterator()", - "children": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "AnyIterator", - "printedName": "Swift.AnyIterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Void", + "printedName": "()" } ], - "usr": "s:s11AnyIteratorV" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC12makeIterators03AnyE0VyAA7ZTEntryVGyF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC12makeIterators03AnyE0VyAA7ZTEntryVGyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Var", + "name": "enableBackgroundDataStreaming", + "printedName": "enableBackgroundDataStreaming", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScip", - "mangledName": "$s9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScip", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -5256,156 +4482,192 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScig", - "mangledName": "$s9ZTCoreKit9ZTArchiveCyAA7ZTEntryVSgSScig", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ "Final" ], - "accessorKind": "get" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "totalUnitCountForRemoving", - "printedName": "totalUnitCountForRemoving(_:)", + "kind": "Var", + "name": "activityChunkStoreForFreeMemory", + "printedName": "activityChunkStoreForFreeMemory", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC25totalUnitCountForRemovingys5Int64VAA7ZTEntryVF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC25totalUnitCountForRemovingys5Int64VAA7ZTEntryVF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "totalUnitCountForReading", - "printedName": "totalUnitCountForReading(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC24totalUnitCountForReadingys5Int64VAA7ZTEntryVF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC24totalUnitCountForReadingys5Int64VAA7ZTEntryVF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "totalUnitCountForAddingItem", - "printedName": "totalUnitCountForAddingItem(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC27totalUnitCountForAddingItem2ats5Int64V10Foundation3URLV_tF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC27totalUnitCountForAddingItem2ats5Int64V10Foundation3URLV_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "activityChunkRetryLimit", + "printedName": "activityChunkRetryLimit", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -5414,457 +4676,219 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit9ZTArchiveC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ "Final" ], - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:relativeTo:compressionMethod:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" }, { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with10relativeTo17compressionMethod10bufferSize8progressySS_10Foundation3URLVAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with10relativeTo17compressionMethod10bufferSize8progressySS_10Foundation3URLVAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:fileURL:compressionMethod:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with7fileURL17compressionMethod10bufferSize8progressySS_10Foundation0H0VAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with7fileURL17compressionMethod10bufferSize8progressySS_10Foundation0H0VAA013ZTCompressionJ0Os6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addEntry", - "printedName": "addEntry(with:type:uncompressedSize:modificationDate:permissions:compressionMethod:bufferSize:progress:provider:)", + "kind": "Var", + "name": "checkFirmwareUpdatePeriod", + "printedName": "checkFirmwareUpdatePeriod", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "hasDefaultArg": true, - "usr": "s:10Foundation4DateV" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", - "children": [ - { - "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "hasDefaultArg": true, - "usr": "s:Sq" + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC8addEntry4with4type16uncompressedSize16modificationDate11permissions17compressionMethod06bufferI08progress8providerySS_AA7ZTEntryV0E4TypeOs6UInt32V10Foundation0K0Vs6UInt16VSgAA013ZTCompressionN0OASSo10NSProgressCSgAT4DataVSi_SitKXEtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC8addEntry4with4type16uncompressedSize16modificationDate11permissions17compressionMethod06bufferI08progress8providerySS_AA7ZTEntryV0E4TypeOs6UInt32V10Foundation0K0Vs6UInt16VSgAA013ZTCompressionN0OASSo10NSProgressCSgAT4DataVSi_SitKXEtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "remove", - "printedName": "remove(_:bufferSize:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC6remove_10bufferSize8progressyAA7ZTEntryV_s6UInt32VSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC6remove_10bufferSize8progressyAA7ZTEntryV_s6UInt32VSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "extract", - "printedName": "extract(_:to:bufferSize:skipCRC32:progress:)", + "kind": "Var", + "name": "enableAnalyticsData", + "printedName": "enableAnalyticsData", "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", - "hasDefaultArg": true, "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", - "children": [ - { - "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC7extract_2to10bufferSize9skipCRC328progresss6UInt32VAA7ZTEntryV_10Foundation3URLVAJSbSo10NSProgressCSgtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC7extract_2to10bufferSize9skipCRC328progresss6UInt32VAA7ZTEntryV_10Foundation3URLVAJSbSo10NSProgressCSgtKF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "extract", - "printedName": "extract(_:bufferSize:skipCRC32:progress:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -5873,148 +4897,64 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTArchiveC7extract_10bufferSize9skipCRC328progress8consumers6UInt32VAA7ZTEntryV_AJSbSo10NSProgressCSgy10Foundation4DataVKXEtKF", - "mangledName": "$s9ZTCoreKit9ZTArchiveC7extract_10bufferSize9skipCRC328progress8consumers6UInt32VAA7ZTEntryV_AJSbSo10NSProgressCSgy10Foundation4DataVKXEtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTArchiveC", - "mangledName": "$s9ZTCoreKit9ZTArchiveC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ] + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "AnyIterator", - "printedName": "Swift.AnyIterator", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" - } - ], - "usr": "s:s11AnyIteratorV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSignal", - "printedName": "ZTSignal", - "children": [ + ] + }, { "kind": "Var", - "name": "fireCount", - "printedName": "fireCount", + "name": "autorestartBackgroundDfu", + "printedName": "autorestartBackgroundDfu", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivp", - "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivp", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -6027,29 +4967,75 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivg", - "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivg", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "retainLastData", - "printedName": "retainLastData", + "name": "getChunksOnApplicationDidBecomeActive", + "printedName": "getChunksOnApplicationDidBecomeActive", "children": [ { "kind": "TypeNominal", @@ -6059,8 +5045,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -6084,11 +5070,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6113,11 +5097,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvs", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6136,11 +5118,9 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvM", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" @@ -6151,32 +5131,24 @@ }, { "kind": "Var", - "name": "lastDataFired", - "printedName": "lastDataFired", + "name": "enablePacketsDataLogging", + "printedName": "enablePacketsDataLogging", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], @@ -6189,158 +5161,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "observers", - "printedName": "observers", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[AnyObject]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvp", - "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[AnyObject]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvg", - "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "declAttributes": [ "Final" ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(retainLastData:)", + "kind": "Var", + "name": "cachedPacketsBatchUploadSize", + "printedName": "cachedPacketsBatchUploadSize", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", - "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "subscribe", - "printedName": "subscribe(with:callback:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -6349,108 +5285,107 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribeOnce", - "printedName": "subscribeOnce(with:callback:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chunkDuration", + "printedName": "chunkDuration", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", - "DiscardableResult", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribePast", - "printedName": "subscribePast(with:callback:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -6459,252 +5394,132 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subscribePastOnce", - "printedName": "subscribePastOnce(with:callback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> ()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", + "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "mangledName": "$s9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "fire", - "printedName": "fire(_:)", + "name": "clear", + "printedName": "clear()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC4fireyyxF", - "mangledName": "$s9ZTCoreKit8ZTSignalC4fireyyxF", + "usr": "s:9ZTCoreKit10ZTSettingsC5clearyyF", + "mangledName": "$s9ZTCoreKit10ZTSettingsC5clearyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTSettingsC", + "mangledName": "$s9ZTCoreKit10ZTSettingsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTPacketDfuCharacteristic", + "printedName": "ZTPacketDfuCharacteristic", + "children": [ { - "kind": "Function", - "name": "cancelSubscription", - "printedName": "cancelSubscription(for:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", - "mangledName": "$s9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "cancelAllSubscriptions", - "printedName": "cancelAllSubscriptions()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", - "mangledName": "$s9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearLastData", - "printedName": "clearLastData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalC13clearLastDatayyF", - "mangledName": "$s9ZTCoreKit8ZTSignalC13clearLastDatayyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fire", - "printedName": "fire()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", - "mangledName": "$s9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == ()>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTSignalC", - "mangledName": "$s9ZTCoreKit8ZTSignalC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "Final", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSignalSubscription", - "printedName": "ZTSignalSubscription", - "children": [ - { - "kind": "Var", - "name": "observer", - "printedName": "observer", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "AnyObject?" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ReferenceOwnership", - "RawDocComment" - ], - "ownership": 1, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -6714,113 +5529,53 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "AnyObject?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "static": true, "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "AnyObject?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "once", - "printedName": "once", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -6831,210 +5586,68 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "filter", - "printedName": "filter(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sample", - "printedName": "sample(every:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + "name": "ZTPacketDfuCharacteristic", + "printedName": "ZTCoreKit.ZTPacketDfuCharacteristic", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onQueue", - "printedName": "onQueue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignalSubscription", - "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", - "DiscardableResult", + "Required", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "cancel", - "printedName": "cancel()", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", @@ -7043,82 +5656,58 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", + "Override", "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC", - "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC", + "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "Final", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] }, { - "kind": "OperatorDecl", - "name": "=>", - "printedName": "=>", - "declKind": "InfixOperator", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "Infix" + "RawDocComment" ] }, { - "kind": "Function", - "name": "=>", - "printedName": "=>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", - "mangledName": "$s9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" }, { "kind": "Import", @@ -7132,218 +5721,328 @@ }, { "kind": "TypeDecl", - "name": "ZTMessageTime", - "printedName": "ZTMessageTime", + "name": "ZTBleManagerState", + "printedName": "ZTBleManagerState", "children": [ { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "off", + "printedName": "off", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "on", + "printedName": "on", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "scanning", + "printedName": "scanning", "children": [ { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "resetting", + "printedName": "resetting", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTBleManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", @@ -7358,12 +6057,11 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -7379,51 +6077,17 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit13ZTMessageTimeV", - "mangledName": "$s9ZTCoreKit13ZTMessageTimeV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "DFUPeripheralSelectorDelegate", - "children": [ + }, { "kind": "Function", - "name": "select", - "printedName": "select(_:advertisementData:RSSI:hint:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", @@ -7433,154 +6097,120 @@ }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : AnyObject]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)select:advertisementData:RSSI:hint:", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, + "static": true, + "implicit": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "filterBy", - "printedName": "filterBy(hint:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)filterByHint:", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP8filterBy4hintSaySo6CBUUIDCGSgAG_tF", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "filterByHint:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, + "implicit": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP", + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO", + "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } ] }, { @@ -7595,359 +6225,707 @@ }, { "kind": "TypeDecl", - "name": "ZTDateTransform", - "printedName": "ZTDateTransform", + "name": "ZTRealtimeMetric", + "printedName": "ZTRealtimeMetric", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "duration", + "printedName": "duration", "children": [ { - "kind": "TypeNominal", - "name": "ZTDateTransform", - "printedName": "ZTCoreKit.ZTDateTransform", - "usr": "s:9ZTCoreKit15ZTDateTransformC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTDateTransformCACycfc", - "mangledName": "$s9ZTCoreKit15ZTDateTransformCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "steps", + "printedName": "steps", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "cycleDuration", + "printedName": "cycleDuration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepCadence", + "printedName": "stepCadence", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSpeed", + "printedName": "stepSpeed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "kind": "Var", + "name": "distance", + "printedName": "distance", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "footDistance", + "printedName": "footDistance", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit15ZTDateTransformC", - "mangledName": "$s9ZTCoreKit15ZTDateTransformC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + "RawDocComment" + ] + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Var", + "name": "energySum", + "printedName": "energySum", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walkingQualityScore", + "printedName": "walkingQualityScore", + "children": [ { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDateTransformUTC", - "printedName": "ZTDateTransformUTC", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "stairsClimbed", + "printedName": "stairsClimbed", "children": [ { - "kind": "TypeNominal", - "name": "ZTDateTransformUTC", - "printedName": "ZTCoreKit.ZTDateTransformUTC", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCCACycfc", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "intenseActivity", + "printedName": "intenseActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "slope", + "printedName": "slope", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "accelerationFoot", + "printedName": "accelerationFoot", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "kind": "Var", + "name": "strideLength", + "printedName": "strideLength", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "relativePronationAngleFoot", + "printedName": "relativePronationAngleFoot", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pronationAngleFFI", + "printedName": "pronationAngleFFI", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTDateTransformUTCC", - "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Var", + "name": "pronationAngleFFO", + "printedName": "pronationAngleFFO", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "plantarFlexionAngularSpeedMaxPropulsion", + "printedName": "plantarFlexionAngularSpeedMaxPropulsion", + "children": [ { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUStreamHexError", - "printedName": "DFUStreamHexError", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "invalidHexFile", - "printedName": "invalidHexFile", + "name": "symmetry", + "printedName": "symmetry", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamHexError.Type) -> ZTCoreKit.DFUStreamHexError", + "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamHexError.Type", + "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" } ] } @@ -7955,62 +6933,50 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "value", + "printedName": "value()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamHexError", - "printedName": "ZTCoreKit.DFUStreamHexError", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -8019,54 +6985,181 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(value:activityType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "init_kind": "Designated" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit17DFUStreamHexErrorO", - "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO", + "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -8084,17 +7177,421 @@ }, { "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDateDefaultTransform", + "printedName": "ZTDateDefaultTransform", + "children": [ + { + "kind": "TypeDecl", + "name": "Unit", + "printedName": "Unit", + "children": [ + { + "kind": "Var", + "name": "seconds", + "printedName": "seconds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "milliseconds", + "printedName": "milliseconds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit?", + "children": [ + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Double", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(unit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDateDefaultTransform", + "printedName": "ZTCoreKit.ZTDateDefaultTransform", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC" + }, + { + "kind": "TypeNominal", + "name": "Unit", + "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC", + "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } ] }, @@ -8108,6 +7605,46 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", "name": "ZTDataTransform", @@ -8268,6 +7805,16 @@ } ] }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -8287,33 +7834,34 @@ }, { "kind": "TypeDecl", - "name": "ZTCharacteristic", - "printedName": "ZTCharacteristic", + "name": "ZTNotifyCharacteristic", + "printedName": "ZTNotifyCharacteristic", "children": [ { "kind": "Var", - "name": "service", - "printedName": "service", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "ZTCoreKit.ZTService?" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "ReferenceOwnership", - "SetterAccess", "AccessControl", "RawDocComment" ], - "ownership": 1, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -8323,32 +7871,28 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTService?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", @@ -8366,13 +7910,17 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -8395,169 +7943,250 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "characteristic", - "printedName": "characteristic", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "CoreBluetooth.CBCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "usr": "s:Sq" + "name": "ZTNotifyCharacteristic", + "printedName": "ZTCoreKit.ZTNotifyCharacteristic", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", + "Required", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTNotifyCharacteristicC", + "mangledName": "$s9ZTCoreKit22ZTNotifyCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTAlgoPrecisionMode", + "children": [ + { + "kind": "Var", + "name": "defaultMode", + "printedName": "defaultMode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "CoreBluetooth.CBCharacteristic?", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "valueUpdatedTimeInterval", - "printedName": "valueUpdatedTimeInterval", + "name": "economicMode", + "printedName": "economicMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "performanceMode", + "printedName": "performanceMode", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "valueWrittenTimeInterval", - "printedName": "valueWrittenTimeInterval", + "name": "parameters", + "printedName": "parameters", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -8566,52 +8195,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isNotifying", - "printedName": "isNotifying", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -8620,305 +8274,176 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO", + "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "onValueUpdated", - "printedName": "onValueUpdated", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onValueWritten", - "printedName": "onValueWritten", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Var", - "name": "onNotificationUpdated", - "printedName": "onNotificationUpdated", + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUServiceController", + "printedName": "DFUServiceController", + "children": [ + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)pause", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5pauseyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Final", "AccessControl", + "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Function", + "name": "resume", + "printedName": "resume()", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)resume", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6resumeyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "Required", + "ObjC", "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "abort", + "printedName": "abort()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)abort", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5abortSbyF", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueWritten", - "printedName": "valueWritten()", + "name": "restart", + "printedName": "restart()", "children": [ { "kind": "TypeNominal", @@ -8927,68 +8452,172 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)restart", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7restartyyF", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "readValue", - "printedName": "readValue()", + "kind": "Var", + "name": "paused", + "printedName": "paused", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC9readValueyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)paused", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)paused", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "notificationUpdated", - "printedName": "notificationUpdated()", + "kind": "Var", + "name": "aborted", + "printedName": "aborted", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)aborted", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)aborted", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] } ], "declKind": "Class", - "usr": "s:9ZTCoreKit16ZTCharacteristicC", - "mangledName": "$s9ZTCoreKit16ZTCharacteristicC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController", + "mangledName": "$s9ZTCoreKit20DFUServiceControllerC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { @@ -9013,29 +8642,27 @@ }, { "kind": "TypeDecl", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTHardwareCharacteristic", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTMessageInactivityTimeout", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "left", + "printedName": "left", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -9049,20 +8676,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -9077,20 +8700,16 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -9105,47 +8724,35 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "right", + "printedName": "right", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -9156,227 +8763,59 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkConfig", - "printedName": "ZTMessageChunkConfig", - "children": [ - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte1", - "printedName": "byte1", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, @@ -9387,9 +8826,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" }, { "kind": "TypeNominal", @@ -9407,8 +8846,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -9423,9 +8862,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" }, { "kind": "TypeNominal", @@ -9435,8 +8874,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, @@ -9460,91 +8899,13 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, "throwing": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Var", - "name": "side", - "printedName": "side", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "flag", - "printedName": "flag", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, { "kind": "Var", "name": "description", @@ -9558,8 +8919,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -9579,8 +8940,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" @@ -9589,8 +8950,8 @@ } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV", - "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV", + "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -9622,33 +8983,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSession", - "printedName": "ZTSession", - "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTSessionC", - "mangledName": "$s9ZTCoreKit9ZTSessionC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -9660,48 +8996,38 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTService", - "printedName": "ZTService", + "name": "ZTCBCentralManagerProtocol", + "printedName": "ZTCBCentralManagerProtocol", "children": [ { "kind": "Var", - "name": "device", - "printedName": "device", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "ZTCoreKit.ZTDevice?" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -9710,106 +9036,105 @@ "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "ZTCoreKit.ZTDevice?", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "service", - "printedName": "service", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Set", + "printedName": "Set()", + "children": [ { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentralManagerDelegate", + "printedName": "any CoreBluetooth.CBCentralManagerDelegate", + "usr": "c:objc(pl)CBCentralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "state", + "printedName": "state", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -9818,78 +9143,173 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "characteristics", - "printedName": "characteristics", + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "retrievePeripherals", + "printedName": "retrievePeripherals(withIdentifiers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.UUID]", + "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", - "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "retrieveConnectedPeripherals", + "printedName": "retrieveConnectedPeripherals(withServices:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } ], - "hasStorage": true, - "accessors": [ + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scanForPeripherals", + "printedName": "scanForPeripherals(withServices:options:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", @@ -9899,158 +9319,291 @@ }, { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", - "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "characteristic", - "printedName": "characteristic(_:)", + "name": "connect", + "printedName": "connect(_:options:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", - "mangledName": "$s9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCharacteristic>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Function", + "name": "cancelPeripheralConnection", + "printedName": "cancelPeripheralConnection(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCustomDateFormatTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(formatString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" + "AccessControl" ], "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ZTCustomDateFormatTransform", + "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" }, { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", "moduleName": "ZTCoreKit", - "static": true, + "overriding": true, + "implicit": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Override" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit9ZTServiceC", - "mangledName": "$s9ZTCoreKit9ZTServiceC", + "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC", + "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" + ], + "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "superclassNames": [ + "ZTCoreKit.ZTDateFormatterTransform" ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } ] }, @@ -10066,30 +9619,39 @@ }, { "kind": "TypeDecl", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", + "name": "ZTMapError", + "printedName": "ZTMapError", "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10098,52 +9660,107 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "currentValue", + "printedName": "currentValue", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10152,73 +9769,106 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "name": "reason", + "printedName": "reason", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10227,74 +9877,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "serviceType", - "printedName": "serviceType", + "name": "file", + "printedName": "file", "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -10303,215 +9987,390 @@ "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "name": "Optional", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } - ] + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService, τ_0_0 : ZTCoreKit.ZTServiceProtocol>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "LegacyDFUServiceInitiator", - "printedName": "LegacyDFUServiceInitiator", - "children": [ + }, { - "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", + "kind": "Var", + "name": "function", + "printedName": "function", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "printedName": "Swift.StaticString?", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "startWithTargetWithIdentifier:", "declAttributes": [ - "ObjC", - "Override", + "HasInitialValue", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "LegacyDFUServiceInitiator", - "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "line", + "printedName": "line", + "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvp", "moduleName": "ZTCoreKit", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithCentralManager:target:", "declAttributes": [ - "ObjC", - "Override", - "Available" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "init_kind": "Designated" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "printedName": "init(key:currentValue:reason:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "LegacyDFUServiceInitiator", - "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + "name": "ZTMapError", + "printedName": "ZTCoreKit.ZTMapError", + "usr": "s:9ZTCoreKit10ZTMapErrorV" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", + "name": "Optional", + "printedName": "Swift.StaticString?", + "children": [ + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + } + ], "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Swift.UInt?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } ], "hasDefaultArg": true, @@ -10519,69 +10378,78 @@ } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "usr": "s:9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", "declAttributes": [ - "ObjC", - "Override" + "AccessControl" ], "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator", - "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit10ZTMapErrorV", + "mangledName": "$s9ZTCoreKit10ZTMapErrorV", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.DFUServiceInitiator", - "ObjectiveC.NSObject" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -10589,13 +10457,6 @@ "printedName": "CustomStringConvertible", "usr": "s:s23CustomStringConvertibleP", "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -10611,10 +10472,13 @@ }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] }, { "kind": "Import", @@ -10626,462 +10490,227 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "ZTPassthroughAlgo", - "printedName": "ZTPassthroughAlgo", + "name": "ZTPacketCachable", + "printedName": "ZTPacketCachable", "children": [ + { + "kind": "AssociatedType", + "name": "Activity", + "printedName": "Activity", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8ActivityQa", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8ActivityQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(id: ZTCoreKit.ZTAlgoStatus)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "startNewChunk", - "printedName": "startNewChunk", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "changeProductMode", - "printedName": "changeProductMode", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(mode: ZTCoreKit.ZTAlgoMode)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP2ids5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP2ids5Int16VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setPrecisionMode", - "printedName": "setPrecisionMode", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(mode: ZTCoreKit.ZTAlgoPrecisionMode)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setMinimumStepsForAnalysis", - "printedName": "setMinimumStepsForAnalysis", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setMinimumStridesForAnalysis", - "printedName": "setMinimumStridesForAnalysis", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setStreamingMode", - "printedName": "setStreamingMode", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9createdAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "fulfilledAt", + "printedName": "fulfilledAt", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11090,161 +10719,180 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP11fulfilledAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", + "kind": "Var", + "name": "sentAt", + "printedName": "sentAt", "children": [ { "kind": "TypeNominal", - "name": "ZTPassthroughAlgo", - "printedName": "ZTCoreKit.ZTPassthroughAlgo", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6sentAt10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO", - "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDfuService", - "printedName": "ZTDfuService", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvpZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11253,70 +10901,89 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC4uuidSSvgZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9timestamps5Int64VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9timestamps5Int64VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -11325,41 +10992,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -11374,41 +11019,19 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16Vvs", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -11423,1039 +11046,773 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8durations5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8durations5Int16VvM", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, - "declAttributes": [ - "Final" - ], + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Var", + "name": "statusRawValue", + "printedName": "statusRawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuService", - "printedName": "ZTCoreKit.ZTDfuService", - "usr": "s:9ZTCoreKit12ZTDfuServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvp", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit12ZTDfuServiceC", - "mangledName": "$s9ZTCoreKit12ZTDfuServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTRealtimeMetric", - "printedName": "ZTRealtimeMetric", - "children": [ - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16Vvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16VvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP14statusRawValues5Int16VvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8durationyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "steps", - "printedName": "steps", + "name": "status", + "printedName": "status", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP6statusAA0C0C6StatusOvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5stepsyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "cycleDuration", - "printedName": "cycleDuration", + "name": "scheduledDeleted", + "printedName": "scheduledDeleted", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13cycleDurationyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepCadence", - "printedName": "stepCadence", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP16scheduledDeleted10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO11stepCadenceyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "stepSpeed", - "printedName": "stepSpeed", + "name": "rawData", + "printedName": "rawData", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9stepSpeedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "distance", - "printedName": "distance", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP7rawData10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8distanceyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "footDistance", - "printedName": "footDistance", + "name": "activity", + "printedName": "activity", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "DependentMember", + "printedName": "τ_0_0.Activity" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "DependentMember", + "printedName": "τ_0_0.Activity" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12footDistanceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "energySum", - "printedName": "energySum", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "τ_0_0.Activity?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "DependentMember", + "printedName": "τ_0_0.Activity" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP8activity8ActivityQzSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO9energySumyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "walkingQualityScore", - "printedName": "walkingQualityScore", + "name": "fwVersion", + "printedName": "fwVersion", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvp", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO19walkingQualityScoreyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsClimbed", - "printedName": "stairsClimbed", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvg", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO13stairsClimbedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "intenseActivity", - "printedName": "intenseActivity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO15intenseActivityyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "slope", - "printedName": "slope", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5slopeyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "accelerationFoot", - "printedName": "accelerationFoot", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO16accelerationFootyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "strideLength", - "printedName": "strideLength", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12strideLengthyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "relativePronationAngleFoot", - "printedName": "relativePronationAngleFoot", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO26relativePronationAngleFootyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pronationAngleFFI", - "printedName": "pronationAngleFFI", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFIyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pronationAngleFFO", - "printedName": "pronationAngleFFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO17pronationAngleFFOyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "plantarFlexionAngularSpeedMaxPropulsion", - "printedName": "plantarFlexionAngularSpeedMaxPropulsion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO39plantarFlexionAngularSpeedMaxPropulsionyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "symmetry", - "printedName": "symmetry", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMetric.Type) -> ZTCoreKit.ZTRealtimeMetric", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMetric.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8symmetryyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5values5UInt8VyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvs", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO12activityTypeAA010ZTActivityF0Ovg", + "usr": "s:9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvM", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP9fwVersionSSSgvM", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(data:activity:fwVersion:context:name:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(value:activityType:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO5value12activityTypeACSgs5UInt8V_AA010ZTActivityG0OSgtcfc", + "usr": "s:9ZTCoreKit16ZTPacketCachableP4data8activity9fwVersion7context4namex10Foundation4DataV_AA010ZTActivityD0_pSgSSSgSo22NSManagedObjectContextCSStcfc", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP4data8activity9fwVersion7context4namex10Foundation4DataV_AA010ZTActivityD0_pSgSSSgSo22NSManagedObjectContextCSStcfc", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO4nameACSgSS_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTPacketCachablePAAE2eeoiySbx_xtFZ", + "mangledName": "$s9ZTCoreKit16ZTPacketCachablePAAE2eeoiySbx_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO", - "mangledName": "$s9ZTCoreKit16ZTRealtimeMetricO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit16ZTPacketCachableP", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : CoreData.NSManagedObject, τ_0_0.Activity : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "enumRawTypeName": "String", "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, { "kind": "Conformance", "name": "Hashable", @@ -12465,32 +11822,17 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -12499,261 +11841,72 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTCBCentralManagerProtocol", - "printedName": "ZTCBCentralManagerProtocol", + "name": "ZTServices", + "printedName": "ZTServices", "children": [ { - "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "kind": "TypeDecl", + "name": "Primary", + "printedName": "Primary", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBCentralManagerDelegate)?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CBCentralManagerDelegate", - "printedName": "any CoreBluetooth.CBCentralManagerDelegate", - "usr": "c:objc(pl)CBCentralManagerDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8delegateSo09CBCentralD8Delegate_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "state", - "printedName": "state", - "children": [ - { - "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP5stateSo14CBManagerStateVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "stopScan", - "printedName": "stopScan()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP8stopScanyyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "retrievePeripherals", - "printedName": "retrievePeripherals(withIdentifiers:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.UUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP19retrievePeripherals15withIdentifiersSaySo12CBPeripheralCGSay10Foundation4UUIDVG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "retrieveConnectedPeripherals", - "printedName": "retrieveConnectedPeripherals(withServices:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -12762,38 +11915,23 @@ "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP28retrieveConnectedPeripherals12withServicesSaySo12CBPeripheralCGSaySo6CBUUIDCG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scanForPeripherals", - "printedName": "scanForPeripherals(withServices:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -12802,1605 +11940,921 @@ "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "commands", + "printedName": "commands", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] } ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP18scanForPeripherals12withServices7optionsySaySo6CBUUIDCGSg_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "notifyData", + "printedName": "notifyData", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsySo12CBPeripheralC_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Var", + "name": "indicateData", + "printedName": "indicateData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "batteryLevel", + "printedName": "batteryLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pairedSoles", + "printedName": "pairedSoles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "test", + "printedName": "test", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP7connect_7optionsyAA014ZTCBPeripheralE0_p_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "cancelPeripheralConnection", - "printedName": "cancelPeripheralConnection(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP26cancelPeripheralConnectionyySo12CBPeripheralCF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBCentralManagerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTSessionDelegate", - "printedName": "ZTSessionDelegate", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSessionDelegate", - "printedName": "ZTCoreKit.ZTSessionDelegate", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate(im)init", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:didBecomeInvalidWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:didBecomeInvalidWithError:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:didBecomeInvalidWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didReceive:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "AuthChallengeDisposition", - "printedName": "Foundation.URLSession.AuthChallengeDisposition", - "usr": "c:@E@NSURLSessionAuthChallengeDisposition" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLCredential?", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLCredential", - "printedName": "Foundation.URLCredential", - "usr": "c:objc(cs)NSURLCredential" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didReceiveChallenge:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task10didReceive17completionHandlerySo12NSURLSessionC_So0L4TaskCSo28NSURLAuthenticationChallengeCySo0l4AuthO11DispositionV_So15NSURLCredentialCSgtctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didReceiveChallenge:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task15didSendBodyData14totalBytesSent0lm10ExpectedToI0ySo12NSURLSessionC_So0Q4TaskCs5Int64VA2NtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:needNewBodyStream:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.InputStream?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.InputStream?", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "InputStream", - "printedName": "Foundation.InputStream", - "usr": "c:objc(cs)NSInputStream" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:needNewBodyStream:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task17needNewBodyStreamySo12NSURLSessionC_So0L4TaskCySo07NSInputK0CSgctF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO", + "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO", "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:needNewBodyStream:", "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", + "kind": "TypeDecl", + "name": "PrimaryOld", + "printedName": "PrimaryOld", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?) -> ()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task26willPerformHTTPRedirection10newRequest17completionHandlerySo12NSURLSessionC_So0O4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didFinishCollecting:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" }, { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didFinishCollectingMetrics:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0K4TaskCSo0kL7MetricsCtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didFinishCollectingMetrics:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:didCompleteWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:task:didCompleteWithError:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0L4TaskCs0K0_pSgtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:task:didCompleteWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:taskIsWaitingForConnectivity:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:taskIsWaitingForConnectivity:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0L4TaskCtF", - "moduleName": "ZTCoreKit", - "intro_Macosx": "10.13", - "intro_iOS": "11.0", - "intro_tvOS": "11.0", - "intro_watchOS": "4.0", - "objc_name": "URLSession:taskIsWaitingForConnectivity:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Available", - "Available", - "Available", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:dataTask:didReceive:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:dataTask:didReceiveData:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0k4DataH0C10Foundation0L0VtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:dataTask:didReceiveData:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:dataTask:willCacheResponse:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.CachedURLResponse?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.CachedURLResponse?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:dataTask:willCacheResponse:completionHandler:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_8dataTask17willCacheResponse17completionHandlerySo12NSURLSessionC_So0n4DataH0CSo19NSCachedURLResponseCyAMSgctF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:dataTask:willCacheResponse:completionHandler:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0p8DownloadH0Cs5Int64VAMtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask12didWriteData17totalBytesWritten0lm10ExpectedToJ0ySo12NSURLSessionC_So0q8DownloadH0Cs5Int64VA2NtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:downloadTask:didFinishDownloadingTo:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" }, { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTSessionDelegate(im)URLSession:downloadTask:didFinishDownloadingToURL:", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0m8DownloadH0C10Foundation3URLVtF", - "moduleName": "ZTCoreKit", - "objc_name": "URLSession:downloadTask:didFinishDownloadingToURL:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTSessionDelegate", - "mangledName": "$s9ZTCoreKit17ZTSessionDelegateC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ + "kind": "Var", + "name": "commands", + "printedName": "commands", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ + "kind": "Var", + "name": "notifyData", + "printedName": "notifyData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Var", + "name": "indicateData", + "printedName": "indicateData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Var", + "name": "batteryLevel", + "printedName": "batteryLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pairedSoles", + "printedName": "pairedSoles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO", + "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ] }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTModelNumberCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeDecl", + "name": "DeviceInformation", + "printedName": "DeviceInformation", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", @@ -14409,593 +12863,1057 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", "moduleName": "ZTCoreKit", "static": true, - "implicit": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", "moduleName": "ZTCoreKit", "static": true, - "implicit": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "set" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "manufacturerName", + "printedName": "manufacturerName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "modelNumber", + "printedName": "modelNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "firmwareRevision", + "printedName": "firmwareRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "hardwareRevision", + "printedName": "hardwareRevision", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, "declAttributes": [ - "Final" + "AccessControl" ], - "accessorKind": "_modify" + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO", + "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ] }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "TypeDecl", + "name": "DeviceDFU", + "printedName": "DeviceDFU", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "uid", + "printedName": "uid", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + ] }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "kind": "TypeDecl", + "name": "Characteristic", + "printedName": "Characteristic", + "children": [ + { + "kind": "Var", + "name": "dfuControlPoint", + "printedName": "dfuControlPoint", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfuPacket", + "printedName": "dfuPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfuButtonless", + "printedName": "dfuButtonless", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "uid", + "printedName": "uid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + }, + { + "kind": "TypeNominal", + "name": "Characteristic", + "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO", + "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, "declAttributes": [ - "Required" - ], - "init_kind": "Designated" + "AccessControl" + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC", - "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTServicesO", + "mangledName": "$s9ZTCoreKit10ZTServicesO", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTCBPeripheralProtocol", - "printedName": "ZTCBPeripheralProtocol", + "name": "ZTRealtimeSide", + "printedName": "ZTRealtimeSide", "children": [ { "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4noneyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4noneyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheralDelegate", - "printedName": "any CoreBluetooth.CBPeripheralDelegate", - "usr": "c:objc(pl)CBPeripheralDelegate" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4leftyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4leftyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "right", + "printedName": "right", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO5rightyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO5rightyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "rssi", - "printedName": "rssi", + "name": "both", + "printedName": "both", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeSide.Type) -> ZTCoreKit.ZTRealtimeSide", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeSide.Type", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "state", - "printedName": "state", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheralState", - "printedName": "CoreBluetooth.CBPeripheralState", - "usr": "c:@E@CBPeripheralState" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", - "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheralState", - "printedName": "CoreBluetooth.CBPeripheralState", - "usr": "c:@E@CBPeripheralState" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO4bothyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO4bothyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "services", - "printedName": "services", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[CoreBluetooth.CBService]?", + "printedName": "ZTCoreKit.ZTRealtimeSide?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "usr": "s:Sa" + "name": "ZTRealtimeSide", + "printedName": "ZTCoreKit.ZTRealtimeSide", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBService]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "identifier", - "printedName": "identifier", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "protocolReq": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -15004,152 +13922,102 @@ "children": [ { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTRealtimeSideO", + "mangledName": "$s9ZTCoreKit14ZTRealtimeSideO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "discoverServices", - "printedName": "discoverServices(_:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IntelHex2BinConverter", + "printedName": "IntelHex2BinConverter", + "children": [ { "kind": "Function", - "name": "discoverCharacteristics", - "printedName": "discoverCharacteristics(_:for:)", + "name": "convert", + "printedName": "convert(_:mbrSize:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "readValue", - "printedName": "readValue(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "writeValue", - "printedName": "writeValue(_:for:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Data", @@ -15158,67 +14026,115 @@ }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristicWriteType", - "printedName": "CoreBluetooth.CBCharacteristicWriteType", - "usr": "c:@E@CBCharacteristicWriteType" + "name": "UInt32", + "printedName": "Swift.UInt32", + "hasDefaultArg": true, + "usr": "s:s6UInt32V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", + "usr": "s:9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "setNotifyValue", - "printedName": "setNotifyValue(_:for:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "IntelHex2BinConverter", + "printedName": "ZTCoreKit.IntelHex2BinConverter", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter(im)init", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter", + "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { @@ -15233,28 +14149,22 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreData", + "printedName": "CoreData", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreTelephony", + "printedName": "CoreTelephony", "declKind": "Import", "moduleName": "ZTCoreKit" }, @@ -15283,369 +14193,157 @@ "name": "CoreBluetooth", "printedName": "CoreBluetooth", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTRealtimeMessage", - "printedName": "ZTRealtimeMessage", + "name": "ZTCharacteristic", + "printedName": "ZTCharacteristic", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "service", + "printedName": "service", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "WeakStorage", + "printedName": "ZTCoreKit.ZTService?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "SetterAccess", "AccessControl", "RawDocComment" ], + "ownership": 1, + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Side", - "printedName": "Side", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "both", - "printedName": "both", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "ZTCoreKit.ZTService?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7serviceAA9ZTServiceCSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO", + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC5value10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "senderSide", - "printedName": "senderSide", + "name": "characteristic", + "printedName": "characteristic", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "CoreBluetooth.CBCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15654,55 +14352,60 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "CoreBluetooth.CBCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14characteristicSo16CBCharacteristicCSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "concernedSide", - "printedName": "concernedSide", + "name": "valueUpdatedTimeInterval", + "printedName": "valueUpdatedTimeInterval", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15712,54 +14415,59 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Side", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueUpdatedTimeIntervalSdSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "eventType", - "printedName": "eventType", + "name": "valueWrittenTimeInterval", + "printedName": "valueWrittenTimeInterval", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15769,54 +14477,51 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC24valueWrittenTimeIntervalSdSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "content", - "printedName": "content", + "name": "isNotifying", + "printedName": "isNotifying", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15825,91 +14530,53 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC11isNotifyingSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "onValueUpdated", + "printedName": "onValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMessage", - "printedName": "ZTCoreKit.ZTRealtimeMessage", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15918,55 +14585,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueUpdatedAA8ZTSignalCyACGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "acknowledgment", - "printedName": "acknowledgment", + "name": "onValueWritten", + "printedName": "onValueWritten", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", "children": [ { "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -15975,55 +14664,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic, Swift.Bool)>", "children": [ { "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTCharacteristic, Swift.Bool)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC14onValueWrittenAA8ZTSignalCyAC_SbtGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "realtimeEvent", - "printedName": "realtimeEvent", + "name": "onNotificationUpdated", + "printedName": "onNotificationUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -16032,394 +14743,690 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", + "usr": "s:9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC21onNotificationUpdatedAA8ZTSignalCyACGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "realtimeMetrics", - "printedName": "realtimeMetrics", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", - "children": [ - { - "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" - } - ], - "usr": "s:Sq" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "Required", "RawDocComment" ], - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "valueWritten", + "printedName": "valueWritten()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC12valueWrittenyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC9readValueyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notificationUpdated", + "printedName": "notificationUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC19notificationUpdatedyyF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit16ZTCharacteristicC", + "mangledName": "$s9ZTCoreKit16ZTCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmwareType", + "printedName": "DFUFirmwareType", + "children": [ + { + "kind": "Var", + "name": "softdevice", + "printedName": "softdevice", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10softdeviceyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", + "kind": "Var", + "name": "bootloader", + "printedName": "bootloader", "children": [ { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeBootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10bootloaderyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "application", + "printedName": "application", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoStatus", - "printedName": "ZTCoreKit.ZTAlgoStatus", - "usr": "s:9ZTCoreKit12ZTAlgoStatusO" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeApplication", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO11applicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "softdeviceBootloader", + "printedName": "softdeviceBootloader", + "children": [ { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO20softdeviceBootloaderyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "softdeviceBootloaderApplication", + "printedName": "softdeviceBootloaderApplication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloaderApplication", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO31softdeviceBootloaderApplicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUFirmwareType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "algoMode", - "printedName": "algoMode", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType", + "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmwareError", + "printedName": "DFUFirmwareError", + "children": [ + { + "kind": "TypeDecl", + "name": "FileType", + "printedName": "FileType", + "children": [ + { + "kind": "Var", + "name": "zip", + "printedName": "zip", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "precisionMode", - "printedName": "precisionMode", + "name": "binOrHex", + "printedName": "binOrHex", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "consecutiveSteps", - "printedName": "consecutiveSteps", + "name": "dat", + "printedName": "dat", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + }, + { + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -16428,186 +15435,221 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "declKind": "Enum", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" } ] }, { - "kind": "TypeDecl", - "name": "Acknowledgment", - "printedName": "Acknowledgment", + "kind": "Var", + "name": "type", + "printedName": "type", "children": [ { - "kind": "Var", - "name": "command", - "printedName": "command", + "kind": "TypeNominal", + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" - } - ], - "usr": "s:Sq" + "name": "FileType", + "printedName": "ZTCoreKit.DFUFirmwareError.FileType", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "Var", - "name": "status", - "printedName": "status", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit16DFUFirmwareErrorV", + "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUFirmware", + "printedName": "DFUFirmware", + "children": [ + { + "kind": "Var", + "name": "fileName", + "printedName": "fileName", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -16616,19 +15658,32 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileName", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -16637,416 +15692,435 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Acknowledgment", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileName", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "ObjC" ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] }, { - "kind": "TypeDecl", - "name": "Event", - "printedName": "Event", + "kind": "Var", + "name": "fileUrl", + "printedName": "fileUrl", "children": [ { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt32?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileUrl", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "eventType", - "printedName": "eventType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileUrl", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "valid", + "printedName": "valid", + "children": [ { - "kind": "Var", - "name": "motionId", - "printedName": "motionId", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)valid", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)valid", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ { - "kind": "Var", - "name": "intensity", - "printedName": "intensity", + "kind": "TypeNominal", + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)size", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)size", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parts", + "printedName": "parts", + "children": [ { - "kind": "Var", - "name": "arguments", - "printedName": "arguments", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)parts", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)parts", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToZipFile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFileAC10Foundation3URLV_tKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToZipFile:error:", + "declAttributes": [ + "AccessControl", + "Convenience", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToZipFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFile4typeAC10Foundation3URLV_AA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToZipFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(zipFile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFileAC10Foundation4DataV_tKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithZipFile:error:", + "declAttributes": [ + "AccessControl", + "Convenience", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(zipFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFile4typeAC10Foundation4DataV_AA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithZipFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlToBinOrHexFile:urlToDatFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "usr": "s:Sq" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToBinOrHexFile:urlToDatFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC17urlToBinOrHexFile0de3DatI04typeAC10Foundation3URLV_AISgAA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithUrlToBinOrHexFile:urlToDatFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(binFile:datFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" - }, { "kind": "TypeNominal", "name": "Data", @@ -17054,1210 +16128,1126 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + "usr": "s:Sq" }, { - "kind": "TypeDecl", - "name": "EventType", - "printedName": "EventType", - "children": [ - { - "kind": "Var", - "name": "motion", - "printedName": "motion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithBinFile:datFile:type:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7binFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithBinFile:datFile:type:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hexFile:datFile:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ { - "kind": "Var", - "name": "transition", - "printedName": "transition", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmwareType", + "printedName": "ZTCoreKit.DFUFirmwareType", + "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithHexFile:datFile:type:error:", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC7hexFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtKcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithHexFile:datFile:type:error:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)init", + "mangledName": "$s9ZTCoreKit11DFUFirmwareCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware", + "mangledName": "$s9ZTCoreKit11DFUFirmwareC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCore", + "printedName": "ZTCore", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C7versionSSvpZ", + "mangledName": "$s9ZTCoreKit0A0C7versionSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C7versionSSvgZ", + "mangledName": "$s9ZTCoreKit0A0C7versionSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zcVersion", + "printedName": "zcVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvp", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvg", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvs", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9zcVersionSSvM", + "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCore", + "printedName": "ZTCoreKit.ZTCore", + "usr": "s:9ZTCoreKit0A0C" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C6sharedACvpZ", + "mangledName": "$s9ZTCoreKit0A0C6sharedACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCore", + "printedName": "ZTCoreKit.ZTCore", + "usr": "s:9ZTCoreKit0A0C" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C6sharedACvgZ", + "mangledName": "$s9ZTCoreKit0A0C6sharedACvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bleManager", + "printedName": "bleManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", + "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSettings", + "printedName": "ZTCoreKit.ZTSettings", + "usr": "s:9ZTCoreKit10ZTSettingsC" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", + "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EventType", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvg", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastCommand", + "printedName": "lastCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastCommandResponses", + "printedName": "lastCommandResponses", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", + "children": [ { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } - ] - }, + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeDecl", - "name": "MotionId", - "printedName": "MotionId", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "stepForward", - "printedName": "stepForward", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "stepBackward", - "printedName": "stepBackward", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommandResponse]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "stepSideLeft", - "printedName": "stepSideLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepSideRight", - "printedName": "stepSideRight", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepUp", - "printedName": "stepUp", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stepDown", - "printedName": "stepDown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionId", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", + "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastActivityId", + "printedName": "lastActivityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeDecl", - "name": "MotionIntensity", - "printedName": "MotionIntensity", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "low", - "printedName": "low", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "medium", - "printedName": "medium", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "high", - "printedName": "high", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", - "children": [ - { - "kind": "TypeNominal", - "name": "MotionIntensity", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] }, { - "kind": "TypeDecl", - "name": "Metrics", - "printedName": "Metrics", + "kind": "Var", + "name": "leftModuleCommandStatus", + "printedName": "leftModuleCommandStatus", "children": [ { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "kind": "TypeNominal", + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", + "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "usr": "s:Sq" + "name": "ZTCommandStatus", + "printedName": "ZTCoreKit.ZTCommandStatus", + "usr": "s:9ZTCoreKit15ZTCommandStatusO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", + "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectedDevice", + "printedName": "connectedDevice", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "metricId", - "printedName": "metricId", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTDevice?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastDeviceSerialNumber", + "printedName": "lastDeviceSerialNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "metric", - "printedName": "metric", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastDeviceQRCode", + "printedName": "lastDeviceQRCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMetric?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMetric", - "printedName": "ZTCoreKit.ZTRealtimeMetric", - "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.UInt8]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastQRCode", + "printedName": "lastQRCode", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -18266,19 +17256,29 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvp", + "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -18287,141 +17287,44 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Metrics", - "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvg", + "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTRealtimeMessageV", - "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTPacketDfuCharacteristic", - "printedName": "ZTPacketDfuCharacteristic", - "children": [ + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "isDfuInProgress", + "printedName": "isDfuInProgress", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvp", + "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -18431,16 +17334,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvg", + "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, "declAttributes": [ "Final" @@ -18451,34 +17353,28 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "dfuDelegate", + "printedName": "dfuDelegate", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "ReferenceOwnership", + "AccessControl", + "RawDocComment" ], + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -18489,157 +17385,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTDfuDelegate", + "printedName": "any ZTCoreKit.ZTDfuDelegate", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPacketDfuCharacteristic", - "printedName": "ZTCoreKit.ZTPacketDfuCharacteristic", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit25ZTPacketDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit25ZTPacketDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTMessageInactivityTimeout", - "children": [ - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -18654,16 +17419,27 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDfuDelegate", + "printedName": "any ZTCoreKit.ZTDfuDelegate", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32Vvs", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -18678,33 +17454,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4lefts6UInt32VvM", + "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", + "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "right", - "printedName": "right", + "name": "firmwareDfuState", + "printedName": "firmwareDfuState", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "ZTCoreKit.DFUState?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvp", + "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", + "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], @@ -18717,16 +17506,76 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Optional", + "printedName": "ZTCoreKit.DFUState?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvg", + "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentDfuState", + "printedName": "currentDfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -18741,16 +17590,19 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32Vvs", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -18765,121 +17617,50 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5rights6UInt32VvM", + "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", + "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "onDfuStateUpdated", + "printedName": "onDfuStateUpdated", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvp", + "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", + "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -18888,328 +17669,318 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV11descriptionSSvg", + "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", + "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV", - "mangledName": "$s9ZTCoreKit26ZTMessageInactivityTimeoutV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareType", - "printedName": "DFUFirmwareType", - "children": [ { "kind": "Var", - "name": "softdevice", - "printedName": "softdevice", + "name": "onDfuUploadProgress", + "printedName": "onDfuUploadProgress", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "Swift.Float?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10softdeviceyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", + "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "bootloader", - "printedName": "bootloader", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", + "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeBootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO10bootloaderyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 + ] }, { "kind": "Var", - "name": "application", - "printedName": "application", + "name": "onDfuFinishedLeft", + "printedName": "onDfuFinishedLeft", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeApplication", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO11applicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "softdeviceBootloader", - "printedName": "softdeviceBootloader", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO20softdeviceBootloaderyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 + ] }, { "kind": "Var", - "name": "softdeviceBootloaderApplication", - "printedName": "softdeviceBootloaderApplication", + "name": "onDfuFinishedRight", + "printedName": "onDfuFinishedRight", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareType.Type) -> ZTCoreKit.DFUFirmwareType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType@DFUFirmwareTypeSoftdeviceBootloaderApplication", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO31softdeviceBootloaderApplicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 4 - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUFirmwareType?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "onDfuFinished", + "printedName": "onDfuFinished", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", + "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -19218,372 +17989,210 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", + "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType", - "mangledName": "$s9ZTCoreKit15DFUFirmwareTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "onDfuCopied", + "printedName": "onDfuCopied", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareError", - "printedName": "DFUFirmwareError", - "children": [ - { - "kind": "TypeDecl", - "name": "FileType", - "printedName": "FileType", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "zip", - "printedName": "zip", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3zipyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setup", + "printedName": "setup(apiKey:secret:appId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "binOrHex", - "printedName": "binOrHex", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO8binOrHexyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Var", - "name": "dat", - "printedName": "dat", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUFirmwareError.FileType.Type) -> ZTCoreKit.DFUFirmwareError.FileType", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO3datyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - }, - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV8FileTypeO", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "type", - "printedName": "type", + "kind": "Function", + "name": "clearUser", + "printedName": "clearUser()", "children": [ { "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C9clearUseryyF", + "mangledName": "$s9ZTCoreKit0A0C9clearUseryyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "FileType", - "printedName": "ZTCoreKit.DFUFirmwareError.FileType", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV8FileTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV4typeAC8FileTypeOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "kind": "Function", + "name": "updateOrganization", + "printedName": "updateOrganization(code:appType:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", @@ -19596,90 +18205,9 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit16DFUFirmwareErrorV", - "mangledName": "$s9ZTCoreKit16DFUFirmwareErrorV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmware", - "printedName": "DFUFirmware", - "children": [ - { - "kind": "Var", - "name": "fileName", - "printedName": "fileName", - "children": [ + }, { "kind": "TypeNominal", "name": "Optional", @@ -19692,735 +18220,615 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileName", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", + "mangledName": "$s9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "scan", + "printedName": "scan(for:timeout:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileName", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC8fileNameSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fileUrl", - "printedName": "fileUrl", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.URL?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)fileUrl", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)fileUrl", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7fileUrl10Foundation3URLVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "valid", - "printedName": "valid", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)valid", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", "moduleName": "ZTCoreKit", + "deprecated": true, "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)valid", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5validSbvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "size", - "printedName": "size", + "kind": "Function", + "name": "scan", + "printedName": "scan(for:timeout:deviceDiscovered:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)size", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)size", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC4sizeAA0C4SizeCvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "parts", - "printedName": "parts", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(py)parts", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)parts", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC5partsSivg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToZipFile:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFileAC10Foundation3URLV_tKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToZipFile:error:", - "declAttributes": [ - "AccessControl", - "Convenience", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToZipFile:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToZipFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC12urlToZipFile4typeAC10Foundation3URLV_AA0C4TypeOtKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToZipFile:type:error:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(zipFile:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFileAC10Foundation4DataV_tKcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithZipFile:error:", - "declAttributes": [ - "AccessControl", - "Convenience", - "ObjC", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(zipFile:type:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithZipFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7zipFile4typeAC10Foundation4DataV_AA0C4TypeOtKcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", "moduleName": "ZTCoreKit", - "objc_name": "initWithZipFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(urlToBinOrHexFile:urlToDatFile:type:)", + "kind": "Function", + "name": "scan", + "printedName": "scan(macAddress:timeout:deviceDiscovered:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.URL?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithUrlToBinOrHexFile:urlToDatFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC17urlToBinOrHexFile0de3DatI04typeAC10Foundation3URLV_AISgAA0C4TypeOtKcfc", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", + "mangledName": "$s9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", "moduleName": "ZTCoreKit", - "objc_name": "initWithUrlToBinOrHexFile:urlToDatFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(binFile:datFile:type:)", + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C8stopScanyyF", + "mangledName": "$s9ZTCoreKit0A0C8stopScanyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectWithDevice", + "printedName": "connectWithDevice(_:timeout:isDfu:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithBinFile:datFile:type:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7binFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", "moduleName": "ZTCoreKit", - "objc_name": "initWithBinFile:datFile:type:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(hexFile:datFile:type:)", + "kind": "Function", + "name": "connect", + "printedName": "connect(withCode:timeout:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DFUFirmwareType", - "printedName": "ZTCoreKit.DFUFirmwareType", - "usr": "c:@M@ZTCoreKit@E@DFUFirmwareType" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)initWithHexFile:datFile:type:error:", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC7hexFile03datE04typeAC10Foundation4DataV_AISgAA0C4TypeOtKcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", + "mangledName": "$s9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", "moduleName": "ZTCoreKit", - "objc_name": "initWithHexFile:datFile:type:error:", "declAttributes": [ + "Final", "AccessControl", - "ObjC", "RawDocComment" ], "throwing": true, - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "connectWithCode", + "printedName": "connectWithCode(_:timeout:completion:)", "children": [ { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware(im)init", - "mangledName": "$s9ZTCoreKit11DFUFirmwareCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware", - "mangledName": "$s9ZTCoreKit11DFUFirmwareC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTIndicateCharacteristic", - "printedName": "ZTIndicateCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -20429,788 +18837,1147 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo(code:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "Function", + "name": "tryReconnect", + "printedName": "tryReconnect(completion:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkConnectedDevice", + "printedName": "checkConnectedDevice(completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Function", + "name": "setDeepSleepMode", + "printedName": "setDeepSleepMode()", "children": [ { "kind": "TypeNominal", - "name": "ZTIndicateCharacteristic", - "printedName": "ZTCoreKit.ZTIndicateCharacteristic", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC" + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "mangledName": "$s9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initiateBackgroundDFU", + "printedName": "initiateBackgroundDFU(isRestartRequired:isManualMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", + "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Final", "AccessControl", - "Required", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "initiateBackgroundDFU", + "printedName": "initiateBackgroundDFU(path:isManualMode:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", + "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", + "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Final", "AccessControl", - "Override", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "OperatorDecl", - "name": "<<-", - "printedName": "<<-", - "declKind": "InfixOperator", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Infix", - "RawDocComment" - ] - }, - { - "kind": "OperatorDecl", - "name": "->>", - "printedName": "->>", - "declKind": "InfixOperator", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Infix", - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "isFirmwareUpdateRequired", + "printedName": "isFirmwareUpdateRequired(firmwareRevision:completion:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "mangledName": "$s9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Function", + "name": "isPendingEmbeddedActivity", + "printedName": "isPendingEmbeddedActivity(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "mangledName": "$s9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "pushPendingEmbeddedActivities", + "printedName": "pushPendingEmbeddedActivities(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", + "mangledName": "$s9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Function", + "name": "updateFirmware", + "printedName": "updateFirmware(packageType:isButtonless:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDfuPackageType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "mangledName": "$s9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "updateFirmware", + "printedName": "updateFirmware(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C14updateFirmware4pathySS_tF", + "mangledName": "$s9ZTCoreKit0A0C14updateFirmware4pathySS_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "dfuStateDidChange", + "printedName": "dfuStateDidChange(to:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "mangledName": "$s9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuStateDidChangeTo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "dfuFailed", + "printedName": "dfuFailed(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C9dfuFailed5erroryAA7ZTErrorO_tF", + "mangledName": "$s9ZTCoreKit0A0C9dfuFailed5erroryAA7ZTErrorO_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Function", + "name": "dfuError", + "printedName": "dfuError(_:didOccurWithMessage:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "mangledName": "$s9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuError:didOccurWithMessage:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "dfuProgressDidChange", + "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "mangledName": "$s9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "moduleName": "ZTCoreKit", + "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Function", + "name": "logWith", + "printedName": "logWith(_:message:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", + "mangledName": "$s9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", + "moduleName": "ZTCoreKit", + "objc_name": "logWith:message:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Function", + "name": "checkDfuState", + "printedName": "checkDfuState()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A0C13checkDfuStateyyF", + "mangledName": "$s9ZTCoreKit0A0C13checkDfuStateyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit0A0C", + "mangledName": "$s9ZTCoreKit0A0C", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + "hasMissingDesignatedInitializers": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "DFUServiceDelegate", + "printedName": "DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "kind": "Conformance", + "name": "DFUProgressDelegate", + "printedName": "DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "LoggerDelegate", + "printedName": "LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "ZTDatabaseService", + "printedName": "ZTDatabaseService", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Var", + "name": "currentActivityId", + "printedName": "currentActivityId", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC17currentActivityIdSSSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Constructor", + "name": "init", + "printedName": "init(context:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "ZTDatabaseService", + "printedName": "ZTCoreKit.ZTDatabaseService<τ_0_0, τ_0_1>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_0" + "printedName": "τ_0_1" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "hasDefaultArg": true, + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC7contextACyxq_GSo22NSManagedObjectContextC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC7contextACyxq_GSo22NSManagedObjectContextC_tcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Function", + "name": "fetchActivity", + "printedName": "fetchActivity(withId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13fetchActivity6withIdq_SgSS_tYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13fetchActivity6withIdq_SgSS_tYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchActivity", + "printedName": "fetchActivity(withSerial:)", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "τ_0_1?", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_0" + "printedName": "τ_0_1" } ], - "usr": "s:Sa" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13fetchActivity10withSerialq_SgSS_tYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13fetchActivity10withSerialq_SgSS_tYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Function", + "name": "createActivity", + "printedName": "createActivity(withId:updateBlock:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", @@ -21219,669 +19986,349 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "((τ_0_1) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14createActivity6withId11updateBlockq_SgSS_yq_cSgtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14createActivity6withId11updateBlockq_SgSS_yq_cSgtYaKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", + "kind": "Function", + "name": "updateActivity", + "printedName": "updateActivity(id:updateBlock:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1) -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", - "children": [ + ] + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:SD" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14updateActivity2id0E5Block10completionySS_yq_cys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14updateActivity2id0E5Block10completionySS_yq_cys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Function", + "name": "deleteActivity", + "printedName": "deleteActivity(withId:completion:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC14deleteActivity6withId10completionySS_ys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC14deleteActivity6withId10completionySS_ys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Function", + "name": "createPacket", + "printedName": "createPacket(data:activity:fwVersion:updateBlock:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } ], - "usr": "s:Sa" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Optional", + "printedName": "((τ_0_0) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> ()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12createPacket4data8activity9fwVersion11updateBlockx10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgyxcSgtYaF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12createPacket4data8activity9fwVersion11updateBlockx10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgyxcSgtYaF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Function", + "name": "fetchPackets", + "printedName": "fetchPackets(for:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[τ_0_0], any Swift.Error>) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[τ_0_0], any Swift.Error>", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" + "usr": "s:s6ResultO" } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12fetchPackets3for10completionySS_ys6ResultOySayxGs5Error_pGctF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12fetchPackets3for10completionySS_ys6ResultOySayxGs5Error_pGctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Function", + "name": "fetchPackets", + "printedName": "fetchPackets(forActivityId:from:to:in:)", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", @@ -21889,1116 +20336,942 @@ "printedName": "τ_0_0" } ], - "usr": "s:Sh" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sh" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IntelHex2BinConverter", - "printedName": "IntelHex2BinConverter", - "children": [ - { - "kind": "Function", - "name": "convert", - "printedName": "convert(_:mbrSize:)", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "hasDefaultArg": true, - "usr": "s:s6UInt32V" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC7convert_7mbrSize10Foundation4DataVSgAH_s6UInt32VtFZ", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC12fetchPackets13forActivityId4from2to2inSayxGSS_s5Int16VSgALSo22NSManagedObjectContextCtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC12fetchPackets13forActivityId4from2to2inSayxGSS_s5Int16VSgALSo22NSManagedObjectContextCtYaKF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "trashOldPackets", + "printedName": "trashOldPackets()", "children": [ { "kind": "TypeNominal", - "name": "IntelHex2BinConverter", - "printedName": "ZTCoreKit.IntelHex2BinConverter", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter(im)init", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterCACycfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC15trashOldPacketsyyF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC15trashOldPacketsyyF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)IntelHex2BinConverter", - "mangledName": "$s9ZTCoreKit21IntelHex2BinConverterC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCompressionMethod", - "printedName": "ZTCompressionMethod", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", + "kind": "Function", + "name": "updatePackets", + "printedName": "updatePackets(for:from:to:withStatus:completion:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCompressionMethod.Type) -> ZTCoreKit.ZTCompressionMethod", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCompressionMethod.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO4noneyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO4noneyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC13updatePackets3for4from2to10withStatus10completionySS_s5Int16VAkA8ZTPacketC0K0Oys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC13updatePackets3for4from2to10withStatus10completionySS_s5Int16VAkA8ZTPacketC0K0Oys5Error_pSgctF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "deflate", - "printedName": "deflate", + "kind": "Function", + "name": "add", + "printedName": "add(_:to:in:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCompressionMethod.Type) -> ZTCoreKit.ZTCompressionMethod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCompressionMethod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO7deflateyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO7deflateyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC3add_2to2inyx_SSSo22NSManagedObjectContextCtYaKF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC3add_2to2inyx_SSSo22NSManagedObjectContextCtYaKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "update", + "printedName": "update(_:withNewStatus:in:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCompressionMethod?", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValueACSgs6UInt16V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValueACSgs6UInt16V_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC6update_13withNewStatus2inySayxG_AA8ZTPacketC0H0OSo22NSManagedObjectContextCtYaF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC6update_13withNewStatus2inySayxG_AA8ZTPacketC0H0OSo22NSManagedObjectContextCtYaF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "update", + "printedName": "update(packet:updateBlock:completion:)", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvp", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvg", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO8rawValues6UInt16Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTCompressionMethodO", - "mangledName": "$s9ZTCoreKit19ZTCompressionMethodO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt16", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + ] + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC6update6packet0E5Block10completionyx_yxcys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC6update6packet0E5Block10completionyx_yxcys5Error_pSgcSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "Import", - "name": "Compression", - "printedName": "Compression", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTDatabaseServiceC", + "mangledName": "$s9ZTCoreKit17ZTDatabaseServiceC", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : ZTCoreKit.ZTPacketCachable, τ_0_1 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", "declAttributes": [ + "AccessControl", "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTAlgoState", - "printedName": "ZTAlgoState", + "name": "ZTUser", + "printedName": "ZTUser", "children": [ { "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "name": "attributes", + "printedName": "attributes", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "walking", - "printedName": "walking", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "running", - "printedName": "running", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pedaling", - "printedName": "pedaling", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvs", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsUp", - "printedName": "stairsUp", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "stairsDown", - "printedName": "stairsDown", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "standing", - "printedName": "standing", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "sitting", - "printedName": "sitting", + "name": "organizationId", + "printedName": "organizationId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "kneeling", - "printedName": "kneeling", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "tiptoe", - "printedName": "tiptoe", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "vibration", - "printedName": "vibration", + "name": "appId", + "printedName": "appId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "slip", - "printedName": "slip", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "incident", - "printedName": "incident", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "freewheel", - "printedName": "freewheel", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoState.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoState?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoState", - "printedName": "ZTCoreKit.ZTAlgoState", - "usr": "s:9ZTCoreKit11ZTAlgoStateO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23007,198 +21280,108 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit11ZTAlgoStateO", - "mangledName": "$s9ZTCoreKit11ZTAlgoStateO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "userId", + "printedName": "userId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvp", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvp", "moduleName": "ZTCoreKit", - "protocolReq": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23208,26 +21391,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvg", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "get" }, { @@ -23243,26 +21423,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvs", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "implicit": true, "accessorKind": "set" }, { @@ -23277,42 +21454,101 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", + "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvM", + "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", - "sugared_genericSig": "", - "protocolReq": true, "implicit": true, - "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTUser?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTUser", + "printedName": "ZTCoreKit.ZTUser", + "usr": "s:9ZTCoreKit6ZTUserC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Required", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP", + "declKind": "Class", + "usr": "s:9ZTCoreKit6ZTUserC", + "mangledName": "$s9ZTCoreKit6ZTUserC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, @@ -23326,16 +21562,6 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "Import", "name": "Foundation", @@ -23348,333 +21574,260 @@ }, { "kind": "TypeDecl", - "name": "LogLevel", - "printedName": "LogLevel", + "name": "ZTAchievement", + "printedName": "ZTAchievement", "children": [ { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelDebug", - "mangledName": "$s9ZTCoreKit8LogLevelO5debugyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "verbose", - "printedName": "verbose", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelVerbose", - "mangledName": "$s9ZTCoreKit8LogLevelO7verboseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelInfo", - "mangledName": "$s9ZTCoreKit8LogLevelO4infoyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + ] }, { "kind": "Var", - "name": "application", - "printedName": "application", + "name": "type", + "printedName": "type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelApplication", - "mangledName": "$s9ZTCoreKit8LogLevelO11applicationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelWarning", - "mangledName": "$s9ZTCoreKit8LogLevelO7warningyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelError", - "mangledName": "$s9ZTCoreKit8LogLevelO5erroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Function", - "name": "name", - "printedName": "name()", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8LogLevelO4nameSSyF", - "mangledName": "$s9ZTCoreKit8LogLevelO4nameSSyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "activityId", + "printedName": "activityId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.LogLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivp", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -23683,220 +21836,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivg", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@LogLevel", - "mangledName": "$s9ZTCoreKit8LogLevelO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "LoggerDelegate", - "printedName": "LoggerDelegate", - "children": [ - { - "kind": "Function", - "name": "logWith", - "printedName": "logWith(_:message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate(im)logWith:message:", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP7logWith_7messageyAA8LogLevelO_SStF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.LoggerDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTFirmwareCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -23909,225 +21947,107 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC", - "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUServiceController", - "printedName": "DFUServiceController", - "children": [ - { - "kind": "Function", - "name": "pause", - "printedName": "pause()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)pause", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5pauseyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resume", - "printedName": "resume()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)resume", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6resumeyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "abort", - "printedName": "abort()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)abort", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC5abortSbyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "restart", - "printedName": "restart()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)restart", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7restartyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "paused", - "printedName": "paused", + "name": "appuserId", + "printedName": "appuserId", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)paused", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvp", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24136,43 +22056,121 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)paused", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC6pausedSbvg", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "aborted", - "printedName": "aborted", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(py)aborted", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvp", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24181,634 +22179,571 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController(im)aborted", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC7abortedSbvg", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "ObjC" - ], + "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController", - "mangledName": "$s9ZTCoreKit20DFUServiceControllerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTTXPower", - "printedName": "ZTTXPower", - "children": [ - { - "kind": "Var", - "name": "dBm0", - "printedName": "dBm0", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm2", - "printedName": "dBm2", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm3", - "printedName": "dBm3", + "name": "duration", + "printedName": "duration", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm4", - "printedName": "dBm4", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm5", - "printedName": "dBm5", + "name": "calories", + "printedName": "calories", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm6", - "printedName": "dBm6", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Swift.Double?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dBm7", - "printedName": "dBm7", + "name": "createdAt", + "printedName": "createdAt", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dBm8", - "printedName": "dBm8", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTTXPower.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTTXPower?", + "printedName": "ZTCoreKit.ZTAchievement?", "children": [ { "kind": "TypeNominal", - "name": "ZTTXPower", - "printedName": "ZTCoreKit.ZTTXPower", - "usr": "s:9ZTCoreKit9ZTTXPowerO" + "name": "ZTAchievement", + "printedName": "ZTCoreKit.ZTAchievement", + "usr": "s:9ZTCoreKit13ZTAchievementC" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], "init_kind": "Designated" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTTXPowerO", - "mangledName": "$s9ZTCoreKit9ZTTXPowerO", + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTAchievementC", + "mangledName": "$s9ZTCoreKit13ZTAchievementC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "Import", "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTPlist", - "printedName": "ZTPlist", + "name": "ZTService", + "printedName": "ZTService", "children": [ { "kind": "Var", - "name": "folderName", - "printedName": "folderName", + "name": "device", + "printedName": "device", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "WeakStorage", + "printedName": "ZTCoreKit.ZTDevice?" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10folderNameSSvpZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC10folderNameSSvpZ", + "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", + "ReferenceOwnership", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isLet": true, + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -24818,43 +22753,47 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ImplicitlyUnwrappedOptional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10folderNameSSvgZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC10folderNameSSvgZ", + "usr": "s:9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC6deviceAA8ZTDeviceCSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "service", + "printedName": "service", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC3url10Foundation3URLVvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC3url10Foundation3URLVvp", + "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "HasStorage", + "Final", "AccessControl", "RawDocComment" ], @@ -24868,14 +22807,14 @@ "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC3url10Foundation3URLVvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC3url10Foundation3URLVvg", + "usr": "s:9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC7serviceSo9CBServiceCvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ @@ -24887,77 +22826,33 @@ }, { "kind": "Var", - "name": "encrypted", - "printedName": "encrypted", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC9encryptedSbvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC9encryptedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC9encryptedSbvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC9encryptedSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "encryption", - "printedName": "encryption", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvp", + "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -24966,114 +22861,68 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAES?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC10encryptionAA5ZTAESVSgvg", + "usr": "s:9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC11serviceTypeACmvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "static": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "dictionary", - "printedName": "dictionary", + "name": "characteristics", + "printedName": "characteristics", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionarySo19NSMutableDictionaryCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "cache", - "printedName": "cache", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvp", + "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", + "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Lazy", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -25082,226 +22931,56 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic]", "children": [ { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableDictionary?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "NSMutableDictionary", - "printedName": "Foundation.NSMutableDictionary", - "usr": "c:objc(cs)NSMutableDictionary" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvs", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvM", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cacheSo19NSMutableDictionaryCSgvM", + "usr": "s:9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", + "mangledName": "$s9ZTCoreKit9ZTServiceC15characteristicsSDySSAA16ZTCharacteristicCGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "volume", - "printedName": "volume", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC6volumes5Int64Vvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC6volumes5Int64Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC6volumes5Int64Vvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC6volumes5Int64Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "size", - "printedName": "size", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC4sizeSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC4sizeSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC4sizeSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC4sizeSSvg", - "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "fileName", - "printedName": "fileName", + "kind": "Function", + "name": "characteristic", + "printedName": "characteristic(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC8fileNameSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC8fileNameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC8fileNameSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC8fileNameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC4nameSSvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -25310,32 +22989,18 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC4nameSSvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "save", - "printedName": "save()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4saveyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4saveyyF", + "usr": "s:9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", + "mangledName": "$s9ZTCoreKit9ZTServiceC14characteristicyxSgSSSgAA16ZTCharacteristicCRbzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCharacteristic>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" @@ -25343,191 +23008,148 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(insideBundleUrl:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC15insideBundleUrlAC10Foundation3URLV_tcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC15insideBundleUrlAC10Foundation3URLV_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(withNameAtDocumentDirectory:folderName:)", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE0ACSS_SStcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE0ACSS_SStcfc", + "usr": "s:9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit9ZTServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "Required", "RawDocComment" ], "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(withNameAtDocumentDirectory:folderName:encryption:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "ZTAES", - "printedName": "ZTCoreKit.ZTAES", - "usr": "s:9ZTCoreKit5ZTAESV" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE010encryptionACSS_SSAA5ZTAESVtcfc", - "mangledName": "$s9ZTCoreKit7ZTPlistC27withNameAtDocumentDirectory06folderE010encryptionACSS_SSAA5ZTAESVtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit9ZTServiceC2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "Convenience", + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Convenience" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit9ZTServiceC", + "mangledName": "$s9ZTCoreKit9ZTServiceC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DataConvertible", + "printedName": "DataConvertible", + "children": [ { "kind": "Function", - "name": "delete", - "printedName": "delete(_:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTPlist?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6deleteyyACSgzFZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC6deleteyyACSgzFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "asCollection", - "printedName": "asCollection()", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[(key: Any, value: Any)]", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: Any, value: Any)", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ] - } - ], - "usr": "s:Sa" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC12asCollectionSayyp3key_yp5valuetGyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC12asCollectionSayyp3key_yp5valuetGyF", + "usr": "s:9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "set", - "printedName": "set(_:for:)", + "name": "+=", + "printedName": "+=(_:_:)", "children": [ { "kind": "TypeNominal", @@ -25536,94 +23158,68 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3set_3foryypSg_SStF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3set_3foryypSg_SStF", + "usr": "s:9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "get", - "printedName": "get(_:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3getyypSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3getyypSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clean", - "printedName": "clean()", - "children": [ + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5cleanyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5cleanyyF", + "usr": "s:9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "remove", - "printedName": "remove(_:)", + "name": "+=", + "printedName": "+=(_:_:)", "children": [ { "kind": "TypeNominal", @@ -25632,227 +23228,346 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "paramValueOwnership": "InOut", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6removeyySSd_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6removeyySSd_tF", + "usr": "s:9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", + "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUPeripheralSelector", + "printedName": "DFUPeripheralSelector", + "children": [ { "kind": "Function", - "name": "remove", - "printedName": "remove(keys:)", + "name": "select", + "printedName": "select(_:advertisementData:RSSI:hint:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : AnyObject]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6remove4keysySaySSG_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6remove4keysySaySSG_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "bool", - "printedName": "bool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4boolySbSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4boolySbSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "int", - "printedName": "int(_:)", - "children": [ + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC3intySiSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC3intySiSgSSF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)select:advertisementData:RSSI:hint:", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "select:advertisementData:RSSI:hint:", "declAttributes": [ - "RawDocComment" + "ObjC", + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "double", - "printedName": "double(_:)", + "name": "filterBy", + "printedName": "filterBy(hint:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6doubleySdSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6doubleySdSgSSF", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)filterByHint:", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC8filterBy4hintSaySo6CBUUIDCGSgAG_tF", "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "filterByHint:", "declAttributes": [ - "RawDocComment" + "ObjC", + "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "float", - "printedName": "float(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUPeripheralSelector", + "printedName": "ZTCoreKit.DFUPeripheralSelector", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5floatySfSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5floatySfSgSSF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)init", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", "declAttributes": [ - "RawDocComment" + "Dynamic", + "ObjC", + "Override" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector", + "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Starscream", + "printedName": "Starscream", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTControlPointDfuCharacteristic", + "printedName": "ZTControlPointDfuCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -25860,740 +23575,611 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC6stringySSSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC6stringySSSgSSF", + "declKind": "Var", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "dictionary", - "printedName": "dictionary(_:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC10dictionaryySDySSypGSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC10dictionaryySDySSypGSgSSF", + "declKind": "Var", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "collection", - "printedName": "collection(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC10collectionySayypGSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC10collectionySayypGSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "date", - "printedName": "date(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "ZTControlPointDfuCharacteristic", + "printedName": "ZTCoreKit.ZTControlPointDfuCharacteristic", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4datey10Foundation4DateVSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4datey10Foundation4DateVSgSSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "data", - "printedName": "data(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4datay10Foundation4DataVSgSSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4datay10Foundation4DataVSgSSF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ + "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "null", - "printedName": "null(_:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC4nullyySSF", - "mangledName": "$s9ZTCoreKit7ZTPlistC4nullyySSF", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ + "AccessControl", + "Override", "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTBleManager", + "printedName": "ZTBleManager", + "children": [ { - "kind": "TypeDecl", - "name": "Error", - "printedName": "Error", + "kind": "Var", + "name": "advertisingServices", + "printedName": "advertisingServices", "children": [ { - "kind": "Var", - "name": "notFound", - "printedName": "notFound", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO8notFoundyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO8notFoundyAE10Foundation3URLVSg_tcAEmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "deleted", - "printedName": "deleted", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO7deletedyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO7deletedyAE10Foundation3URLVSg_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "parse", - "printedName": "parse", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URL?) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(at: Foundation.URL?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO5parseyAE10Foundation3URLVSg_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO5parseyAE10Foundation3URLVSg_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "filemanagerRemove", - "printedName": "filemanagerRemove", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (any Swift.Error) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(any Swift.Error) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(with: any Swift.Error)", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO17filemanagerRemoveyAEsAD_p_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO17filemanagerRemoveyAEsAD_p_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "managerState", + "printedName": "managerState", + "children": [ { - "kind": "Var", - "name": "aesKeyFail", - "printedName": "aesKeyFail", + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: Swift.String)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10aesKeyFailyAESS_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10aesKeyFailyAESS_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "aesInitialVectorFail", - "printedName": "aesInitialVectorFail", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(iv: Swift.String)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTBleManagerState", + "printedName": "ZTCoreKit.ZTBleManagerState", + "usr": "s:9ZTCoreKit17ZTBleManagerStateO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO20aesInitialVectorFailyAESS_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO20aesInitialVectorFailyAESS_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "aesCryptFail", - "printedName": "aesCryptFail", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> (Swift.Int32) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(status: Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO12aesCryptFailyAEs5Int32V_tcAEmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO12aesCryptFailyAEs5Int32V_tcAEmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ { - "kind": "Var", - "name": "noData", - "printedName": "noData", + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> ZTCoreKit.ZTPlist.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO6noDatayA2EmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO6noDatayA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvgZ", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvgZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "centralManager", + "printedName": "centralManager", + "children": [ { - "kind": "Var", - "name": "stringNotInUtf8", - "printedName": "stringNotInUtf8", + "kind": "TypeNominal", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPlist.Error.Type) -> ZTCoreKit.ZTPlist.Error", + "kind": "TypeNominal", + "name": "ZTCBCentralManagerProtocol", + "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPlist.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ZTCoreKit.ZTPlist.Error", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO" - } - ] + "name": "ZTCBCentralManagerProtocol", + "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO15stringNotInUtf8yA2EmF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO15stringNotInUtf8yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macAddress", + "printedName": "macAddress", + "children": [ { - "kind": "Var", - "name": "identifier", - "printedName": "identifier", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -26602,67 +24188,23 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvpZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvgZ", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO10identifierSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "raise", - "printedName": "raise()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO5raiseyyF", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO5raiseyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -26679,179 +24221,194 @@ "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final" ], - "isFromExtension": true, - "accessors": [ + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInfo", + "printedName": "deviceInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTPlistC5ErrorO", - "mangledName": "$s9ZTCoreKit7ZTPlistC5ErrorO", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Function", - "name": "encrypt", - "printedName": "encrypt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC7encrypty10Foundation4DataVSgypSgF", - "mangledName": "$s9ZTCoreKit7ZTPlistC7encrypty10Foundation4DataVSgypSgF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decrypt", - "printedName": "decrypt(_:)", + "kind": "Var", + "name": "serviceTypes", + "printedName": "serviceTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC7decrypty10Foundation4DataVSgAHF", - "mangledName": "$s9ZTCoreKit7ZTPlistC7decrypty10Foundation4DataVSgAHF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDictionary", - "printedName": "decryptedDictionary(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", "children": [ { "kind": "TypeNominal", @@ -26861,392 +24418,377 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "usr": "s:SD" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "product", + "printedName": "product", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC19decryptedDictionary0D4DataSDySSypGSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC19decryptedDictionary0D4DataSDySSypGSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedCollection", - "printedName": "decryptedCollection(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC19decryptedCollection0D4DataSayypGSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC19decryptedCollection0D4DataSayypGSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedString", - "printedName": "decryptedString(decryptedData:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC15decryptedString0D4DataSSSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC15decryptedString0D4DataSSSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decryptedBool", - "printedName": "decryptedBool(decryptedData:)", + "kind": "Var", + "name": "connectedDevice", + "printedName": "connectedDevice", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTDevice?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC13decryptedBool0D4DataSbSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC13decryptedBool0D4DataSbSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedInt", - "printedName": "decryptedInt(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "usr": "s:Sq" + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC12decryptedInt0D4DataSiSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC12decryptedInt0D4DataSiSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "decryptedFloat", - "printedName": "decryptedFloat(decryptedData:)", + "kind": "Var", + "name": "foundPeripherals", + "printedName": "foundPeripherals", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "ImplicitlyUnwrappedOptional", + "printedName": "[CoreBluetooth.CBPeripheral]?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC14decryptedFloat0D4DataSfSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC14decryptedFloat0D4DataSfSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDouble", - "printedName": "decryptedDouble(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ImplicitlyUnwrappedOptional", + "printedName": "[CoreBluetooth.CBPeripheral]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBPeripheral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scanning", + "printedName": "scanning", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC15decryptedDouble0D4DataSdSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC15decryptedDouble0D4DataSdSgypSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "SetterAccess", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptedDate", - "printedName": "decryptedDate(decryptedData:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" ], - "usr": "s:Sq" + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTPlistC13decryptedDate0D4Data10Foundation0E0VSgypSg_tF", - "mangledName": "$s9ZTCoreKit7ZTPlistC13decryptedDate0D4Data10Foundation0E0VSgypSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit7ZTPlistC", - "mangledName": "$s9ZTCoreKit7ZTPlistC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCommand", - "printedName": "ZTCommand", - "children": [ + ] + }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "isDfuMode", + "printedName": "isDfuMode", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", + "SetterAccess", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -27255,1285 +24797,1307 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "generalState", - "printedName": "generalState", + "name": "onBluetoothStateChange", + "printedName": "onBluetoothStateChange", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12generalStateyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12generalStateyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "startNewActivity", - "printedName": "startNewActivity", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "stopNewActivity", - "printedName": "stopNewActivity", + "name": "onDeviceStateChange", + "printedName": "onDeviceStateChange", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "resendData", - "printedName": "resendData", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10resendDatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10resendDatayA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "deepSleep", - "printedName": "deepSleep", + "name": "onDeviceDiscovered", + "printedName": "onDeviceDiscovered", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "reboot", - "printedName": "reboot", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO6rebootyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO6rebootyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "detailedBattery", - "printedName": "detailedBattery", + "name": "onDeviceConnectionFailed", + "printedName": "onDeviceConnectionFailed", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "hardwareInformation", - "printedName": "hardwareInformation", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "firmwareInformation", - "printedName": "firmwareInformation", + "name": "onScanFinished", + "printedName": "onScanFinished", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "bootloaderVersion", - "printedName": "bootloaderVersion", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setInactivityTimeout", - "printedName": "setInactivityTimeout", + "name": "onReconnectFailed", + "printedName": "onReconnectFailed", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setDFUInstall", - "printedName": "setDFUInstall", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setDFUMode", - "printedName": "setDFUMode", + "name": "onGeneralStateUpdated", + "printedName": "onGeneralStateUpdated", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setChunkConfig", - "printedName": "setChunkConfig", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "setChunkMinutesInterval", - "printedName": "setChunkMinutesInterval", + "name": "onCommandAck", + "printedName": "onCommandAck", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } - ] + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setChunkSecondsInterval", - "printedName": "setChunkSecondsInterval", - "children": [ + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "selectAlgorithm", - "printedName": "selectAlgorithm", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTBleManager", + "printedName": "ZTCoreKit.ZTBleManager", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager(im)init", + "mangledName": "$s9ZTCoreKit12ZTBleManagerCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", "declAttributes": [ - "RawDocComment" - ] + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "freeMemory", - "printedName": "freeMemory", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:willRestoreState:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:willRestoreState:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16willRestoreStateySo09CBCentralD0C_SDySSypGtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:willRestoreState:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "getTimestamp", - "printedName": "getTimestamp", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:connectionEventDidOccur:for:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBConnectionEvent", + "printedName": "CoreBluetooth.CBConnectionEvent", + "usr": "c:@E@CBConnectionEvent" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:connectionEventDidOccur:forPeripheral:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23connectionEventDidOccur3forySo09CBCentralD0C_So012CBConnectionG0VSo12CBPeripheralCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:connectionEventDidOccur:forPeripheral:", "declAttributes": [ - "RawDocComment" - ] + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "passthroughAlgo", - "printedName": "passthroughAlgo", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didDiscover:advertisementData:rssi:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDiscoverPeripheral:advertisementData:RSSI:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_11didDiscover17advertisementData4rssiySo09CBCentralD0C_So12CBPeripheralCSDySSypGSo8NSNumberCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didDiscoverPeripheral:advertisementData:RSSI:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "resetActivity", - "printedName": "resetActivity", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didFailToConnect:error:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didFailToConnectPeripheral:error:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16didFailToConnect5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didFailToConnectPeripheral:error:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "getActivityMetadata", - "printedName": "getActivityMetadata", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didConnect:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didConnectPeripheral:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_10didConnectySo09CBCentralD0C_So12CBPeripheralCtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didConnectPeripheral:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "disableHeating", - "printedName": "disableHeating", + "kind": "Function", + "name": "centralManager", + "printedName": "centralManager(_:didDisconnectPeripheral:error:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setHeating", - "printedName": "setHeating", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDisconnectPeripheral:error:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23didDisconnectPeripheral5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "centralManager:didDisconnectPeripheral:error:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "setTimer", - "printedName": "setTimer", + "kind": "Function", + "name": "centralManagerDidUpdateState", + "printedName": "centralManagerDidUpdateState(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO8setTimeryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManagerDidUpdateState:", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD14DidUpdateStateyySo09CBCentralD0CF", "moduleName": "ZTCoreKit", + "objc_name": "centralManagerDidUpdateState:", "declAttributes": [ + "Final", + "ObjC", + "AccessControl", "RawDocComment" - ] + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager", + "mangledName": "$s9ZTCoreKit12ZTBleManagerC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "getTemperature", - "printedName": "getTemperature", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Var", - "name": "getTimer", - "printedName": "getTimer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO8getTimeryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO8getTimeryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPairedDevice", + "printedName": "ZTPairedDevice", + "children": [ { "kind": "Var", - "name": "startPostureCalibration", - "printedName": "startPostureCalibration", + "name": "macAddress", + "printedName": "macAddress", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "setUserParameters", - "printedName": "setUserParameters", - "children": [ + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV10macAddressSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "resetCalibration", - "printedName": "resetCalibration", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTPairedDevice", + "printedName": "ZTCoreKit.ZTPairedDevice", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "getCalibrationState", - "printedName": "getCalibrationState", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit14ZTPairedDeviceV", + "mangledName": "$s9ZTCoreKit14ZTPairedDeviceV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUStreamHexError", + "printedName": "DFUStreamHexError", + "children": [ { "kind": "Var", - "name": "rawDataSend", - "printedName": "rawDataSend", + "name": "invalidHexFile", + "printedName": "invalidHexFile", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamHexError.Type) -> ZTCoreKit.DFUStreamHexError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamHexError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" } ] } @@ -28541,239 +26105,237 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO07invalidD4FileyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, { - "kind": "Var", - "name": "rawDataEnable", - "printedName": "rawDataEnable", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamHexError", + "printedName": "ZTCoreKit.DFUStreamHexError", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO2eeoiySbAC_ACtFZ", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "rawDataLookup", - "printedName": "rawDataLookup", + "name": "hashValue", + "printedName": "hashValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "rawDataDebug", - "printedName": "rawDataDebug", - "children": [ + "implicit": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "calibrateStatic", - "printedName": "calibrateStatic", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17DFUStreamHexErrorO", + "mangledName": "$s9ZTCoreKit17DFUStreamHexErrorO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTScannerResult", + "printedName": "ZTScannerResult", + "children": [ { "kind": "Var", - "name": "clearCalibrateStatic", - "printedName": "clearCalibrateStatic", + "name": "success", + "printedName": "success", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> (ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(device: ZTCoreKit.ZTDevice)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ] } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "cancelCalibrateStatic", - "printedName": "cancelCalibrateStatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28781,8 +26343,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -28790,30 +26352,30 @@ }, { "kind": "Var", - "name": "getCalibrateStaticMessage", - "printedName": "getCalibrateStaticMessage", + "name": "cancelled", + "printedName": "cancelled", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28821,8 +26383,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -28830,70 +26392,51 @@ }, { "kind": "Var", - "name": "getCalibrateStaticData", - "printedName": "getCalibrateStaticData", + "name": "failed", + "printedName": "failed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "testCalibrateStatic", - "printedName": "testCalibrateStatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTScannerResult.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTScannerResult", + "printedName": "ZTCoreKit.ZTScannerResult", + "usr": "s:9ZTCoreKit15ZTScannerResultO" } ] } @@ -28901,199 +26444,910 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "usr": "s:9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] - }, + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit15ZTScannerResultO", + "mangledName": "$s9ZTCoreKit15ZTScannerResultO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ { - "kind": "Var", - "name": "memsConfig", - "printedName": "memsConfig", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Var", - "name": "updateTxPower", - "printedName": "updateTxPower", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtSYRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPrimaryOldService", + "printedName": "ZTPrimaryOldService", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "Final", + "AccessControl", "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } ] }, { "kind": "Var", - "name": "updatePhy", - "printedName": "updatePhy", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ] } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "disconnect", - "printedName": "disconnect", - "children": [ + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } - ] + ], + "usr": "s:SD" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(device:service:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPrimaryOldService", + "printedName": "ZTCoreKit.ZTPrimaryOldService", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO10disconnectyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC", + "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTService" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUStreamZipError", + "printedName": "DFUStreamZipError", + "children": [ { "kind": "Var", - "name": "startDFURight", - "printedName": "startDFURight", + "name": "noManifest", + "printedName": "noManifest", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29101,8 +27355,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29110,30 +27364,30 @@ }, { "kind": "Var", - "name": "startDFULeft", - "printedName": "startDFULeft", + "name": "invalidManifest", + "printedName": "invalidManifest", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29141,8 +27395,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29150,30 +27404,30 @@ }, { "kind": "Var", - "name": "enablePeerConnection", - "printedName": "enablePeerConnection", + "name": "fileNotFound", + "printedName": "fileNotFound", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29181,8 +27435,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -29190,30 +27444,30 @@ }, { "kind": "Var", - "name": "factoryReset", - "printedName": "factoryReset", + "name": "typeNotFound", + "printedName": "typeNotFound", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommand.Type", + "printedName": "ZTCoreKit.DFUStreamZipError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" } ] } @@ -29221,32 +27475,62 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", - "mangledName": "$s9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + }, + { + "kind": "TypeNominal", + "name": "DFUStreamZipError", + "printedName": "ZTCoreKit.DFUStreamZipError", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvp", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -29255,117 +27539,73 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvg", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", - "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -29374,39 +27614,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", - "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit9ZTCommandO", - "mangledName": "$s9ZTCoreKit9ZTCommandO", + "usr": "s:9ZTCoreKit17DFUStreamZipErrorO", + "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -29424,199 +27662,24 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommand]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" }, { "kind": "Conformance", - "name": "Identifiable", - "printedName": "Identifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "ID", - "printedName": "ID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:s12IdentifiableP", - "mangledName": "$ss12IdentifiableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCustomDateFormatTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(formatString:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC12formatStringACSS_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(dateFormatter:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCustomDateFormatTransform", - "printedName": "ZTCoreKit.ZTCustomDateFormatTransform", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC" - }, - { - "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC13dateFormatterACSo06NSDateH0C_tcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit27ZTCustomDateFormatTransformC", - "mangledName": "$s9ZTCoreKit27ZTCustomDateFormatTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "superclassNames": [ - "ZTCoreKit.ZTDateFormatterTransform" - ], - "conformances": [ { "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" } ] }, @@ -29630,22 +27693,15 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTMultipartFormData", - "printedName": "ZTMultipartFormData", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTFirmwareCharacteristic", "children": [ { "kind": "Var", - "name": "contentType", - "printedName": "contentType", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -29655,15 +27711,19 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvp", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvp", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Lazy", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -29678,122 +27738,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvg", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvs", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvs", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvM", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC11contentTypeSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTMultipartFormDataC", - "mangledName": "$s9ZTCoreKit19ZTMultipartFormDataC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCommandResponse", - "printedName": "ZTCommandResponse", - "children": [ + }, { "kind": "Var", - "name": "bytes", - "printedName": "bytes", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvp", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -29805,315 +27789,162 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvg", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC5bytesSays5UInt8VGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "rightModule", - "printedName": "rightModule", + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ "AccessControl", - "RawDocComment" + "Override" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC11rightModuleSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "leftModule", - "printedName": "leftModule", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC10leftModuleSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "command", - "printedName": "command", - "children": [ + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC7commandAA0C0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "Required" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC6statusAA0C6StatusOSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTCommandResponseC", - "mangledName": "$s9ZTCoreKit17ZTCommandResponseC", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTFirmwareCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTCommandStatus", - "printedName": "ZTCommandStatus", + "name": "ZTPassthroughAlgo", + "printedName": "ZTPassthroughAlgo", "children": [ { "kind": "Var", - "name": "success", - "printedName": "success", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoStatus) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(id: ZTCoreKit.ZTAlgoStatus)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30121,8 +27952,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO7successyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO7successyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6statusyAcA12ZTAlgoStatusO_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30130,30 +27961,30 @@ }, { "kind": "Var", - "name": "busy", - "printedName": "busy", + "name": "startNewChunk", + "printedName": "startNewChunk", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30161,8 +27992,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO4busyyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO13startNewChunkyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30170,30 +28001,50 @@ }, { "kind": "Var", - "name": "invalidParam", - "printedName": "invalidParam", + "name": "changeProductMode", + "printedName": "changeProductMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoMode) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(mode: ZTCoreKit.ZTAlgoMode)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30201,8 +28052,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidParamyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO17changeProductModeyAcA06ZTAlgoG0O_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30210,30 +28061,50 @@ }, { "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", + "name": "setPrecisionMode", + "printedName": "setPrecisionMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(mode: ZTCoreKit.ZTAlgoPrecisionMode)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30241,8 +28112,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12invalidStateyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setPrecisionModeyAcA06ZTAlgofG0O_tcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30250,30 +28121,56 @@ }, { "kind": "Var", - "name": "forbidden", - "printedName": "forbidden", + "name": "setMinimumStepsForAnalysis", + "printedName": "setMinimumStepsForAnalysis", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30281,8 +28178,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO9forbiddenyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO26setMinimumStepsForAnalysisyAcA14ZTActivityTypeO_SitcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30290,30 +28187,56 @@ }, { "kind": "Var", - "name": "notSupported", - "printedName": "notSupported", + "name": "setMinimumStridesForAnalysis", + "printedName": "setMinimumStridesForAnalysis", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType, Swift.Int) -> ZTCoreKit.ZTPassthroughAlgo", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30321,8 +28244,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO12notSupportedyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO28setMinimumStridesForAnalysisyAcA14ZTActivityTypeO_SitcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30330,70 +28253,62 @@ }, { "kind": "Var", - "name": "unknownCommand", - "printedName": "unknownCommand", + "name": "setStreamingMode", + "printedName": "setStreamingMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "printedName": "(ZTCoreKit.ZTPassthroughAlgo.Type) -> (Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UInt16, ZTCoreKit.ZTActivityType, Swift.UInt8) -> ZTCoreKit.ZTPassthroughAlgo", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8)", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + }, + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14unknownCommandyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "commandInProgress", - "printedName": "commandInProgress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", + "printedName": "ZTCoreKit.ZTPassthroughAlgo.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" } ] } @@ -30401,8 +28316,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO17commandInProgressyA2CmF", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO16setStreamingModeyACs6UInt16V_AA14ZTActivityTypeOs5UInt8VtcACmF", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -30410,59 +28325,27 @@ }, { "kind": "Var", - "name": "noPeerresponse", - "printedName": "noPeerresponse", + "name": "parameters", + "printedName": "parameters", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTCommandStatus.Type) -> ZTCoreKit.ZTCommandStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCommandStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO14noPeerresponseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -30475,14 +28358,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO11descriptionSSvg", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO10parametersSays5UInt8VGvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -30491,121 +28382,83 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "usr": "s:Sq" + "name": "ZTPassthroughAlgo", + "printedName": "ZTCoreKit.ZTPassthroughAlgo", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, + "throwing": true, "init_kind": "Designated" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "throwing": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit15ZTCommandStatusO", - "mangledName": "$s9ZTCoreKit15ZTCommandStatusO", + "usr": "s:9ZTCoreKit17ZTPassthroughAlgoO", + "mangledName": "$s9ZTCoreKit17ZTPassthroughAlgoO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -30620,45 +28473,52 @@ ] }, { - "kind": "TypeDecl", - "name": "ZTDefaults", - "printedName": "ZTDefaults", - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTDefaultsC", - "mangledName": "$s9ZTCoreKit10ZTDefaultsC", + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTDefaultsKey", - "printedName": "ZTDefaultsKey", + "name": "DFUFirmwareSize", + "printedName": "DFUFirmwareSize", "children": [ { "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", + "name": "softdevice", + "printedName": "softdevice", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)softdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvp", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", - "AccessControl" + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30668,154 +28528,47 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)softdevice", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, + "isOpen": true, "declAttributes": [ - "Final" + "ObjC" ], "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC", - "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit10ZTDefaultsC", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTDefaults" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTManufacturerNameCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "bootloader", + "printedName": "bootloader", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)bootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvp", "moduleName": "ZTCoreKit", - "static": true, + "isOpen": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", + "SetterAccess", "AccessControl", + "ObjC", "RawDocComment" ], "hasStorage": true, @@ -30827,104 +28580,48 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)bootloader", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, + "isOpen": true, "declAttributes": [ - "Final" + "ObjC" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "application", + "printedName": "application", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)application", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvp", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ "HasInitialValue", "HasStorage", "SetterAccess", - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -30935,108 +28632,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)application", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvg", "moduleName": "ZTCoreKit", "implicit": true, "isOpen": true, + "declAttributes": [ + "ObjC" + ], "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, { "kind": "Constructor", "name": "init", - "printedName": "init(service:characteristic:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "DFUFirmwareSize", + "printedName": "ZTCoreKit.DFUFirmwareSize", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)init", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeCACycfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, + "objc_name": "init", "declAttributes": [ - "Required" + "Dynamic", + "ObjC", + "Override" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC", - "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize", + "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC", "moduleName": "ZTCoreKit", "isOpen": true, "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -31045,11 +28756,12 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ + "ImplementationOnly", "RawDocComment" ] }, @@ -31063,40 +28775,39 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTDevice", - "printedName": "ZTDevice", + "name": "ZTMessageChunkConfig", + "printedName": "ZTMessageChunkConfig", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "byte0", + "printedName": "byte0", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31105,94 +28816,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte0s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "peripheral", - "printedName": "peripheral", + "name": "byte1", + "printedName": "byte1", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "CoreBluetooth.CBPeripheral?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31202,59 +28874,130 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "CoreBluetooth.CBPeripheral?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5byte1s5UInt8VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "cbPeripheral", - "printedName": "cbPeripheral", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31263,48 +29006,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", + "name": "flag", + "printedName": "flag", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31313,47 +29045,40 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV4flags5UInt8Vvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -31362,390 +29087,646 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Var", - "name": "qrCode", - "printedName": "qrCode", - "children": [ - { + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV", + "mangledName": "$s9ZTCoreKit20ZTMessageChunkConfigV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LegacyDFUServiceInitiator", + "printedName": "LegacyDFUServiceInitiator", + "children": [ + { + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", + "children": [ + { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "startWithTargetWithIdentifier:", "declAttributes": [ + "ObjC", + "Override", "AccessControl" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rssi", - "printedName": "rssi", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "LegacyDFUServiceInitiator", + "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivp", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", "moduleName": "ZTCoreKit", + "deprecated": true, + "overriding": true, + "implicit": true, + "objc_name": "initWithCentralManager:target:", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" + "ObjC", + "Override", + "Available" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Var", - "name": "macAddressRight", - "printedName": "macAddressRight", + "kind": "Constructor", + "name": "init", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ + { + "kind": "TypeNominal", + "name": "LegacyDFUServiceInitiator", + "printedName": "ZTCoreKit.LegacyDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], + "hasDefaultArg": true, "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)LegacyDFUServiceInitiator", + "mangledName": "$s9ZTCoreKit25LegacyDFUServiceInitiatorC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.DFUServiceInitiator", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityLastStopReason", + "printedName": "ZTActivityLastStopReason", + "children": [ + { + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "macAddressLeft", - "printedName": "macAddressLeft", + "name": "userRequest", + "printedName": "userRequest", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "memoryFull", + "printedName": "memoryFull", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "inactivity", + "printedName": "inactivity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO", + "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "advertisementData", - "printedName": "advertisementData", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTModelNumberCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -31759,37 +29740,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -31804,37 +29768,20 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvsZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -31849,44 +29796,48 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4uuidSSvMZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "manufacturer", - "printedName": "manufacturer", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ "HasInitialValue", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -31898,59 +29849,139 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "isOpen": true, "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "isOpen": true, + "declAttributes": [ + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC", + "mangledName": "$s9ZTCoreKit27ZTModelNumberCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "children": [ { "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -31959,60 +29990,52 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP4uuidSSvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareRevision?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32021,60 +30044,73 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareRevision?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP11serviceTypeAA0C0CmvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", + "static": true, + "protocolReq": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32083,48 +30119,74 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "serviceType", + "printedName": "serviceType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvp", + "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -32133,39 +30195,93 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTService.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvg", + "usr": "s:9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolPA2A0C0CRbzrlE11serviceTypeAEmvgZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService, τ_0_0 : ZTCoreKit.ZTServiceProtocol>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, "accessorKind": "get" } ] - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMapContext", + "printedName": "ZTMapContext", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit12ZTMapContextP", + "mangledName": "$s9ZTCoreKit12ZTMapContextP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMap", + "printedName": "ZTMap", + "children": [ { "kind": "Var", - "name": "isConnected", - "printedName": "isConnected", + "name": "mappingType", + "printedName": "mappingType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvp", + "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "HasStorage", + "AccessControl" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32174,39 +30290,60 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "isActivityRunning", - "printedName": "isActivityRunning", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvp", + "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32215,23 +30352,40 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvg", + "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "isDeviceReady", - "printedName": "isDeviceReady", + "name": "isKeyPresent", + "printedName": "isKeyPresent", "children": [ { "kind": "TypeNominal", @@ -32241,13 +30395,17 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", + "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32262,42 +30420,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "info", - "printedName": "info", + "name": "currentValue", + "printedName": "currentValue", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "SetterAccess", + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32309,107 +30471,59 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "batterylevel", - "printedName": "batterylevel", + "name": "currentKey", + "printedName": "currentKey", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", + "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32421,49 +30535,52 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", + "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastActivityDate", - "printedName": "lastActivityDate", + "name": "nestedKeyDelimiter", + "printedName": "nestedKeyDelimiter", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", + "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", + "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "SetterAccess", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32474,49 +30591,52 @@ "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", + "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", + "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "generalState", - "printedName": "generalState", + "name": "context", + "printedName": "context", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32528,23 +30648,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -32560,23 +30683,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -32591,64 +30717,38 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", + "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "softwareInfo", - "printedName": "softwareInfo", + "name": "shouldIncludeNilValues", + "printedName": "shouldIncludeNilValues", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -32659,45 +30759,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -32712,45 +30786,19 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -32765,34 +30813,41 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", + "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "lowSoftwareInfo", - "printedName": "lowSoftwareInfo", + "name": "toObject", + "printedName": "toObject", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", + "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvp", + "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32801,50 +30856,126 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", + "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvg", + "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "activityInfo", - "printedName": "activityInfo", + "kind": "Constructor", + "name": "init", + "printedName": "init(mappingType:JSON:toObject:context:shouldIncludeNilValues:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], + "hasDefaultArg": true, "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", + "mangledName": "$s9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, + "init_kind": "Designated" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapCyACSScip", + "mangledName": "$s9ZTCoreKit5ZTMapCyACSScip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -32853,130 +30984,202 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", + "usr": "s:9ZTCoreKit5ZTMapCyACSScig", + "mangledName": "$s9ZTCoreKit5ZTMapCyACSScig", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:delimiter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "bootloaderInfo", - "printedName": "bootloaderInfo", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:delimiter:)", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -32985,151 +31188,72 @@ "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "inactivityTimeout", - "printedName": "inactivityTimeout", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33138,188 +31262,72 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "actualState", - "printedName": "actualState", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:delimiter:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "previousState", - "printedName": "previousState", - "children": [ + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33328,67 +31336,63 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "hasInitialUpdate", - "printedName": "hasInitialUpdate", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:ignoreNil:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Bool", @@ -33396,13 +31400,13 @@ "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "Final", + "AccessControl" ], "accessors": [ { @@ -33410,6 +31414,24 @@ "name": "Get", "printedName": "Get()", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Bool", @@ -33418,75 +31440,68 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "onStateChanged", - "printedName": "onStateChanged", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:nested:delimiter:ignoreNil:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", + "declKind": "Subscript", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -33495,53 +31510,47 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", + "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", + "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ "Final" ], @@ -33550,2904 +31559,2489 @@ ] }, { - "kind": "Var", - "name": "onRSSIChanged", - "printedName": "onRSSIChanged", + "kind": "Function", + "name": "value", + "printedName": "value()", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5valuexSgylF", + "mangledName": "$s9ZTCoreKit5ZTMapC5valuexSgylF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onServiceDiscovered", - "printedName": "onServiceDiscovered", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:using:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onServiceFeaturesIdentified", - "printedName": "onServiceFeaturesIdentified", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onCharacteristicDiscovered", - "printedName": "onCharacteristicDiscovered", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onAllCharacteristicsDiscovered", - "printedName": "onAllCharacteristicsDiscovered", + "kind": "Function", + "name": "value", + "printedName": "value(_:default:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onAllCharacteristicsRead", - "printedName": "onAllCharacteristicsRead", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onCharacteristicValueUpdated", - "printedName": "onCharacteristicValueUpdated", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onCharacteristicValueWritten", - "printedName": "onCharacteristicValueWritten", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onCommandCharacteristicDiscovered", - "printedName": "onCommandCharacteristicDiscovered", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyValueUpdated", - "printedName": "onNotifyValueUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onBatteryValueUpdated", - "printedName": "onBatteryValueUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "onGeneralStateUpdated", - "printedName": "onGeneralStateUpdated", + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onActivityInfoUpdated", - "printedName": "onActivityInfoUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onSoftwareUpdated", - "printedName": "onSoftwareUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageSoftware?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onTimeUpdated", - "printedName": "onTimeUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageTime?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageTime?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageTime", - "printedName": "ZTCoreKit.ZTMessageTime", - "usr": "s:9ZTCoreKit13ZTMessageTimeV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onActivityMetadataUpdated", - "printedName": "onActivityMetadataUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onRawDataHeaderUpdated", - "printedName": "onRawDataHeaderUpdated", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onRawDataFrameUpdated", - "printedName": "onRawDataFrameUpdated", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onInactivityTimeoutUpdated", - "printedName": "onInactivityTimeoutUpdated", - "children": [ + "usr": "s:SD" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageInactivityTimeout", - "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", - "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onFirmwareError", - "printedName": "onFirmwareError", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyCommonGroupUpdated", - "printedName": "onNotifyCommonGroupUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onNotifyWarmGroupUpdated", - "printedName": "onNotifyWarmGroupUpdated", - "children": [ + "usr": "s:Sa" + }, { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", - "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit5ZTMapC", + "mangledName": "$s9ZTCoreKit5ZTMapC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "ZIPFoundation", + "printedName": "ZIPFoundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityType", + "printedName": "ZTActivityType", + "children": [ + { + "kind": "Var", + "name": "staticType", + "printedName": "staticType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyRunningGroupUpdated", - "printedName": "onNotifyRunningGroupUpdated", + "name": "dynamic", + "printedName": "dynamic", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walking", + "printedName": "walking", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyCyclingGroupUpdated", - "printedName": "onNotifyCyclingGroupUpdated", + "name": "running", + "printedName": "running", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cycling", + "printedName": "cycling", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifySafetyGroupUpdated", - "printedName": "onNotifySafetyGroupUpdated", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsUp", + "printedName": "stairsUp", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyGenericGroupUpdated", - "printedName": "onNotifyGenericGroupUpdated", + "name": "stairsDown", + "printedName": "stairsDown", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "staticOther", + "printedName": "staticOther", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onCommandUpdated", - "printedName": "onCommandUpdated", + "name": "kneel", + "printedName": "kneel", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "tiptoe", + "printedName": "tiptoe", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onCommandAck", - "printedName": "onCommandAck", + "name": "vibration", + "printedName": "vibration", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onIndicateValueUpdated", - "printedName": "onIndicateValueUpdated", + "name": "trampling", + "printedName": "trampling", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "crawling", + "printedName": "crawling", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onBootloaderInfoUpdated", - "printedName": "onBootloaderInfoUpdated", + "name": "dynamicOther", + "printedName": "dynamicOther", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "slip", + "printedName": "slip", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageBootloaderInfo", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyChunkSendStatusUpdated", - "printedName": "onNotifyChunkSendStatusUpdated", + "name": "trip", + "printedName": "trip", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "active", + "printedName": "active", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" - } - ], - "usr": "s:Sq" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "onNotifyChunkConfigUpdated", - "printedName": "onNotifyChunkConfigUpdated", + "name": "inactive", + "printedName": "inactive", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkConfig", - "printedName": "ZTCoreKit.ZTMessageChunkConfig", - "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "onNotifyChunkDataUpdated", - "printedName": "onNotifyChunkDataUpdated", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -36456,447 +34050,628 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTActivityTypeO", + "mangledName": "$s9ZTCoreKit14ZTActivityTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(peripheral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(cbPeripheral:)", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Function", - "name": "connect", - "printedName": "connect()", + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTTXPower", + "printedName": "ZTTXPower", + "children": [ + { + "kind": "Var", + "name": "dBm0", + "printedName": "dBm0", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC7connectyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC7connectyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm0yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "disconnect", - "printedName": "disconnect()", + "kind": "Var", + "name": "dBm2", + "printedName": "dBm2", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC10disconnectyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10disconnectyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm2yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "observeValue", - "printedName": "observeValue(forKeyPath:of:change:context:)", + "kind": "Var", + "name": "dBm3", + "printedName": "dBm3", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm3yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dBm4", + "printedName": "dBm4", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", "children": [ { "kind": "TypeNominal", - "name": "NSKeyValueChangeKey", - "printedName": "Foundation.NSKeyValueChangeKey", - "usr": "c:@T@NSKeyValueChangeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" } - ], - "usr": "s:SD" + ] } - ], - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm4yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dBm5", + "printedName": "dBm5", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UnsafeMutableRawPointer?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "UnsafeMutableRawPointer", - "printedName": "Swift.UnsafeMutableRawPointer", - "usr": "s:Sv" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)observeValueForKeyPath:ofObject:change:context:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeye6ChangeG0aypGSgSvSgtF", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "observeValueForKeyPath:ofObject:change:context:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm5yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "service", - "printedName": "service(_:)", + "kind": "Var", + "name": "dBm6", + "printedName": "dBm6", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm6yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "checkBattery", - "printedName": "checkBattery(completion:)", + "kind": "Var", + "name": "dBm7", + "printedName": "dBm7", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool) -> ()", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" } ] } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm7yA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Function", - "name": "readGeneralState", - "printedName": "readGeneralState()", + "kind": "Var", + "name": "dBm8", + "printedName": "dBm8", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTTXPower.Type) -> ZTCoreKit.ZTTXPower", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTTXPower.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO4dBm8yA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Optional", + "printedName": "ZTCoreKit.ZTTXPower?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTTXPower", + "printedName": "ZTCoreKit.ZTTXPower", + "usr": "s:9ZTCoreKit9ZTTXPowerO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)init", - "mangledName": "$s9ZTCoreKit8ZTDeviceCACycfc", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "overriding": true, "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit9ZTTXPowerO", + "mangledName": "$s9ZTCoreKit9ZTTXPowerO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTBatteryCharacteristic", + "printedName": "ZTBatteryCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "isLowBattery", - "printedName": "isLowBattery", + "name": "batteryLevel", + "printedName": "batteryLevel", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36906,1445 +34681,1516 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", - "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didWriteValueFor:error:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTBatteryCharacteristic", + "printedName": "ZTCoreKit.ZTBatteryCharacteristic", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC" }, { "kind": "TypeNominal", - "name": "CBDescriptor", - "printedName": "CoreBluetooth.CBDescriptor", - "usr": "c:objc(cs)CBDescriptor" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForDescriptor:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didWriteValueForDescriptor:error:", + "overriding": true, "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverServices:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverServices:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_19didDiscoverServicesySo12CBPeripheralC_s5Error_pSgtF", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverServices:", + "overriding": true, "declAttributes": [ - "Dynamic", - "ObjC", "AccessControl", + "Override", "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC", + "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTInformationService", + "printedName": "ZTInformationService", + "children": [ { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverCharacteristicsFor:error:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverCharacteristicsForService:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didDiscoverCharacteristicsFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverCharacteristicsForService:error:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", + "Final", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateValueFor:error:)", + "kind": "Var", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateValueForCharacteristic:error:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didWriteValueFor:error:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "manufacturerName", + "printedName": "manufacturerName", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didWriteValueForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateNotificationStateFor:error:)", + "kind": "Var", + "name": "modelNumber", + "printedName": "modelNumber", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateNotificationStateForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didUpdateNotificationStateFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateNotificationStateForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModelNumberCharacteristic", + "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", + "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didReadRSSI:error:)", + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didReadRSSI:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_11didReadRSSI5errorySo12CBPeripheralC_So8NSNumberCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didReadRSSI:error:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheralDidUpdateName", - "printedName": "peripheralDidUpdateName(_:)", + "kind": "Var", + "name": "firmwareRevision", + "printedName": "firmwareRevision", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralDidUpdateName:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23peripheralDidUpdateNameyySo12CBPeripheralCF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheralDidUpdateName:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTFirmwareCharacteristic", + "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didModifyServices:)", + "kind": "Var", + "name": "hardwareRevision", + "printedName": "hardwareRevision", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBService]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didModifyServices:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didModifyServicesySo12CBPeripheralC_SaySo9CBServiceCGtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didModifyServices:", "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverIncludedServicesFor:error:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTInformationService", + "printedName": "ZTCoreKit.ZTInformationService", + "usr": "s:9ZTCoreKit20ZTInformationServiceC" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", "name": "CBService", "printedName": "CoreBluetooth.CBService", "usr": "c:objc(cs)CBService" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverIncludedServicesForService:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_30didDiscoverIncludedServicesFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverIncludedServicesForService:error:", + "overriding": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "RawDocComment" + "Required" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTInformationServiceC", + "mangledName": "$s9ZTCoreKit20ZTInformationServiceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTService" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didDiscoverDescriptorsFor:error:)", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDeviceInfo", + "printedName": "ZTDeviceInfo", + "children": [ + { + "kind": "Var", + "name": "project", + "printedName": "project", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProjectCodeType?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverDescriptorsForCharacteristic:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_25didDiscoverDescriptorsFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didDiscoverDescriptorsForCharacteristic:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProjectCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didUpdateValueFor:error:)", + "kind": "Var", + "name": "productCode", + "printedName": "productCode", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "CBDescriptor", - "printedName": "CoreBluetooth.CBDescriptor", - "usr": "c:objc(cs)CBDescriptor" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProductCodeType?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForDescriptor:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didUpdateValueForDescriptor:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "peripheralIsReady", - "printedName": "peripheralIsReady(toSendWriteWithoutResponse:)", + "kind": "Var", + "name": "manufacturer", + "printedName": "manufacturer", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralIsReadyToSendWriteWithoutResponse:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC17peripheralIsReady26toSendWriteWithoutResponseySo12CBPeripheralC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheralIsReadyToSendWriteWithoutResponse:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "peripheral", - "printedName": "peripheral(_:didOpen:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "CoreBluetooth.CBL2CAPChannel?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CBL2CAPChannel", - "printedName": "CoreBluetooth.CBL2CAPChannel", - "usr": "c:objc(cs)CBL2CAPChannel" + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "productType", + "printedName": "productType", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "ZTCoreKit.ZTProductTypeCode?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didOpenL2CAPChannel:error:", - "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_7didOpen5errorySo12CBPeripheralC_So14CBL2CAPChannelCSgs5Error_pSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", "moduleName": "ZTCoreKit", - "objc_name": "peripheral:didOpenL2CAPChannel:error:", "declAttributes": [ - "Dynamic", - "ObjC", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCommand", - "printedName": "sendCommand(_:parameters:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductTypeCode?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hardwareVersion", + "printedName": "hardwareVersion", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "printedName": "Swift.Int8?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "kind": "TypeNominal", + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendCommandWithAck", - "printedName": "sendCommandWithAck(command:parameters:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt8]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Optional", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boardVersion", + "printedName": "boardVersion", + "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.Int8?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "sendCommandWithRightAck", - "printedName": "sendCommandWithRightAck(command:parameters:completion:)", + "kind": "Var", + "name": "testeur", + "printedName": "testeur", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.UInt8]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice", - "mangledName": "$s9ZTCoreKit8ZTDeviceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + ] }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Security", - "printedName": "Security", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTServerTrustManager", - "printedName": "ZTServerTrustManager", - "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTServerTrustManagerC", - "mangledName": "$s9ZTCoreKit20ZTServerTrustManagerC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTAlgoAcknowledgmentStatus", - "children": [ { "kind": "Var", - "name": "success", - "printedName": "success", + "name": "sizeRaw", + "printedName": "sizeRaw", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "busy", - "printedName": "busy", + "name": "year", + "printedName": "year", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "invalidParam", - "printedName": "invalidParam", + "name": "week", + "printedName": "week", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", + "name": "SN", + "printedName": "SN", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "fwResForbidden", - "printedName": "fwResForbidden", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] - } - ] - } + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notSupported", - "printedName": "notSupported", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "unknownCommand", - "printedName": "unknownCommand", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "commandInProgress", - "printedName": "commandInProgress", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noPeerResponse", - "printedName": "noPeerResponse", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoAcknowledgmentStatus", - "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "deviceIdentifier", + "printedName": "deviceIdentifier", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38353,314 +36199,156 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", - "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUStreamZipError", - "printedName": "DFUStreamZipError", - "children": [ - { - "kind": "Var", - "name": "noManifest", - "printedName": "noManifest", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO10noManifestyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "invalidManifest", - "printedName": "invalidManifest", + "name": "macAddressRight", + "printedName": "macAddressRight", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO15invalidManifestyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "fileNotFound", - "printedName": "fileNotFound", - "children": [ + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12fileNotFoundyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "typeNotFound", - "printedName": "typeNotFound", + "name": "macAddressLeft", + "printedName": "macAddressLeft", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUStreamZipError.Type) -> ZTCoreKit.DFUStreamZipError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUStreamZipError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO12typeNotFoundyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - }, - { - "kind": "TypeNominal", - "name": "DFUStreamZipError", - "printedName": "ZTCoreKit.DFUStreamZipError", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38669,49 +36357,32 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO9hashValueSivg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", @@ -38729,13 +36400,16 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38758,109 +36432,39 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO16errorDescriptionSSSgvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "implicit": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17DFUStreamZipErrorO", - "mangledName": "$s9ZTCoreKit17DFUStreamZipErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTBatteryCharacteristic", - "printedName": "ZTBatteryCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "size", + "printedName": "size", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -38869,56 +36473,53 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", + "name": "gender", + "printedName": "gender", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvp", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -38928,100 +36529,37 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTBatteryLevel?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12batteryLevelAA0cF0VSgvg", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBatteryCharacteristic", - "printedName": "ZTCoreKit.ZTBatteryCharacteristic", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit23ZTBatteryCharacteristicC", - "mangledName": "$s9ZTCoreKit23ZTBatteryCharacteristicC", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC", + "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] + "hasMissingDesignatedInitializers": true }, { "kind": "Import", @@ -39045,41 +36583,29 @@ }, { "kind": "TypeDecl", - "name": "ZTDeviceInfo", - "printedName": "ZTDeviceInfo", + "name": "ZTCommand", + "printedName": "ZTCommand", "children": [ { "kind": "Var", - "name": "project", - "printedName": "project", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvp", + "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39088,1179 +36614,1245 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7projectAA17ZTProjectCodeTypeOSgvg", + "usr": "s:9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO2ids5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "productCode", - "printedName": "productCode", + "name": "generalState", + "printedName": "generalState", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO12generalStateyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12generalStateyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "startNewActivity", + "printedName": "startNewActivity", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productCodeAA09ZTProductF4TypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO16startNewActivityyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "manufacturer", - "printedName": "manufacturer", + "name": "stopNewActivity", + "printedName": "stopNewActivity", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15stopNewActivityyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "resendData", + "printedName": "resendData", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12manufacturerAA22ZTManufacturerCodeTypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10resendDatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10resendDatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "productType", - "printedName": "productType", + "name": "deepSleep", + "printedName": "deepSleep", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO9deepSleepyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "reboot", + "printedName": "reboot", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC11productTypeAA09ZTProductF4CodeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO6rebootyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO6rebootyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "hardwareVersion", - "printedName": "hardwareVersion", + "name": "detailedBattery", + "printedName": "detailedBattery", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15detailedBatteryyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "hardwareInformation", + "printedName": "hardwareInformation", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15hardwareVersions4Int8VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19hardwareInformationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "boardVersion", - "printedName": "boardVersion", + "name": "firmwareInformation", + "printedName": "firmwareInformation", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19firmwareInformationyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "bootloaderVersion", + "printedName": "bootloaderVersion", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int8?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12boardVersions4Int8VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO17bootloaderVersionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "testeur", - "printedName": "testeur", + "name": "setInactivityTimeout", + "printedName": "setInactivityTimeout", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20setInactivityTimeoutyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setDFUInstall", + "printedName": "setDFUInstall", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7testeurSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13setDFUInstallyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "sizeRaw", - "printedName": "sizeRaw", + "name": "setDFUMode", + "printedName": "setDFUMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10setDFUModeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setChunkConfig", + "printedName": "setChunkConfig", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC7sizeRawSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14setChunkConfigyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "year", - "printedName": "year", + "name": "setChunkMinutesInterval", + "printedName": "setChunkMinutesInterval", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkMinutesIntervalyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setChunkSecondsInterval", + "printedName": "setChunkSecondsInterval", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4yearSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23setChunkSecondsIntervalyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "week", - "printedName": "week", + "name": "selectAlgorithm", + "printedName": "selectAlgorithm", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15selectAlgorithmyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "freeMemory", + "printedName": "freeMemory", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4weekSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10freeMemoryyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "SN", - "printedName": "SN", + "name": "getTimestamp", + "printedName": "getTimestamp", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12getTimestampyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "passthroughAlgo", + "printedName": "passthroughAlgo", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC2SNSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15passthroughAlgoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", + "name": "resetActivity", + "printedName": "resetActivity", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13resetActivityyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "getActivityMetadata", + "printedName": "getActivityMetadata", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC12serialNumberSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19getActivityMetadatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "deviceIdentifier", - "printedName": "deviceIdentifier", + "name": "disableHeating", + "printedName": "disableHeating", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC16deviceIdentifierSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14disableHeatingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddressRight", - "printedName": "macAddressRight", + "name": "setHeating", + "printedName": "setHeating", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10setHeatingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "setTimer", + "printedName": "setTimer", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC15macAddressRightSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO8setTimeryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddressLeft", - "printedName": "macAddressLeft", + "name": "getTemperature", + "printedName": "getTemperature", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO14getTemperatureyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, + { + "kind": "Var", + "name": "getTimer", + "printedName": "getTimer", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC14macAddressLeftSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO8getTimeryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO8getTimeryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "code", - "printedName": "code", + "name": "startPostureCalibration", + "printedName": "startPostureCalibration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4codeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO23startPostureCalibrationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "size", - "printedName": "size", + "name": "setUserParameters", + "printedName": "setUserParameters", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC4sizeSiSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO17setUserParametersyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "gender", - "printedName": "gender", + "name": "resetCalibration", + "printedName": "resetCalibration", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC6genderSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO16resetCalibrationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC", - "mangledName": "$s9ZTCoreKit12ZTDeviceInfoC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProductType", - "printedName": "ZTProductType", - "children": [ + }, { "kind": "Var", - "name": "sports", - "printedName": "sports", + "name": "getCalibrationState", + "printedName": "getCalibrationState", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40268,36 +37860,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19getCalibrationStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "warm", - "printedName": "warm", + "name": "rawDataSend", + "printedName": "rawDataSend", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40305,36 +37900,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO4warmyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO4warmyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO11rawDataSendyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "safety", - "printedName": "safety", + "name": "rawDataEnable", + "printedName": "rawDataEnable", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40342,36 +37940,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataEnableyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "podoSmart", - "printedName": "podoSmart", + "name": "rawDataLookup", + "printedName": "rawDataLookup", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40379,36 +37980,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13rawDataLookupyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "dfu", - "printedName": "dfu", + "name": "rawDataDebug", + "printedName": "rawDataDebug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40416,36 +38020,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12rawDataDebugyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "ztDfu", - "printedName": "ztDfu", + "name": "calibrateStatic", + "printedName": "calibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40453,36 +38060,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO15calibrateStaticyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "baliston", - "printedName": "baliston", + "name": "clearCalibrateStatic", + "printedName": "clearCalibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40490,203 +38100,159 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvp", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvp", + "usr": "s:9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20clearCalibrateStaticyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvg", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "cancelCalibrateStatic", + "printedName": "cancelCalibrateStatic", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO21cancelCalibrateStaticyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "getCalibrateStaticMessage", + "printedName": "getCalibrateStaticMessage", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO25getCalibrateStaticMessageyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTProductTypeO", - "mangledName": "$s9ZTCoreKit13ZTProductTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "getCalibrateStaticData", + "printedName": "getCalibrateStaticData", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProjectCodeType", - "printedName": "ZTProjectCodeType", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO22getCalibrateStaticDatayA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Var", - "name": "zt1", - "printedName": "zt1", + "name": "testCalibrateStatic", + "printedName": "testCalibrateStatic", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40694,36 +38260,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO19testCalibrateStaticyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt2", - "printedName": "zt2", + "name": "memsConfig", + "printedName": "memsConfig", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40731,36 +38300,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10memsConfigyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt3", - "printedName": "zt3", + "name": "updateTxPower", + "printedName": "updateTxPower", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40768,36 +38340,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13updateTxPoweryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "zt4", - "printedName": "zt4", + "name": "updatePhy", + "printedName": "updatePhy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProjectCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -40805,236 +38380,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProjectCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProjectCodeType", - "printedName": "ZTCoreKit.ZTProjectCodeType", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO9updatePhyyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } + "declAttributes": [ + "RawDocComment" ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO", - "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTProductCodeType", - "printedName": "ZTProductCodeType", - "children": [ - { - "kind": "Var", - "name": "WS", - "printedName": "WS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "WM", - "printedName": "WM", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", - "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "SP", - "printedName": "SP", + "name": "disconnect", + "printedName": "disconnect", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41042,36 +38420,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO10disconnectyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "SF", - "printedName": "SF", + "name": "startDFURight", + "printedName": "startDFURight", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41079,36 +38460,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO13startDFURightyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "PS", - "printedName": "PS", + "name": "startDFULeft", + "printedName": "startDFULeft", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41116,36 +38500,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12startDFULeftyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "SI", - "printedName": "SI", + "name": "enablePeerConnection", + "printedName": "enablePeerConnection", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41153,36 +38540,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO20enablePeerConnectionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "BA", - "printedName": "BA", + "name": "factoryReset", + "printedName": "factoryReset", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "printedName": "(ZTCoreKit.ZTCommand.Type) -> ZTCoreKit.ZTCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductCodeType.Type", + "printedName": "ZTCoreKit.ZTCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ] } @@ -41190,14 +38580,17 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "mangledName": "$s9ZTCoreKit9ZTCommandO12factoryResetyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -41207,12 +38600,11 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -41228,8 +38620,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", + "usr": "s:9ZTCoreKit9ZTCommandO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -41243,27 +38635,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", + "printedName": "ZTCoreKit.ZTCommand?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -41275,14 +38667,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -41293,15 +38685,72 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit9ZTCommandO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", + "mangledName": "$s9ZTCoreKit9ZTCommandO8allCasesSayACGvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, "accessorKind": "get" } @@ -41309,14 +38758,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO", - "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO", + "usr": "s:9ZTCoreKit9ZTCommandO", + "mangledName": "$s9ZTCoreKit9ZTCommandO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -41344,601 +38793,515 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTManufacturerCodeType", - "printedName": "ZTManufacturerCodeType", - "children": [ - { - "kind": "Var", - "name": "a", - "printedName": "a", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "b", - "printedName": "b", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", + "name": "Array", + "printedName": "[ZTCoreKit.ZTCommand]", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" } - ] + ], + "usr": "s:Sa" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, { - "kind": "Var", - "name": "c", - "printedName": "c", + "kind": "Conformance", + "name": "Identifiable", + "printedName": "Identifiable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeWitness", + "name": "ID", + "printedName": "ID", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:s12IdentifiableP", + "mangledName": "$ss12IdentifiableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTImmutableMappable", + "printedName": "ZTImmutableMappable", + "children": [ { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" }, { - "kind": "Var", - "name": "e", - "printedName": "e", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "f", - "printedName": "f", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" }, { - "kind": "Var", - "name": "z", - "printedName": "z", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSON:context:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "usr": "s:SD" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "ZTManufacturerCodeType", - "printedName": "ZTCoreKit.ZTManufacturerCodeType", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], + "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONObject:context:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO", - "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO", + "declKind": "Protocol", + "usr": "s:9ZTCoreKit19ZTImmutableMappableP", + "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } ] }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTProductTypeCode", - "printedName": "ZTProductTypeCode", + "name": "SecureDFUServiceInitiator", + "printedName": "SecureDFUServiceInitiator", "children": [ { - "kind": "Var", - "name": "ix", - "printedName": "ix", + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sx", - "printedName": "sx", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5start20targetWithIdentifierAA0D10ControllerCSg10Foundation4UUIDV_tF", + "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "startWithTargetWithIdentifier:", + "declAttributes": [ + "ObjC", + "Override", + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", - "moduleName": "ZTCoreKit" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "xx", - "printedName": "xx", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTProductTypeCode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "SecureDFUServiceInitiator", + "printedName": "ZTCoreKit.SecureDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC14centralManager6targetACSo09CBCentralG0C_So12CBPeripheralCtcfc", + "moduleName": "ZTCoreKit", + "deprecated": true, + "overriding": true, + "implicit": true, + "objc_name": "initWithCentralManager:target:", + "declAttributes": [ + "ObjC", + "Override", + "Available" + ], + "init_kind": "Designated" }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ + { + "kind": "TypeNominal", + "name": "SecureDFUServiceInitiator", + "printedName": "ZTCoreKit.SecureDFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTProductTypeCode?", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "ZTProductTypeCode", - "printedName": "ZTCoreKit.ZTProductTypeCode", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], + "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC5queue13delegateQueue08progressH006loggerH021centralManagerOptionsACSo012OS_dispatch_F0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTProductTypeCodeO", - "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)SecureDFUServiceInitiator", + "mangledName": "$s9ZTCoreKit25SecureDFUServiceInitiatorC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "String", + "superclassUsr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.DFUServiceInitiator", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", @@ -41956,59 +39319,139 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPeriod", + "printedName": "ZTPeriod", + "children": [ + { + "kind": "Var", + "name": "day", + "printedName": "day", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPeriod.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTGenderCodeType", - "printedName": "ZTGenderCodeType", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPeriodO3dayyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO3dayyA2CmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "man", - "printedName": "man", + "name": "week", + "printedName": "week", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderCodeType.Type", + "printedName": "ZTCoreKit.ZTPeriod.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ] } @@ -42016,36 +39459,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", + "usr": "s:9ZTCoreKit8ZTPeriodO4weekyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO4weekyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "woman", - "printedName": "woman", + "name": "month", + "printedName": "month", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderCodeType.Type", + "printedName": "ZTCoreKit.ZTPeriod.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ] } @@ -42053,8 +39496,45 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", + "usr": "s:9ZTCoreKit8ZTPeriodO5monthyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO5monthyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "year", + "printedName": "year", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPeriod.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPeriodO4yearyA2CmF", + "mangledName": "$s9ZTCoreKit8ZTPeriodO4yearyA2CmF", "moduleName": "ZTCoreKit" }, { @@ -42065,13 +39545,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTGenderCodeType?", + "printedName": "ZTCoreKit.ZTPeriod?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderCodeType", - "printedName": "ZTCoreKit.ZTGenderCodeType", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + "name": "ZTPeriod", + "printedName": "ZTCoreKit.ZTPeriod", + "usr": "s:9ZTCoreKit8ZTPeriodO" } ], "usr": "s:Sq" @@ -42084,8 +39564,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -42103,8 +39583,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -42121,8 +39601,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -42131,8 +39611,8 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO", - "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO", + "usr": "s:9ZTCoreKit8ZTPeriodO", + "mangledName": "$s9ZTCoreKit8ZTPeriodO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -42178,1088 +39658,1412 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTGenderSizeCodeType", + "name": "ZTDateFormatterTransform", + "printedName": "ZTDateFormatterTransform", "children": [ { "kind": "Var", - "name": "a", - "printedName": "a", + "name": "dateFormatter", + "printedName": "dateFormatter", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "Final", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDateFormatterTransform", + "printedName": "ZTCoreKit.ZTDateFormatterTransform", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC" + }, + { + "kind": "TypeNominal", + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "b", - "printedName": "b", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "c", - "printedName": "c", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" - }, + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTSignal", + "printedName": "ZTSignal", + "children": [ { "kind": "Var", - "name": "e", - "printedName": "e", + "name": "fireCount", + "printedName": "fireCount", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivp", + "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC9fireCountSivg", + "mangledName": "$s9ZTCoreKit8ZTSignalC9fireCountSivg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "f", - "printedName": "f", + "name": "retainLastData", + "printedName": "retainLastData", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataSbvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "g", - "printedName": "g", + "name": "lastDataFired", + "printedName": "lastDataFired", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC13lastDataFiredxSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "h", - "printedName": "h", + "name": "observers", + "printedName": "observers", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AnyObject]", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "i", - "printedName": "i", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvp", + "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "name": "Array", + "printedName": "[AnyObject]", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "mangledName": "$s9ZTCoreKit8ZTSignalC9observersSayyXlGvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Var", - "name": "j", - "printedName": "j", + "kind": "Constructor", + "name": "init", + "printedName": "init(retainLastData:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit8ZTSignalC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "mangledName": "$s9ZTCoreKit8ZTSignalC14retainLastDataACyxGSb_tcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "n", - "printedName": "n", + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "o", - "printedName": "o", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC9subscribe4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "p", - "printedName": "p", + "kind": "Function", + "name": "subscribeOnce", + "printedName": "subscribeOnce(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "q", - "printedName": "q", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribeOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "r", - "printedName": "r", + "kind": "Function", + "name": "subscribePast", + "printedName": "subscribePast(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "s", - "printedName": "s", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13subscribePast4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "t", - "printedName": "t", + "kind": "Function", + "name": "subscribePastOnce", + "printedName": "subscribePastOnce(with:callback:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "u", - "printedName": "u", - "children": [ + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "printedName": "(τ_0_0) -> ()", "children": [ { "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "mangledName": "$s9ZTCoreKit8ZTSignalC17subscribePastOnce4with8callbackAA0C12SubscriptionCyxGyXl_yxctF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "fire", + "printedName": "fire(_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTGenderSizeCodeType", - "printedName": "ZTCoreKit.ZTGenderSizeCodeType", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC4fireyyxF", + "mangledName": "$s9ZTCoreKit8ZTSignalC4fireyyxF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "cancelSubscription", + "printedName": "cancelSubscription(for:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", + "mangledName": "$s9ZTCoreKit8ZTSignalC18cancelSubscription3foryyXl_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelAllSubscriptions", + "printedName": "cancelAllSubscriptions()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO", - "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", + "mangledName": "$s9ZTCoreKit8ZTSignalC22cancelAllSubscriptionsyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearLastData", + "printedName": "clearLastData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalC13clearLastDatayyF", + "mangledName": "$s9ZTCoreKit8ZTSignalC13clearLastDatayyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "fire", + "printedName": "fire()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", + "mangledName": "$s9ZTCoreKit8ZTSignalCAAytRszlE4fireyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 == ()>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTSignalC", + "mangledName": "$s9ZTCoreKit8ZTSignalC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Final", + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTUnitSizeCodeType", + "name": "ZTSignalSubscription", + "printedName": "ZTSignalSubscription", "children": [ { "kind": "Var", - "name": "a", - "printedName": "a", + "name": "observer", + "printedName": "observer", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "AnyObject?" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ReferenceOwnership", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Optional", + "printedName": "AnyObject?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "b", - "printedName": "b", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Optional", + "printedName": "AnyObject?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC8observeryXlSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "c", - "printedName": "c", + "name": "once", + "printedName": "once", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC4onceSbvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Var", - "name": "d", - "printedName": "d", + "kind": "Function", + "name": "filter", + "printedName": "filter(_:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(τ_0_0) -> Swift.Bool", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6filteryACyxGSbxcF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "e", - "printedName": "e", + "kind": "Function", + "name": "sample", + "printedName": "sample(every:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6sample5everyACyxGSd_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "f", - "printedName": "f", + "kind": "Function", + "name": "onQueue", + "printedName": "onQueue(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "ZTSignalSubscription", + "printedName": "ZTCoreKit.ZTSignalSubscription<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC7onQueueyACyxGSo17OS_dispatch_queueCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "n", - "printedName": "n", + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC6cancelyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTSignalSubscriptionC", + "mangledName": "$s9ZTCoreKit20ZTSignalSubscriptionC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "Final", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "OperatorDecl", + "name": "=>", + "printedName": "=>", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix" + ] + }, + { + "kind": "Function", + "name": "=>", + "printedName": "=>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "mangledName": "$s9ZTCoreKit2egoiyyAA8ZTSignalCyxG_xtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoMode", + "printedName": "ZTAlgoMode", + "children": [ { "kind": "Var", - "name": "o", - "printedName": "o", + "name": "monitoring", + "printedName": "monitoring", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "printedName": "ZTCoreKit.ZTAlgoMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ] } @@ -43267,36 +41071,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "p", - "printedName": "p", + "name": "gaming", + "printedName": "gaming", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "printedName": "ZTCoreKit.ZTAlgoMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ] } @@ -43304,46 +41108,65 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "usr": "s:9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "q", - "printedName": "q", + "name": "parameters", + "printedName": "parameters", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Constructor", @@ -43353,27 +41176,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType?", + "printedName": "ZTCoreKit.ZTAlgoMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTUnitSizeCodeType", - "printedName": "ZTCoreKit.ZTUnitSizeCodeType", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -43385,14 +41208,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -43403,14 +41226,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", + "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -43419,14 +41242,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO", - "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO", + "usr": "s:9ZTCoreKit10ZTAlgoModeO", + "mangledName": "$s9ZTCoreKit10ZTAlgoModeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -43454,12402 +41277,1748 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "name": "DFUServiceInitiator", + "printedName": "DFUServiceInitiator", "children": [ { - "kind": "AssociatedType", - "name": "Object", - "printedName": "Object", - "declKind": "AssociatedType", - "usr": "s:9ZTCoreKit15ZTTransformTypeP6ObjectQa", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP6ObjectQa", - "moduleName": "ZTCoreKit", - "protocolReq": true - }, - { - "kind": "AssociatedType", - "name": "JSON", - "printedName": "JSON", - "declKind": "AssociatedType", - "usr": "s:9ZTCoreKit15ZTTransformTypeP4JSONQa", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP4JSONQa", - "moduleName": "ZTCoreKit", - "protocolReq": true - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "kind": "Var", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)delegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUServiceDelegate", + "printedName": "any ZTCoreKit.DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)delegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.JSON?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.JSON" + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUServiceDelegate", + "printedName": "any ZTCoreKit.DFUServiceDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDelegate:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTError", - "printedName": "ZTError", - "children": [ + ] + }, { "kind": "Var", - "name": "scanning", - "printedName": "scanning", + "name": "progressDelegate", + "printedName": "progressDelegate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)progressDelegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.ScanningError)", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "DFUProgressDelegate", + "printedName": "any ZTCoreKit.DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "ble", - "printedName": "ble", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)progressDelegate", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.BleError)", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "DFUProgressDelegate", + "printedName": "any ZTCoreKit.DFUProgressDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setProgressDelegate:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.NetworkError)", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "store", - "printedName": "store", + "name": "logger", + "printedName": "logger", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any ZTCoreKit.LoggerDelegate)?" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)logger", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.LoggerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.StoreError)", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] + "name": "LoggerDelegate", + "printedName": "any ZTCoreKit.LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" } - ] + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)logger", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", + "name": "Optional", + "printedName": "(any ZTCoreKit.LoggerDelegate)?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "LoggerDelegate", + "printedName": "any ZTCoreKit.LoggerDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setLogger:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "custom", - "printedName": "custom", + "name": "peripheralSelector", + "printedName": "peripheralSelector", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(errorDescription: Swift.String?, error: (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)peripheralSelector", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)peripheralSelector", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "DFUPeripheralSelectorDelegate", + "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPeripheralSelector:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "decoding", - "printedName": "decoding", + "name": "packetReceiptNotificationParameter", + "printedName": "packetReceiptNotificationParameter", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)packetReceiptNotificationParameter", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.DecodableError)", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)packetReceiptNotificationParameter", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPacketReceiptNotificationParameter:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "activity", - "printedName": "activity", + "name": "forceDfu", + "printedName": "forceDfu", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.ActivityError)", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "dfu", - "printedName": "dfu", + "name": "forceScanningForNewAddressInLegacyDfu", + "printedName": "forceScanningForNewAddressInLegacyDfu", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceScanningForNewAddressInLegacyDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(type: ZTCoreKit.ZTError.Enums.DfuError)", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceScanningForNewAddressInLegacyDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceScanningForNewAddressInLegacyDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "TypeDecl", - "name": "Enums", - "printedName": "Enums", + "kind": "Var", + "name": "connectionTimeout", + "printedName": "connectionTimeout", "children": [ { - "kind": "TypeDecl", - "name": "ScanningError", - "printedName": "ScanningError", + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)connectionTimeout", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "Var", - "name": "cameraPermission", - "printedName": "cameraPermission", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongCode", - "printedName": "wrongCode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notLinkedUser", - "printedName": "notLinkedUser", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - }, - { - "kind": "TypeNominal", - "name": "ScanningError", - "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)connectionTimeout", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setConnectionTimeout:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvs", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataObjectPreparationDelay", + "printedName": "dataObjectPreparationDelay", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)dataObjectPreparationDelay", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)dataObjectPreparationDelay", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDataObjectPreparationDelay:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeDecl", - "name": "BleError", - "printedName": "BleError", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "Var", - "name": "invalidState", - "printedName": "invalidState", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "resetting", - "printedName": "resetting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "poweredOff", - "printedName": "poweredOff", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "timeout", - "printedName": "timeout", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unauthorized", - "printedName": "unauthorized", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notConnected", - "printedName": "notConnected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alternativeAdvertisingNameEnabled", + "printedName": "alternativeAdvertisingNameEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingNameEnabled", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Var", - "name": "notConnectedLeft", - "printedName": "notConnectedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingNameEnabled", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "activityIsRunning", - "printedName": "activityIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "busy", - "printedName": "busy", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingNameEnabled:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "dfu", - "printedName": "dfu", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "alternativeAdvertisingName", + "printedName": "alternativeAdvertisingName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { - "kind": "Var", - "name": "commandError", - "printedName": "commandError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", - "moduleName": "ZTCoreKit" - }, + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingName", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" - }, - { - "kind": "TypeNominal", - "name": "BleError", - "printedName": "ZTCoreKit.ZTError.Enums.BleError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingName", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingName:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "printedName": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)enableUnsafeExperimentalButtonlessServiceInSecureDfu", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setEnableUnsafeExperimentalButtonlessServiceInSecureDfu:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "uuidHelper", + "printedName": "uuidHelper", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)uuidHelper", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "kind": "TypeNominal", + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)uuidHelper", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeDecl", - "name": "FirmwareError", - "printedName": "FirmwareError", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "Var", - "name": "differentFirmware", - "printedName": "differentFirmware", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "memsError", - "printedName": "memsError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, - { - "kind": "Var", - "name": "leftNoConnected", - "printedName": "leftNoConnected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "restartRequired", - "printedName": "restartRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "recoverFromDfu", - "printedName": "recoverFromDfu", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "minimumFwVersion", - "printedName": "minimumFwVersion", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "updateRequired", - "printedName": "updateRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongProductType", - "printedName": "wrongProductType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "firstChunkIdIsGreater", - "printedName": "firstChunkIdIsGreater", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "startTimeZero", - "printedName": "startTimeZero", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - }, - { - "kind": "TypeNominal", - "name": "FirmwareError", - "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DfuError", - "printedName": "DfuError", - "children": [ - { - "kind": "Var", - "name": "noLeftModule", - "printedName": "noLeftModule", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noUpdate", - "printedName": "noUpdate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongFile", - "printedName": "wrongFile", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noStart", - "printedName": "noStart", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "aborted", - "printedName": "aborted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "abortedRight", - "printedName": "abortedRight", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "abortedLeft", - "printedName": "abortedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "lowBattery", - "printedName": "lowBattery", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "inProgress", - "printedName": "inProgress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "updateRequired", - "printedName": "updateRequired", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrongProductType", - "printedName": "wrongProductType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - }, - { - "kind": "TypeNominal", - "name": "DfuError", - "printedName": "ZTCoreKit.ZTError.Enums.DfuError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StoreError", - "printedName": "StoreError", - "children": [ - { - "kind": "Var", - "name": "missing", - "printedName": "missing", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalid", - "printedName": "invalid", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Any?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "wrong", - "printedName": "wrong", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> ZTCoreKit.ZTError.Enums.StoreError", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoreError", - "printedName": "ZTCoreKit.ZTError.Enums.StoreError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ActivityError", - "printedName": "ActivityError", - "children": [ - { - "kind": "Var", - "name": "notStarted", - "printedName": "notStarted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notStartedLeft", - "printedName": "notStartedLeft", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notStopped", - "printedName": "notStopped", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "modeNotSetActivityIsRunning", - "printedName": "modeNotSetActivityIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "previousNotStopped", - "printedName": "previousNotStopped", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "previousRestoring", - "printedName": "previousRestoring", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "noUserParametersSet", - "printedName": "noUserParametersSet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "rawDataFlowIsRunning", - "printedName": "rawDataFlowIsRunning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalidMobilityScanResults", - "printedName": "invalidMobilityScanResults", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "outsideActivityDetected", - "printedName": "outsideActivityDetected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "anomalyDetected", - "printedName": "anomalyDetected", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "mobility", - "printedName": "mobility", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - }, - { - "kind": "TypeNominal", - "name": "ActivityError", - "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NetworkError", - "printedName": "NetworkError", - "children": [ - { - "kind": "Var", - "name": "userLinkError", - "printedName": "userLinkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "inaccessible", - "printedName": "inaccessible", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "urlError", - "printedName": "urlError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "URLError", - "printedName": "Foundation.URLError", - "usr": "s:10Foundation8URLErrorV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "generalError", - "printedName": "generalError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "noResponse", - "printedName": "noResponse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "invalidResponseType", - "printedName": "invalidResponseType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "URLResponse", - "printedName": "Foundation.URLResponse", - "usr": "c:objc(cs)NSURLResponse" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "noResponseData", - "printedName": "noResponseData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "endpointError", - "printedName": "endpointError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?)", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "custom", - "printedName": "custom", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(errorCode: Swift.Int?, errorDescription: Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "NetworkError", - "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DecodableError", - "printedName": "DecodableError", - "children": [ - { - "kind": "Var", - "name": "invalidKeyPath", - "printedName": "invalidKeyPath", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "emptyKeyPath", - "printedName": "emptyKeyPath", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "invalidJSON", - "printedName": "invalidJSON", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - }, - { - "kind": "TypeNominal", - "name": "DecodableError", - "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC", - "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - }, - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTErrorO", - "mangledName": "$s9ZTCoreKit7ZTErrorO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFirmwareRevision", - "printedName": "ZTFirmwareRevision", - "children": [ - { - "kind": "Var", - "name": "fwSystemVersion", - "printedName": "fwSystemVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "productType", - "printedName": "productType", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductCodeType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductCodeType", - "printedName": "ZTCoreKit.ZTProductCodeType", - "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmVersion", - "printedName": "bmVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "date", - "printedName": "date", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "code", - "printedName": "code", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "versions", - "printedName": "versions", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFwBmVersion?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFwBmVersion", - "printedName": "ZTCoreKit.ZTFwBmVersion", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFwBmVersion?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFwBmVersion", - "printedName": "ZTCoreKit.ZTFwBmVersion", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(code:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<", - "printedName": "<(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": ">=", - "printedName": ">=(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "fwSystemMajorVersion", - "printedName": "fwSystemMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemMinorVersion", - "printedName": "fwSystemMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemBuildVersion", - "printedName": "fwSystemBuildVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmMajorVersion", - "printedName": "bmMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bmMinorVersion", - "printedName": "bmMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC", - "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTFwBmVersion", - "printedName": "ZTFwBmVersion", - "children": [ - { - "kind": "Var", - "name": "fwSystemMajorVersion", - "printedName": "fwSystemMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemMinorVersion", - "printedName": "fwSystemMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fwSystemBuildVersion", - "printedName": "fwSystemBuildVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "bmMajorVersion", - "printedName": "bmMajorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "bmMinorVersion", - "printedName": "bmMinorVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit13ZTFwBmVersionV", - "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkData", - "printedName": "ZTMessageChunkData", - "children": [ - { - "kind": "TypeDecl", - "name": "Mode", - "printedName": "Mode", - "children": [ - { - "kind": "Var", - "name": "manual", - "printedName": "manual", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "automatic", - "printedName": "automatic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode?", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte1", - "printedName": "byte1", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte2", - "printedName": "byte2", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte3", - "printedName": "byte3", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageChunkData", - "printedName": "ZTCoreKit.ZTMessageChunkData", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "side", - "printedName": "side", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "mode", - "printedName": "mode", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Mode", - "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "length", - "printedName": "length", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "payload", - "printedName": "payload", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit18ZTMessageChunkDataV", - "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTTextCharacteristic", - "printedName": "ZTTextCharacteristic", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTTextCharacteristic", - "printedName": "ZTCoreKit.ZTTextCharacteristic", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNSDecimalNumberTransform", - "printedName": "ZTNSDecimalNumberTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTNSDecimalNumberTransform", - "printedName": "ZTCoreKit.ZTNSDecimalNumberTransform", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDecimalNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDecimalNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC", - "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDecimalNumber", - "printedName": "Foundation.NSDecimalNumber", - "usr": "c:objc(cs)NSDecimalNumber" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "os.log", - "printedName": "os.log", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTLogLevel", - "printedName": "ZTLogLevel", - "children": [ - { - "kind": "Var", - "name": "all", - "printedName": "all", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO3allyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO3allyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5debugyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5debugyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO4infoyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO4infoyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5erroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "fatal", - "printedName": "fatal", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLogLevel?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTLogLevelO", - "mangledName": "$s9ZTCoreKit10ZTLogLevelO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTLogCategory", - "printedName": "ZTLogCategory", - "children": [ - { - "kind": "Var", - "name": "networkAgent", - "printedName": "networkAgent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "modules", - "printedName": "modules", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "sdk", - "printedName": "sdk", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLogCategory.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLogCategory?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogCategory", - "printedName": "ZTCoreKit.ZTLogCategory", - "usr": "s:9ZTCoreKit13ZTLogCategoryO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTLogCategoryO", - "mangledName": "$s9ZTCoreKit13ZTLogCategoryO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTRealtimeMessageEventType", - "children": [ - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "acknowledgment", - "printedName": "acknowledgment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "realTimeEvent", - "printedName": "realTimeEvent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "realTimeMetrics", - "printedName": "realTimeMetrics", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTRealtimeMessageEventType", - "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO", - "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", - "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "os.log", - "printedName": "os.log", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTLogger", - "printedName": "ZTLogger", - "children": [ - { - "kind": "Var", - "name": "instance", - "printedName": "instance", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogger", - "printedName": "ZTCoreKit.ZTLogger", - "usr": "s:9ZTCoreKit8ZTLoggerC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvpZ", - "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogger", - "printedName": "ZTCoreKit.ZTLogger", - "usr": "s:9ZTCoreKit8ZTLoggerC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvgZ", - "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "ztDebugPrint", - "printedName": "ztDebugPrint(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "debug", - "printedName": "debug(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "info", - "printedName": "info(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "error", - "printedName": "error(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fatal", - "printedName": "fatal(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[any Swift.CVarArg]", - "children": [ - { - "kind": "TypeNominal", - "name": "CVarArg", - "printedName": "any Swift.CVarArg", - "usr": "s:s7CVarArgP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "print", - "printedName": "print(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> Any", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTLoggerC5printyyypyXKF", - "mangledName": "$s9ZTCoreKit8ZTLoggerC5printyyypyXKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTLoggerC", - "mangledName": "$s9ZTCoreKit8ZTLoggerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTLoggerLine", - "printedName": "ZTLoggerLine", - "children": [ - { - "kind": "Var", - "name": "notification", - "printedName": "notification", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "ble", - "printedName": "ble", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "date", - "printedName": "date", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "message", - "printedName": "message", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "level", - "printedName": "level", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "category", - "printedName": "category", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvp", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvg", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerLine", - "printedName": "ZTCoreKit.ZTLoggerLine", - "usr": "s:9ZTCoreKit12ZTLoggerLineV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit12ZTLoggerLineV", - "mangledName": "$s9ZTCoreKit12ZTLoggerLineV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTNetworkReachabilityManager", - "printedName": "ZTNetworkReachabilityManager", - "children": [ - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC11isReachableSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableOnCellular", - "printedName": "isReachableOnCellular", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC21isReachableOnCellularSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableOnEthernetOrWiFi", - "printedName": "isReachableOnEthernetOrWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "flags", - "printedName": "flags", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?", - "children": [ - { - "kind": "TypeNominal", - "name": "SCNetworkReachabilityFlags", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags", - "usr": "c:@E@SCNetworkReachabilityFlags" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvp", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?", - "children": [ - { - "kind": "TypeNominal", - "name": "SCNetworkReachabilityFlags", - "printedName": "SystemConfiguration.SCNetworkReachabilityFlags", - "usr": "c:@E@SCNetworkReachabilityFlags" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvg", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC5flagsSo09SCNetworkD5FlagsVSgvg", - "moduleName": "ZTCoreKit", - "isOpen": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTNetworkReachabilityManagerC", - "mangledName": "$s9ZTCoreKit28ZTNetworkReachabilityManagerC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTNotifyData", - "printedName": "ZTNotifyData", - "children": [ - { - "kind": "TypeDecl", - "name": "GroupID", - "printedName": "GroupID", - "children": [ - { - "kind": "Var", - "name": "common", - "printedName": "common", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warm", - "printedName": "warm", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "running", - "printedName": "running", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "cycling", - "printedName": "cycling", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "safety", - "printedName": "safety", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "generic", - "printedName": "generic", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID?", - "children": [ - { - "kind": "TypeNominal", - "name": "GroupID", - "printedName": "ZTCoreKit.ZTNotifyData.GroupID", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CommonMessageId", - "printedName": "CommonMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_GENERAL_STATES", - "printedName": "MSG_GENERAL_STATES", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_BATTERY_LEVEL", - "printedName": "MSG_BATTERY_LEVEL", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_MEMS", - "printedName": "MSG_MEMS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_FLASH", - "printedName": "MSG_FLASH", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_TIME", - "printedName": "MSG_TIME", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HARDWARE", - "printedName": "MSG_HARDWARE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_SOFTWARE", - "printedName": "MSG_SOFTWARE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ACTIVITY_INFO", - "printedName": "MSG_ACTIVITY_INFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ACTIVITY_METADATA", - "printedName": "MSG_ACTIVITY_METADATA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_RAWDATA_HEADER", - "printedName": "MSG_RAWDATA_HEADER", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_RAWDATA_FRAME", - "printedName": "MSG_RAWDATA_FRAME", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_BTLOADER_INFO", - "printedName": "MSG_BTLOADER_INFO", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_INACTIVITY_TIMEOUT", - "printedName": "MSG_INACTIVITY_TIMEOUT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_SEND_STATUS", - "printedName": "MSG_CHUNK_SEND_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_DATA", - "printedName": "MSG_CHUNK_DATA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_CHUNK_CONFIG", - "printedName": "MSG_CHUNK_CONFIG", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_DEBUG", - "printedName": "MSG_DEBUG", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommonMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "WarmMessageId", - "printedName": "WarmMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_HEATING_TEMP_1", - "printedName": "MSG_HEATING_TEMP_1", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_TEMP_2", - "printedName": "MSG_HEATING_TEMP_2", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_STEP_R_CNT", - "printedName": "MSG_HEATING_STEP_R_CNT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_STEP_L_CNT", - "printedName": "MSG_HEATING_STEP_L_CNT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_SETPOINT_R", - "printedName": "MSG_HEATING_SETPOINT_R", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_SETPOINT_L", - "printedName": "MSG_HEATING_SETPOINT_L", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_GET_HEAT_TIMER", - "printedName": "MSG_GET_HEAT_TIMER", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_DEBUG_R", - "printedName": "MSG_HEATING_DEBUG_R", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_HEATING_DEBUG_L", - "printedName": "MSG_HEATING_DEBUG_L", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "WarmMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setUuidHelper:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "RunningMessageId", - "printedName": "RunningMessageId", - "children": [ - { - "kind": "Var", - "name": "UNKNOWN", - "printedName": "UNKNOWN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId.Type) -> ZTCoreKit.ZTNotifyData.RunningMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "RunningMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } + "declAttributes": [ + "ObjC" ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "accessorKind": "_modify" } ] }, { - "kind": "TypeDecl", - "name": "CyclingMessageId", - "printedName": "CyclingMessageId", + "kind": "Var", + "name": "disableResume", + "printedName": "disableResume", "children": [ { - "kind": "Var", - "name": "MSG_CADENCE", - "printedName": "MSG_CADENCE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId.Type) -> ZTCoreKit.ZTNotifyData.CyclingMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "CyclingMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)disableResume", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SafetyMessageId", - "printedName": "SafetyMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_CALIBRATION_SAFETY", - "printedName": "MSG_CALIBRATION_SAFETY", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "MSG_ALGO_RT_EVENT", - "printedName": "MSG_ALGO_RT_EVENT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "SafetyMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "GenericMessageId", - "printedName": "GenericMessageId", - "children": [ - { - "kind": "Var", - "name": "MSG_ALGO_RT_EVENT", - "printedName": "MSG_ALGO_RT_EVENT", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId.Type) -> ZTCoreKit.ZTNotifyData.GenericMessageId", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", - "moduleName": "ZTCoreKit" - }, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)disableResume", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "AccessControl" + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericMessageId", - "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDisableResume:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit12ZTNotifyDataO", - "mangledName": "$s9ZTCoreKit12ZTNotifyDataO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDeviceActualState", - "printedName": "ZTDeviceActualState", - "children": [ - { - "kind": "Var", - "name": "activityNone", - "printedName": "activityNone", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", - "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "activityStarting", - "printedName": "activityStarting", + "kind": "Constructor", + "name": "init", + "printedName": "init(centralManager:target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "eraseMemory", - "printedName": "eraseMemory", - "children": [ + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityRunning", - "printedName": "activityRunning", - "children": [ + "kind": "TypeNominal", + "name": "CBCentralManager", + "printedName": "CoreBluetooth.CBCentralManager", + "usr": "c:objc(cs)CBCentralManager" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "activityPaused", - "printedName": "activityPaused", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] - } + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithCentralManager:target:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC14centralManager6targetACSo09CBCentralF0C_So12CBPeripheralCtcfc", + "moduleName": "ZTCoreKit", + "deprecated": true, + "objc_name": "initWithCentralManager:target:", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", - "moduleName": "ZTCoreKit" + "init_kind": "Designated" }, { - "kind": "Var", - "name": "activityStopping", - "printedName": "activityStopping", + "kind": "Constructor", + "name": "init", + "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "hasDefaultArg": true, + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5queue13delegateQueue08progressG006loggerG021centralManagerOptionsACSo012OS_dispatch_E0CSg_A3JSDySSypGSgtcfc", + "moduleName": "ZTCoreKit", + "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "activityPendData", - "printedName": "activityPendData", + "kind": "Function", + "name": "with", + "printedName": "with(firmware:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + }, + { + "kind": "TypeNominal", + "name": "DFUFirmware", + "printedName": "ZTCoreKit.DFUFirmware", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)withFirmware:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC4with8firmwareAcA11DFUFirmwareC_tF", + "moduleName": "ZTCoreKit", + "objc_name": "withFirmware:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "activitySendData", - "printedName": "activitySendData", + "kind": "Function", + "name": "start", + "printedName": "start()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", - "moduleName": "ZTCoreKit" + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)start", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5startAA0C10ControllerCSgyF", + "moduleName": "ZTCoreKit", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "Function", + "name": "start", + "printedName": "start(target:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDeviceActualState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ] + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTarget:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start6targetAA0C10ControllerCSgSo12CBPeripheralC_tF", "moduleName": "ZTCoreKit", + "objc_name": "startWithTarget:", "declAttributes": [ - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "start", + "printedName": "start(targetWithIdentifier:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceActualState?", + "printedName": "ZTCoreKit.DFUServiceController?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "DFUServiceController", + "printedName": "ZTCoreKit.DFUServiceController", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTargetWithIdentifier:", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start20targetWithIdentifierAA0C10ControllerCSg10Foundation4UUIDV_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "objc_name": "startWithTargetWithIdentifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUServiceInitiator", + "printedName": "ZTCoreKit.DFUServiceInitiator", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)init", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorCACycfc", "moduleName": "ZTCoreKit", + "overriding": true, "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO", - "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", + "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", @@ -55867,39 +43036,38 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -55915,8 +43083,8 @@ }, { "kind": "TypeDecl", - "name": "ZTDictionaryTransform", - "printedName": "ZTDictionaryTransform", + "name": "ZTDateTransform", + "printedName": "ZTDateTransform", "children": [ { "kind": "Constructor", @@ -55925,29 +43093,15 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTDictionaryTransform", - "printedName": "ZTCoreKit.ZTDictionaryTransform<τ_0_0, τ_0_1>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV" + "name": "ZTDateTransform", + "printedName": "ZTCoreKit.ZTDateTransform", + "usr": "s:9ZTCoreKit15ZTDateTransformC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", + "usr": "s:9ZTCoreKit15ZTDateTransformCACycfc", + "mangledName": "$s9ZTCoreKit15ZTDateTransformCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -55961,25 +43115,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[τ_0_0 : τ_0_1]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" @@ -55999,11 +43141,9 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", + "usr": "s:9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC17transformFromJSONy10Foundation4DateVSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -56017,12 +43157,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" @@ -56030,51 +43171,34 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[τ_0_0 : τ_0_1]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", + "usr": "s:9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC15transformToJSONySSSg10Foundation4DateVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit21ZTDictionaryTransformV", - "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV", + "declKind": "Class", + "usr": "s:9ZTCoreKit15ZTDateTransformC", + "mangledName": "$s9ZTCoreKit15ZTDateTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -56089,21 +43213,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ] }, @@ -56114,8 +43226,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } @@ -56125,632 +43238,211 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTScannerResult", - "printedName": "ZTScannerResult", - "children": [ - { - "kind": "Var", - "name": "success", - "printedName": "success", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> (ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(device: ZTCoreKit.ZTDevice)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO7successyAcA8ZTDeviceC_tcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "cancelled", - "printedName": "cancelled", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO9cancelledyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "failed", - "printedName": "failed", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTScannerResult.Type) -> ((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ZTCoreKit.ZTScannerResult", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTScannerResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTScannerResult", - "printedName": "ZTCoreKit.ZTScannerResult", - "usr": "s:9ZTCoreKit15ZTScannerResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO6failedyACs5Error_pSgcACmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit15ZTScannerResultO", - "mangledName": "$s9ZTCoreKit15ZTScannerResultO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "ZTInformationService", - "printedName": "ZTInformationService", + "name": "ZTDateTransformUTC", + "printedName": "ZTDateTransformUTC", "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "ZTDateTransformUTC", + "printedName": "ZTCoreKit.ZTDateTransformUTC", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCCACycfc", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCCACycfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] + "init_kind": "Designated" }, - { - "kind": "Var", - "name": "manufacturerName", - "printedName": "manufacturerName", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTManufacturerNameCharacteristic", - "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", - "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16manufacturerNameAA014ZTManufacturerF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC17transformFromJSONy10Foundation4DateVSgypSgF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTModelNumberCharacteristic", - "printedName": "ZTCoreKit.ZTModelNumberCharacteristic", - "usr": "s:9ZTCoreKit27ZTModelNumberCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC11modelNumberAA07ZTModelF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC15transformToJSONySSSg10Foundation4DateVSgF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTDateTransformUTCC", + "mangledName": "$s9ZTCoreKit18ZTDateTransformUTCC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC12serialNumberAA08ZTSerialF14CharacteristicCSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } - ] - }, + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCommandsCharacteristic", + "printedName": "ZTCommandsCharacteristic", + "children": [ { "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvp", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "AccessControl" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -56759,54 +43451,56 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTFirmwareCharacteristic", - "printedName": "ZTCoreKit.ZTFirmwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTFirmwareCharacteristicC" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16firmwareRevisionAA24ZTFirmwareCharacteristicCSgvg", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvp", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -56816,22 +43510,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTHardwareCharacteristic", - "printedName": "ZTCoreKit.ZTHardwareCharacteristic", - "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC16hardwareRevisionAA24ZTHardwareCharacteristicCSgvg", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] @@ -56839,67 +43534,75 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(device:service:)", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "ZTInformationService", - "printedName": "ZTCoreKit.ZTInformationService", - "usr": "s:9ZTCoreKit20ZTInformationServiceC" + "name": "ZTCommandsCharacteristic", + "printedName": "ZTCoreKit.ZTCommandsCharacteristic", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC" }, { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", "overriding": true, - "implicit": true, "declAttributes": [ - "Required" + "AccessControl", + "Required", + "RawDocComment" ], "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit20ZTInformationServiceC", - "mangledName": "$s9ZTCoreKit20ZTInformationServiceC", + "usr": "s:9ZTCoreKit24ZTCommandsCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTCommandsCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } + "ZTCoreKit.ZTCharacteristic" ] }, { @@ -56912,563 +43615,499 @@ "RawDocComment" ] }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSZRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSZRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.SignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtSURzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtSURzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.UnsignedInteger>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTServices", - "printedName": "ZTServices", + "name": "ZTProductType", + "printedName": "ZTProductType", "children": [ { - "kind": "TypeDecl", - "name": "Primary", - "printedName": "Primary", + "kind": "Var", + "name": "sports", + "printedName": "sports", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO6sportsyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "warm", + "printedName": "warm", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO4warmyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO4warmyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "safety", + "printedName": "safety", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", "children": [ { - "kind": "Var", - "name": "commands", - "printedName": "commands", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO8commandsyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "notifyData", - "printedName": "notifyData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO10notifyDatayA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "indicateData", - "printedName": "indicateData", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12indicateDatayA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO12batteryLevelyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "pairedSoles", - "printedName": "pairedSoles", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO11pairedSolesyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "test", - "printedName": "test", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.Primary.Characteristic.Type) -> ZTCoreKit.ZTServices.Primary.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4testyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "uid", - "printedName": "uid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4uuidSo6CBUUIDCvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ] - }, + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO6safetyyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "podoSmart", + "printedName": "podoSmart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.Primary.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO9podoSmartyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO3dfuyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "ztDfu", + "printedName": "ztDfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", + "children": [ { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO5ztDfuyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "baliston", + "printedName": "baliston", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductType.Type) -> ZTCoreKit.ZTProductType", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } + ] } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO7PrimaryO", - "mangledName": "$s9ZTCoreKit10ZTServicesO7PrimaryO", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8balistonyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityType", + "printedName": "activityType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvp", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTProductTypeO08activityD0SSvg", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO08activityD0SSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } ] }, { - "kind": "TypeDecl", - "name": "PrimaryOld", - "printedName": "PrimaryOld", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -57477,457 +44116,731 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductType", + "printedName": "ZTCoreKit.ZTProductType", + "usr": "s:9ZTCoreKit13ZTProductTypeO" + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTProductTypeO", + "mangledName": "$s9ZTCoreKit13ZTProductTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProjectCodeType", + "printedName": "ZTProjectCodeType", + "children": [ + { + "kind": "Var", + "name": "zt1", + "printedName": "zt1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt1yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt2", + "printedName": "zt2", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt2yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt3", + "printedName": "zt3", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", "children": [ { - "kind": "Var", - "name": "commands", - "printedName": "commands", + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO8commandsyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt3yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zt4", + "printedName": "zt4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProjectCodeType.Type) -> ZTCoreKit.ZTProjectCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" }, { - "kind": "Var", - "name": "notifyData", - "printedName": "notifyData", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProjectCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO10notifyDatayA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO3zt4yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProjectCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProjectCodeType", + "printedName": "ZTCoreKit.ZTProjectCodeType", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTProjectCodeTypeO", + "mangledName": "$s9ZTCoreKit17ZTProjectCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProductCodeType", + "printedName": "ZTProductCodeType", + "children": [ + { + "kind": "Var", + "name": "WS", + "printedName": "WS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "indicateData", - "printedName": "indicateData", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12indicateDatayA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WSyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "WM", + "printedName": "WM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "batteryLevel", - "printedName": "batteryLevel", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO12batteryLevelyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2WMyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SP", + "printedName": "SP", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "pairedSoles", - "printedName": "pairedSoles", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type) -> ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO11pairedSolesyA2GmF", - "moduleName": "ZTCoreKit" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SPyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SF", + "printedName": "SF", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SFyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "PS", + "printedName": "PS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.PrimaryOld.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2PSyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "SI", + "printedName": "SI", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2SIyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "BA", + "printedName": "BA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductCodeType.Type) -> ZTCoreKit.ZTProductCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO2BAyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityType", + "printedName": "activityType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO14CharacteristicO", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO08activityE0SSvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO10PrimaryOldO", - "mangledName": "$s9ZTCoreKit10ZTServicesO10PrimaryOldO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeDecl", - "name": "DeviceInformation", - "printedName": "DeviceInformation", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -57936,457 +44849,383 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO", + "mangledName": "$s9ZTCoreKit17ZTProductCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTManufacturerCodeType", + "printedName": "ZTManufacturerCodeType", + "children": [ + { + "kind": "Var", + "name": "a", + "printedName": "a", + "children": [ { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1ayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "b", + "printedName": "b", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", "children": [ { - "kind": "Var", - "name": "manufacturerName", - "printedName": "manufacturerName", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16manufacturerNameyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "modelNumber", - "printedName": "modelNumber", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO11modelNumberyA2GmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1byA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "c", + "printedName": "c", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ { - "kind": "Var", - "name": "serialNumber", - "printedName": "serialNumber", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO12serialNumberyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "firmwareRevision", - "printedName": "firmwareRevision", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16firmwareRevisionyA2GmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1cyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "d", + "printedName": "d", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ { - "kind": "Var", - "name": "hardwareRevision", - "printedName": "hardwareRevision", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO16hardwareRevisionyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1dyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "e", + "printedName": "e", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceInformation.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1eyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "f", + "printedName": "f", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1fyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "z", + "printedName": "z", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTManufacturerCodeType.Type) -> ZTCoreKit.ZTManufacturerCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTManufacturerCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + ] } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO1zyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTManufacturerCodeType?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTManufacturerCodeType", + "printedName": "ZTCoreKit.ZTManufacturerCodeType", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO17DeviceInformationO", - "mangledName": "$s9ZTCoreKit10ZTServicesO17DeviceInformationO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeDecl", - "name": "DeviceDFU", - "printedName": "DeviceDFU", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -58395,426 +45234,332 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvpZ", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit22ZTManufacturerCodeTypeO", + "mangledName": "$s9ZTCoreKit22ZTManufacturerCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO3uidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTProductTypeCode", + "printedName": "ZTProductTypeCode", + "children": [ + { + "kind": "Var", + "name": "ix", + "printedName": "ix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO4uuidSo6CBUUIDCvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2ixyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "sx", + "printedName": "sx", + "children": [ { - "kind": "TypeDecl", - "name": "Characteristic", - "printedName": "Characteristic", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", "children": [ { - "kind": "Var", - "name": "dfuControlPoint", - "printedName": "dfuControlPoint", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO15dfuControlPointyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dfuPacket", - "printedName": "dfuPacket", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9dfuPacketyA2GmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "dfuButtonless", - "printedName": "dfuButtonless", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type) -> ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO13dfuButtonlessyA2GmF", - "moduleName": "ZTCoreKit" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" }, { - "kind": "Var", - "name": "uid", - "printedName": "uid", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO3uidSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ] - }, + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2sxyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "xx", + "printedName": "xx", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTProductTypeCode.Type) -> ZTCoreKit.ZTProductTypeCode", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - }, - { - "kind": "TypeNominal", - "name": "Characteristic", - "printedName": "ZTCoreKit.ZTServices.DeviceDFU.Characteristic", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO2eeoiySbAG_AGtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTProductTypeCode.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO14CharacteristicO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO2xxyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductTypeCode?", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "ZTProductTypeCode", + "printedName": "ZTCoreKit.ZTProductTypeCode", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO9DeviceDFUO", - "mangledName": "$s9ZTCoreKit10ZTServicesO9DeviceDFUO", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTServicesO", - "mangledName": "$s9ZTCoreKit10ZTServicesO", + "usr": "s:9ZTCoreKit17ZTProductTypeCodeO", + "mangledName": "$s9ZTCoreKit17ZTProductTypeCodeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } ] }, { "kind": "TypeDecl", - "name": "ZTActivityType", - "printedName": "ZTActivityType", + "name": "ZTGenderCodeType", + "printedName": "ZTGenderCodeType", "children": [ { "kind": "Var", - "name": "staticType", - "printedName": "staticType", + "name": "man", + "printedName": "man", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" } ] } @@ -58822,36 +45567,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO06staticD0yA2CmF", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO3manyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "dynamic", - "printedName": "dynamic", + "name": "woman", + "printedName": "woman", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderCodeType.Type) -> ZTCoreKit.ZTGenderCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" } ] } @@ -58859,36 +45604,162 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7dynamicyA2CmF", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO5womanyA2CmF", "moduleName": "ZTCoreKit" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTGenderCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderCodeType", + "printedName": "ZTCoreKit.ZTGenderCodeType", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", - "name": "walking", - "printedName": "walking", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTGenderCodeTypeO", + "mangledName": "$s9ZTCoreKit16ZTGenderCodeTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTGenderSizeCodeType", + "children": [ + { + "kind": "Var", + "name": "a", + "printedName": "a", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58896,36 +45767,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7walkingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ayA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "running", - "printedName": "running", + "name": "b", + "printedName": "b", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58933,36 +45804,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7runningyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1byA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "name": "c", + "printedName": "c", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -58970,36 +45841,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO7cyclingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1cyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "d", + "printedName": "d", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59007,36 +45878,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4jumpyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1dyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "stairsUp", - "printedName": "stairsUp", + "name": "e", + "printedName": "e", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59044,36 +45915,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8stairsUpyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1eyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "stairsDown", - "printedName": "stairsDown", + "name": "f", + "printedName": "f", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59081,36 +45952,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO10stairsDownyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1fyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "staticOther", - "printedName": "staticOther", + "name": "g", + "printedName": "g", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59118,36 +45989,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO11staticOtheryA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1gyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "kneel", - "printedName": "kneel", + "name": "h", + "printedName": "h", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59155,36 +46026,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO5kneelyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1hyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "tiptoe", - "printedName": "tiptoe", + "name": "i", + "printedName": "i", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59192,36 +46063,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6tiptoeyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1iyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "vibration", - "printedName": "vibration", + "name": "j", + "printedName": "j", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59229,36 +46100,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9vibrationyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1jyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "trampling", - "printedName": "trampling", + "name": "n", + "printedName": "n", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59266,36 +46137,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO9tramplingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1nyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "crawling", - "printedName": "crawling", + "name": "o", + "printedName": "o", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59303,36 +46174,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8crawlingyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1oyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "dynamicOther", - "printedName": "dynamicOther", + "name": "p", + "printedName": "p", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59340,36 +46211,73 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO12dynamicOtheryA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1pyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "slip", - "printedName": "slip", + "name": "q", + "printedName": "q", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1qyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "r", + "printedName": "r", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59377,36 +46285,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4slipyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1ryA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "trip", - "printedName": "trip", + "name": "s", + "printedName": "s", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59414,36 +46322,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO4tripyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1syA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "active", - "printedName": "active", + "name": "t", + "printedName": "t", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59451,36 +46359,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO6activeyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1tyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "inactive", - "printedName": "inactive", + "name": "u", + "printedName": "u", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityType.Type) -> ZTCoreKit.ZTActivityType", + "printedName": "(ZTCoreKit.ZTGenderSizeCodeType.Type) -> ZTCoreKit.ZTGenderSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityType.Type", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ] } @@ -59488,8 +46396,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8inactiveyA2CmF", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO1uyA2CmF", "moduleName": "ZTCoreKit" }, { @@ -59500,27 +46408,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityType?", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityType", - "printedName": "ZTCoreKit.ZTActivityType", - "usr": "s:9ZTCoreKit14ZTActivityTypeO" + "name": "ZTGenderSizeCodeType", + "printedName": "ZTCoreKit.ZTGenderSizeCodeType", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -59532,14 +46440,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -59550,14 +46458,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -59566,14 +46474,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTActivityTypeO", - "mangledName": "$s9ZTCoreKit14ZTActivityTypeO", + "usr": "s:9ZTCoreKit20ZTGenderSizeCodeTypeO", + "mangledName": "$s9ZTCoreKit20ZTGenderSizeCodeTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -59601,597 +46509,86 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, { "kind": "TypeDecl", - "name": "ZTTransformOf", - "printedName": "ZTTransformOf", + "name": "ZTUnitSizeCodeType", + "printedName": "ZTUnitSizeCodeType", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(fromJSON:toJSON:)", + "kind": "Var", + "name": "a", + "printedName": "a", "children": [ - { - "kind": "TypeNominal", - "name": "ZTTransformOf", - "printedName": "ZTCoreKit.ZTTransformOf<τ_0_0, τ_0_1>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:9ZTCoreKit13ZTTransformOfC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_1?) -> τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" - } - ] - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(τ_0_0?) -> τ_0_1?", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_1?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTTransformOfC", - "mangledName": "$s9ZTCoreKit13ZTTransformOfC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + ] } ] } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUFirmwareSize", - "printedName": "DFUFirmwareSize", - "children": [ - { - "kind": "Var", - "name": "softdevice", - "printedName": "softdevice", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)softdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)softdevice", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10softdevices6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bootloader", - "printedName": "bootloader", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)bootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)bootloader", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC10bootloaders6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "application", - "printedName": "application", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(py)application", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)application", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC11applications6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUFirmwareSize", - "printedName": "ZTCoreKit.DFUFirmwareSize", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize(im)init", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmwareSize", - "mangledName": "$s9ZTCoreKit15DFUFirmwareSizeC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1ayA2CmF", + "moduleName": "ZTCoreKit" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivityMode", - "printedName": "ZTActivityMode", - "children": [ { "kind": "Var", - "name": "safety", - "printedName": "safety", + "name": "b", + "printedName": "b", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60199,36 +46596,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1byA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "walking", - "printedName": "walking", + "name": "c", + "printedName": "c", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60236,36 +46633,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1cyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "running", - "printedName": "running", + "name": "d", + "printedName": "d", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60273,36 +46670,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7runningyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1dyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "name": "e", + "printedName": "e", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60310,36 +46707,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1eyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "mobility", - "printedName": "mobility", + "name": "f", + "printedName": "f", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60347,227 +46744,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1fyA2CmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvp", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvg", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTActivityModeO", - "mangledName": "$s9ZTCoreKit14ZTActivityModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTAlgoPrecisionMode", - "children": [ - { - "kind": "Var", - "name": "defaultMode", - "printedName": "defaultMode", + "name": "n", + "printedName": "n", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60575,39 +46781,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO07defaultE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1nyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "economicMode", - "printedName": "economicMode", + "name": "o", + "printedName": "o", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60615,39 +46818,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO08economicE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1oyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "performanceMode", - "printedName": "performanceMode", + "name": "p", + "printedName": "p", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoPrecisionMode.Type) -> ZTCoreKit.ZTAlgoPrecisionMode", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode.Type", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ] } @@ -60655,68 +46855,46 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO011performanceE0yA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1pyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "q", + "printedName": "q", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTUnitSizeCodeType.Type) -> ZTCoreKit.ZTUnitSizeCodeType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO1qyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", @@ -60726,27 +46904,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType?", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoPrecisionMode", - "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + "name": "ZTUnitSizeCodeType", + "printedName": "ZTCoreKit.ZTUnitSizeCodeType", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -60758,14 +46936,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -60776,14 +46954,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -60792,14 +46970,14 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO", - "mangledName": "$s9ZTCoreKit19ZTAlgoPrecisionModeO", + "usr": "s:9ZTCoreKit18ZTUnitSizeCodeTypeO", + "mangledName": "$s9ZTCoreKit18ZTUnitSizeCodeTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -60827,36 +47005,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, @@ -60872,239 +47029,177 @@ }, { "kind": "TypeDecl", - "name": "Adapter", - "printedName": "Adapter", - "declKind": "Class", - "usr": "s:9ZTCoreKit7AdapterC", - "mangledName": "$s9ZTCoreKit7AdapterC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "Retrier", - "printedName": "Retrier", - "declKind": "Class", - "usr": "s:9ZTCoreKit7RetrierC", - "mangledName": "$s9ZTCoreKit7RetrierC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "Interceptor", - "printedName": "Interceptor", - "declKind": "Class", - "usr": "s:9ZTCoreKit11InterceptorC", - "mangledName": "$s9ZTCoreKit11InterceptorC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DataConvertible", - "printedName": "DataConvertible", + "name": "ZTURLTransform", + "printedName": "ZTURLTransform", "children": [ { - "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(shouldEncodeURLString:allowedCharacterSet:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTURLTransform", + "printedName": "ZTCoreKit.ZTURLTransform", + "usr": "s:9ZTCoreKit14ZTURLTransformC" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CharacterSet", + "printedName": "Foundation.CharacterSet", + "hasDefaultArg": true, + "usr": "s:10Foundation12CharacterSetV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertibleP1poiy10Foundation0C0VAG_xtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "+=", - "printedName": "+=(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "paramValueOwnership": "InOut", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertibleP2peoiyy10Foundation0C0Vz_xtFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE1poiy10Foundation0C0VAG_xtFZ", + "usr": "s:9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, + "isOpen": true, "declAttributes": [ "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+=", - "printedName": "+=(_:_:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "paramValueOwnership": "InOut", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", - "mangledName": "$s9ZTCoreKit15DataConvertiblePAAE2peoiyy10Foundation0C0Vz_xtFZ", + "usr": "s:9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DataConvertible>", - "sugared_genericSig": "", - "static": true, + "isOpen": true, "declAttributes": [ "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "declKind": "Class", + "usr": "s:9ZTCoreKit14ZTURLTransformC", + "mangledName": "$s9ZTCoreKit14ZTURLTransformC", "moduleName": "ZTCoreKit", + "isOpen": true, "declAttributes": [ - "RawDocComment" + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } ] }, { @@ -61119,288 +47214,578 @@ }, { "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Plister", + "printedName": "Plister", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" ] }, { "kind": "TypeDecl", - "name": "ZTImmutableMappable", - "printedName": "ZTImmutableMappable", + "name": "ZTDevice", + "printedName": "ZTDevice", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Var", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP3mapxAA5ZTMapC_tKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "protocolReq": true, - "throwing": true, - "reqNewWitnessTableEntry": true, - "init_kind": "Designated" + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC2idSSvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2idSSvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Var", + "name": "peripheral", + "printedName": "peripheral", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "CoreBluetooth.CBPeripheral?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE7mapping3mapyAA5ZTMapC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreBluetooth.CBPeripheral?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralSo12CBPeripheralCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", + "kind": "Var", + "name": "cbPeripheral", + "printedName": "cbPeripheral", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONString7contextxSS_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAA22ZTCBPeripheralProtocol_pSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSON:context:)", + "kind": "Var", + "name": "serialNumber", + "printedName": "serialNumber", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12serialNumberSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4nameSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "qrCode", + "printedName": "qrCode", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE4JSON7contextxSDySSypG_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC6qrCodeSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONObject:context:)", + "kind": "Var", + "name": "rssi", + "printedName": "rssi", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4rssiSivg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4rssiSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macAddressRight", + "printedName": "macAddressRight", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappablePAAE10JSONObject7contextxyp_AA12ZTMapContext_pSgtKcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "init_kind": "Convenience" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit19ZTImmutableMappableP", - "mangledName": "$s9ZTCoreKit19ZTImmutableMappableP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPrimaryOldService", - "printedName": "ZTPrimaryOldService", - "children": [ + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15macAddressRightSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "macAddressLeft", + "printedName": "macAddressLeft", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -61409,64 +47794,117 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvg", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14macAddressLeftSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "name": "advertisementData", + "printedName": "advertisementData", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -61480,41 +47918,37 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -61529,41 +47963,37 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvs", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -61578,618 +48008,569 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17advertisementDataSDySSypGSgvM", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Var", + "name": "manufacturer", + "printedName": "manufacturer", "children": [ { "kind": "TypeNominal", - "name": "ZTPrimaryOldService", - "printedName": "ZTCoreKit.ZTPrimaryOldService", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvp", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, "declAttributes": [ - "Required" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTPrimaryOldServiceC", - "mangledName": "$s9ZTCoreKit19ZTPrimaryOldServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "DFUUuidType", - "printedName": "DFUUuidType", - "children": [ - { - "kind": "Var", - "name": "legacyService", - "printedName": "legacyService", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12manufacturerSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyServiceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 + ] }, { "kind": "Var", - "name": "legacyControlPoint", - "printedName": "legacyControlPoint", + "name": "hardwareRevision", + "printedName": "hardwareRevision", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyControlPoint", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO18legacyControlPointyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "legacyPacket", - "printedName": "legacyPacket", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hardwareRevisionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyPacket", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12legacyPacketyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + ] }, { "kind": "Var", - "name": "legacyVersion", - "printedName": "legacyVersion", + "name": "firmwareRevision", + "printedName": "firmwareRevision", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareRevision?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyVersion", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyVersionyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "secureService", - "printedName": "secureService", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFirmwareRevision?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16firmwareRevisionAA010ZTFirmwareE0CSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureServiceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 + ] }, { "kind": "Var", - "name": "secureControl", - "printedName": "secureControl", + "name": "modelNumber", + "printedName": "modelNumber", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureControl", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureControlyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 5 - }, - { - "kind": "Var", - "name": "securePacket", - "printedName": "securePacket", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11modelNumberSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecurePacket", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12securePacketyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 6 + ] }, { "kind": "Var", - "name": "buttonlessService", - "printedName": "buttonlessService", + "name": "uuid", + "printedName": "uuid", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4uuidSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4uuidSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isConnected", + "printedName": "isConnected", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessService", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO17buttonlessServiceyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 7 + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11isConnectedSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "buttonlessCharacteristic", - "printedName": "buttonlessCharacteristic", + "name": "isActivityRunning", + "printedName": "isActivityRunning", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17isActivityRunningSbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isDeviceReady", + "printedName": "isDeviceReady", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessCharacteristic", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO24buttonlessCharacteristicyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 8 + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13isDeviceReadySbvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "buttonlessWithoutBondSharing", - "printedName": "buttonlessWithoutBondSharing", + "name": "info", + "printedName": "info", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - }, + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithoutBondSharing", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO28buttonlessWithoutBondSharingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 9 - }, - { - "kind": "Var", - "name": "buttonlessWithBondSharing", - "printedName": "buttonlessWithBondSharing", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUUuidType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ] + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceInfo", + "printedName": "ZTCoreKit.ZTDeviceInfo", + "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC4infoAA0C4InfoCSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithBondSharing", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO25buttonlessWithBondSharingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 10 + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "batterylevel", + "printedName": "batterylevel", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUUuidType?", + "printedName": "ZTCoreKit.ZTBatteryLevel?", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivp", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62198,99 +48579,51 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "ZTCoreKit.ZTBatteryLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTBatteryLevel", + "printedName": "ZTCoreKit.ZTBatteryLevel", + "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivg", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "usr": "s:9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12batterylevelAA14ZTBatteryLevelVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType", - "mangledName": "$s9ZTCoreKit11DFUUuidTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUUuid", - "printedName": "DFUUuid", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "lastActivityDate", + "printedName": "lastActivityDate", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)uuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -62300,48 +48633,50 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)uuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16lastActivityDate10Foundation0F0Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "generalState", + "printedName": "generalState", "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)type", - "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -62351,177 +48686,127 @@ "children": [ { "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)type", - "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(withUUID:forType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" }, { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageGeneralState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageGeneralState", + "printedName": "ZTCoreKit.ZTMessageGeneralState", + "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "DFUUuidType", - "printedName": "ZTCoreKit.DFUUuidType", - "usr": "c:@M@ZTCoreKit@E@DFUUuidType" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)initWithUUID:forType:", - "mangledName": "$s9ZTCoreKit7DFUUuidC8withUUID7forTypeACSo6CBUUIDC_AA0cG0Otcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithUUID:forType:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12generalStateAA016ZTMessageGeneralE0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)init", - "mangledName": "$s9ZTCoreKit7DFUUuidCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid", - "mangledName": "$s9ZTCoreKit7DFUUuidC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + ] }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUUuidHelper", - "printedName": "DFUUuidHelper", - "children": [ { "kind": "Var", - "name": "legacyDFUService", - "printedName": "legacyDFUService", + "name": "softwareInfo", + "printedName": "softwareInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62533,47 +48818,140 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12softwareInfoAA17ZTMessageSoftwareVSg5right_AG4lefttvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "legacyDFUControlPoint", - "printedName": "legacyDFUControlPoint", + "name": "lowSoftwareInfo", + "printedName": "lowSoftwareInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62582,44 +48960,47 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15lowSoftwareInfoSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "legacyDFUPacket", - "printedName": "legacyDFUPacket", + "name": "activityInfo", + "printedName": "activityInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62631,44 +49012,127 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12activityInfoAA17ZTMessageActivityVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "legacyDFUVersion", - "printedName": "legacyDFUVersion", + "name": "bootloaderInfo", + "printedName": "bootloaderInfo", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUVersion", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62680,44 +49144,148 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUVersion", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14bootloaderInfoAA019ZTMessageBootloaderE0VSg5right_AG4lefttvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUService", - "printedName": "secureDFUService", + "name": "inactivityTimeout", + "printedName": "inactivityTimeout", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62729,44 +49297,98 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17inactivityTimeoutAA019ZTMessageInactivityE0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUControlPoint", - "printedName": "secureDFUControlPoint", + "name": "actualState", + "printedName": "actualState", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62778,44 +49400,82 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUControlPoint", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0Ovs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11actualStateAA0c6ActualE0OvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secureDFUPacket", - "printedName": "secureDFUPacket", + "name": "previousState", + "printedName": "previousState", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], "hasStorage": true, @@ -62827,47 +49487,82 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUPacket", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0Ovs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13previousStateAA0c6ActualE0OvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "buttonlessExperimentalService", - "printedName": "buttonlessExperimentalService", + "name": "hasInitialUpdate", + "printedName": "hasInitialUpdate", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -62876,46 +49571,80 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalService", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16hasInitialUpdateSbvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "buttonlessExperimentalCharacteristic", - "printedName": "buttonlessExperimentalCharacteristic", + "name": "onStateChanged", + "printedName": "onStateChanged", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalCharacteristic", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -62925,18 +49654,55 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalCharacteristic", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC14onStateChangedAA8ZTSignalCyACSg_s5Error_pSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } @@ -62944,27 +49710,49 @@ }, { "kind": "Var", - "name": "buttonlessWithoutBonds", - "printedName": "buttonlessWithoutBonds", + "name": "onRSSIChanged", + "printedName": "onRSSIChanged", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithoutBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -62974,18 +49762,39 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithoutBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onRSSIChangedAA8ZTSignalCyAC_SitGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } @@ -62993,27 +49802,49 @@ }, { "kind": "Var", - "name": "buttonlessWithBonds", - "printedName": "buttonlessWithBonds", + "name": "onServiceDiscovered", + "printedName": "onServiceDiscovered", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvp", + "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "Final", "HasStorage", "AccessControl", - "SetterAccess", - "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63023,196 +49854,89 @@ "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithBonds", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvg", + "usr": "s:9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC19onServiceDiscoveredAA8ZTSignalCyAC_AA9ZTServiceCtGvg", "moduleName": "ZTCoreKit", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)init", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(customUuids:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.DFUUuid]", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuid", - "printedName": "ZTCoreKit.DFUUuid", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)initWithCustomUuids:", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC11customUuidsACSayAA0C0CG_tcfc", - "moduleName": "ZTCoreKit", - "objc_name": "initWithCustomUuids:", - "declAttributes": [ - "Convenience", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "init_kind": "Convenience" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper", - "mangledName": "$s9ZTCoreKit13DFUUuidHelperC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTUser", - "printedName": "ZTUser", - "children": [ { "kind": "Var", - "name": "attributes", - "printedName": "attributes", + "name": "onServiceFeaturesIdentified", + "printedName": "onServiceFeaturesIdentified", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvp", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63222,117 +49946,157 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + } + ] } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvg", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onServiceFeaturesIdentifiedAA8ZTSignalCyAC_AA9ZTServiceCtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCharacteristicDiscovered", + "printedName": "onCharacteristicDiscovered", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvs", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC10attributesSDySSypGvM", - "mangledName": "$s9ZTCoreKit6ZTUserC10attributesSDySSypGvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "onAllCharacteristicsDiscovered", + "printedName": "onAllCharacteristicsDiscovered", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63342,107 +50106,61 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onAllCharacteristicsDiscoveredAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC2idSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "organizationId", - "printedName": "organizationId", + "name": "onAllCharacteristicsRead", + "printedName": "onAllCharacteristicsRead", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63452,107 +50170,152 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onAllCharacteristicsReadAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCharacteristicValueUpdated", + "printedName": "onCharacteristicValueUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC14organizationIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC14organizationIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueUpdatedAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appId", - "printedName": "appId", + "name": "onCharacteristicValueWritten", + "printedName": "onCharacteristicValueWritten", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63562,107 +50325,188 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC28onCharacteristicValueWrittenAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCommandCharacteristicDiscovered", + "printedName": "onCommandCharacteristicDiscovered", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTCharacteristic?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCharacteristic?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC5appIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC5appIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC33onCommandCharacteristicDiscoveredAA8ZTSignalCyAA16ZTCharacteristicCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onNotifyValueUpdated", + "printedName": "onNotifyValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63672,107 +50516,97 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC20onNotifyValueUpdatedAA8ZTSignalCyAA12ZTNotifyDataO7GroupIDO_s5UInt8VSayALGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9createdAtSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC9createdAtSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "onBatteryValueUpdated", + "printedName": "onBatteryValueUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63782,107 +50616,62 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<()>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvs", + "usr": "s:9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onBatteryValueUpdatedAA8ZTSignalCyytGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC9updatedAtSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC9updatedAtSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "userId", - "printedName": "userId", + "name": "onGeneralStateUpdated", + "printedName": "onGeneralStateUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvp", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -63892,210 +50681,145 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvg", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onGeneralStateUpdatedAA8ZTSignalCyAA0c6ActualF0OGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onActivityInfoUpdated", + "printedName": "onActivityInfoUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvs", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivity?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit6ZTUserC6userIdSSSgvM", - "mangledName": "$s9ZTCoreKit6ZTUserC6userIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onActivityInfoUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Var", + "name": "onSoftwareUpdated", + "printedName": "onSoftwareUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUser?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "ZTUser", - "printedName": "ZTCoreKit.ZTUser", - "usr": "s:9ZTCoreKit6ZTUserC" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit6ZTUserC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Required", - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit6ZTUserC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit6ZTUserC", - "mangledName": "$s9ZTCoreKit6ZTUserC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTSerialNumberCharacteristic", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", "Final", @@ -64103,6 +50827,7 @@ "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64112,105 +50837,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageSoftware?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17onSoftwareUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, "declAttributes": [ "Final" ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "onTimeUpdated", + "printedName": "onTimeUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageTime?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "SetterAccess", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64220,149 +50919,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageTime?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC13onTimeUpdatedAA8ZTSignalCyAA09ZTMessageE0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "isOpen": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSerialNumberCharacteristic", - "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "declAttributes": [ - "Required" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC", - "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTTextCharacteristic", - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAchievement", - "printedName": "ZTAchievement", - "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "onActivityMetadataUpdated", + "printedName": "onActivityMetadataUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64372,107 +51001,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC25onActivityMetadataUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onRawDataHeaderUpdated", + "printedName": "onRawDataHeaderUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC2idSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC2idSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onRawDataHeaderUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "onRawDataFrameUpdated", + "printedName": "onRawDataFrameUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64482,107 +51165,153 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC21onRawDataFrameUpdatedAA8ZTSignalCy10Foundation0F0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onInactivityTimeoutUpdated", + "printedName": "onInactivityTimeoutUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageInactivityTimeout", + "printedName": "ZTCoreKit.ZTMessageInactivityTimeout", + "usr": "s:9ZTCoreKit26ZTMessageInactivityTimeoutV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4typeSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4typeSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onInactivityTimeoutUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "name": "onFirmwareError", + "printedName": "onFirmwareError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64592,107 +51321,208 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC15onFirmwareErrorAA8ZTSignalCyAA7ZTErrorO5EnumsC0eF0OGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyCommonGroupUpdated", + "printedName": "onNotifyCommonGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC10activityIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyCommonGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "code", - "printedName": "code", + "name": "onNotifyWarmGroupUpdated", + "printedName": "onNotifyWarmGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64702,107 +51532,237 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyWarmGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_10Foundation0K0VSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyRunningGroupUpdated", + "printedName": "onNotifyRunningGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4codeSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4codeSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyRunningGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "appuserId", - "printedName": "appuserId", + "name": "onNotifyCyclingGroupUpdated", + "printedName": "onNotifyCyclingGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64812,120 +51772,245 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyCyclingGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifySafetyGroupUpdated", + "printedName": "onNotifySafetyGroupUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9appuserIdSSSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifySafetyGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "onNotifyGenericGroupUpdated", + "printedName": "onNotifyGenericGroupUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -64935,134 +52020,182 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC27onNotifyGenericGroupUpdatedAA8ZTSignalCyAA12ZTNotifyDataO0F9MessageIdO_Says5UInt8VGSgtGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onCommandUpdated", + "printedName": "onCommandUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "ZTCoreKit.ZTCommandResponse?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC4dataSDySSypGSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16onCommandUpdatedAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "onCommandAck", + "printedName": "onCommandAck", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65072,108 +52205,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTCommandResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCommandResponse", + "printedName": "ZTCoreKit.ZTCommandResponse", + "usr": "s:9ZTCoreKit17ZTCommandResponseC" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onIndicateValueUpdated", + "printedName": "onIndicateValueUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int64?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8durations5Int64VSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC22onIndicateValueUpdatedAA8ZTSignalCy10Foundation4DataVSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "calories", - "printedName": "calories", + "name": "onBootloaderInfoUpdated", + "printedName": "onBootloaderInfoUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65183,107 +52369,161 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23onBootloaderInfoUpdatedAA8ZTSignalCyAA09ZTMessageeF0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyChunkSendStatusUpdated", + "printedName": "onNotifyChunkSendStatusUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC8caloriesSdSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC30onNotifyChunkSendStatusUpdatedAA8ZTSignalCyAA09ZTMessagefgH0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onNotifyChunkConfigUpdated", + "printedName": "onNotifyChunkConfigUpdated", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -65293,107 +52533,142 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkConfig", + "printedName": "ZTCoreKit.ZTMessageChunkConfig", + "usr": "s:9ZTCoreKit20ZTMessageChunkConfigV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC26onNotifyChunkConfigUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "onNotifyChunkDataUpdated", + "printedName": "onNotifyChunkDataUpdated", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTMessageChunkData?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:9ZTCoreKit8ZTSignalC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSignal", + "printedName": "ZTCoreKit.ZTSignal", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkData?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:9ZTCoreKit8ZTSignalC" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit13ZTAchievementC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC24onNotifyChunkDataUpdatedAA8ZTSignalCyAA09ZTMessagefG0VSgGvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(peripheral:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAchievement?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAchievement", - "printedName": "ZTCoreKit.ZTAchievement", - "usr": "s:9ZTCoreKit13ZTAchievementC" - } - ], - "usr": "s:Sq" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit13ZTAchievementC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheralACSo12CBPeripheralC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -65403,134 +52678,88 @@ "init_kind": "Designated" }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(cbPeripheral:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12cbPeripheralAcA22ZTCBPeripheralProtocol_p_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit13ZTAchievementC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit8ZTDeviceC7connectyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC7connectyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTAchievementC", - "mangledName": "$s9ZTCoreKit13ZTAchievementC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTWebSocket", - "printedName": "ZTWebSocket", - "declKind": "Class", - "usr": "s:9ZTCoreKit11ZTWebSocketC", - "mangledName": "$s9ZTCoreKit11ZTWebSocketC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivity", - "printedName": "ZTActivity", - "children": [ - { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC10disconnectyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10disconnectyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeValue", + "printedName": "observeValue(forKeyPath:of:change:context:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -65539,149 +52768,96 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "NSKeyValueChangeKey", + "printedName": "Foundation.NSKeyValueChangeKey", + "usr": "c:@T@NSKeyValueChangeKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2idSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityIdentifier", - "printedName": "activityIdentifier", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)observeValueForKeyPath:ofObject:change:context:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeye6ChangeG0aypGSgSvSgtF", "moduleName": "ZTCoreKit", + "overriding": true, + "objc_name": "observeValueForKeyPath:ofObject:change:context:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", + "Override", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "service", + "printedName": "service(_:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC18activityIdentifierSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "appId", - "printedName": "appId", - "children": [ { "kind": "TypeNominal", "name": "Optional", @@ -65694,52 +52870,36 @@ "usr": "s:SS" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC7serviceyxSgSSSgAA9ZTServiceCRbzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTService>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkBattery", + "printedName": "checkBattery(completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", @@ -65748,1060 +52908,880 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Tuple", + "printedName": "(Swift.UInt8, Swift.UInt8, Swift.Bool)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5appIdSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12checkBattery10completionyys5UInt8V_AGSbtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "kind": "Function", + "name": "readGeneralState", + "printedName": "readGeneralState()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC16readGeneralStateyyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice(im)init", + "mangledName": "$s9ZTCoreKit8ZTDeviceCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didWriteValueFor:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBDescriptor", + "printedName": "CoreBluetooth.CBDescriptor", + "usr": "c:objc(cs)CBDescriptor" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12activityTypeSSvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForDescriptor:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didWriteValueForDescriptor:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "startDate", - "printedName": "startDate", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverServices:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverServices:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_19didDiscoverServicesySo12CBPeripheralC_s5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverServices:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverCharacteristicsFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverCharacteristicsForService:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didDiscoverCharacteristicsFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverCharacteristicsForService:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "endDate", - "printedName": "endDate", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateValueFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateValueForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didWriteValueFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didWriteValueForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didWriteValueForCharacteristic:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "startTimestamp", - "printedName": "startTimestamp", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateNotificationStateFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int64?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateNotificationStateForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_29didUpdateNotificationStateFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateNotificationStateForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didReadRSSI:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didReadRSSI:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_11didReadRSSI5errorySo12CBPeripheralC_So8NSNumberCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didReadRSSI:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "endTimestamp", - "printedName": "endTimestamp", + "kind": "Function", + "name": "peripheralDidUpdateName", + "printedName": "peripheralDidUpdateName(_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralDidUpdateName:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23peripheralDidUpdateNameyySo12CBPeripheralCF", "moduleName": "ZTCoreKit", + "objc_name": "peripheralDidUpdateName:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didModifyServices:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didModifyServices:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didModifyServicesySo12CBPeripheralC_SaySo9CBServiceCGtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didModifyServices:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "tz", - "printedName": "tz", + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverIncludedServicesFor:error:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverIncludedServicesForService:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_30didDiscoverIncludedServicesFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverIncludedServicesForService:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didDiscoverDescriptorsFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC2tzSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didDiscoverDescriptorsForCharacteristic:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_25didDiscoverDescriptorsFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didDiscoverDescriptorsForCharacteristic:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didUpdateValueFor:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CBDescriptor", + "printedName": "CoreBluetooth.CBDescriptor", + "usr": "c:objc(cs)CBDescriptor" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC6statusSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didUpdateValueForDescriptor:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So12CBDescriptorCs5Error_pSgtF", + "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didUpdateValueForDescriptor:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "state", - "printedName": "state", + "kind": "Function", + "name": "peripheralIsReady", + "printedName": "peripheralIsReady(toSendWriteWithoutResponse:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheralIsReadyToSendWriteWithoutResponse:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC17peripheralIsReady26toSendWriteWithoutResponseySo12CBPeripheralC_tF", "moduleName": "ZTCoreKit", + "objc_name": "peripheralIsReadyToSendWriteWithoutResponse:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "peripheral", + "printedName": "peripheral(_:didOpen:error:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreBluetooth.CBL2CAPChannel?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CBL2CAPChannel", + "printedName": "CoreBluetooth.CBL2CAPChannel", + "usr": "c:objc(cs)CBL2CAPChannel" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC5stateAA19ZTDeviceActualStateOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetsIds", - "printedName": "packetsIds", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvp", + "declKind": "Func", + "usr": "c:@CM@ZTCoreKit@objc(cs)ZTDevice(im)peripheral:didOpenL2CAPChannel:error:", + "mangledName": "$s9ZTCoreKit8ZTDeviceC10peripheral_7didOpen5errorySo12CBPeripheralC_So14CBL2CAPChannelCSgs5Error_pSgtF", "moduleName": "ZTCoreKit", + "objc_name": "peripheral:didOpenL2CAPChannel:error:", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Dynamic", + "ObjC", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommand", + "printedName": "sendCommand(_:parameters:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.UInt16]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10packetsIdsSays6UInt16VGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cachedPackets", - "printedName": "cachedPackets", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + ] } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC11sendCommand_10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgySbcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommandWithAck", + "printedName": "sendCommandWithAck(command:parameters:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -66810,109 +53790,75 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13cachedPacketsSayAA13ZTSegmentDataCGvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "metaData", - "printedName": "metaData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC18sendCommandWithAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendCommandWithRightAck", + "printedName": "sendCommandWithRightAck(command:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCommand", + "printedName": "ZTCoreKit.ZTCommand", + "usr": "s:9ZTCoreKit9ZTCommandO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -66922,76 +53868,96 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit8ZTDeviceC23sendCommandWithRightAck7command10parameters10completionyAA9ZTCommandO_Says5UInt8VGSgys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit8ZTDeviceC2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "stopReason", - "printedName": "stopReason", + "name": "isLowBattery", + "printedName": "isLowBattery", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", + "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -67001,95 +53967,135 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "usr": "s:9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", + "mangledName": "$s9ZTCoreKit8ZTDeviceC12isLowBatterySbSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice", + "mangledName": "$s9ZTCoreKit8ZTDeviceC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTIndicateCharacteristic", + "printedName": "ZTIndicateCharacteristic", + "children": [ { "kind": "Var", - "name": "isRawDataMode", - "printedName": "isRawDataMode", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -67103,16 +54109,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -67127,16 +54137,20 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvsZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -67151,33 +54165,46 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isRawDataModeSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvM", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4uuidSSvMZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "isAutomatic", - "printedName": "isAutomatic", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvp", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", + "SetterAccess", "AccessControl", "RawDocComment" ], @@ -67190,600 +54217,1530 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvg", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTIndicateCharacteristic", + "printedName": "ZTCoreKit.ZTIndicateCharacteristic", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11isAutomaticSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "forceStop", - "printedName": "forceStop", + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", + "Override", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTIndicateCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTIndicateCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "OperatorDecl", + "name": "<<-", + "printedName": "<<-", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix", + "RawDocComment" + ] + }, + { + "kind": "OperatorDecl", + "name": "->>", + "printedName": "->>", + "declKind": "InfixOperator", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Infix", + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyx_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9forceStopSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Var", - "name": "isInterrupted", - "printedName": "isInterrupted", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyxSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyxSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC13isInterruptedSbvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Var", - "name": "firstChunkId", - "printedName": "firstChunkId", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" }, { - "kind": "Var", - "name": "lastChunkId", - "printedName": "lastChunkId", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySayxGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySayxGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" }, { - "kind": "Var", - "name": "chunkCount", - "printedName": "chunkCount", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGG_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySayxGGSgz_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySayxGGSg_AA5ZTMapCtAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ { - "kind": "Accessor", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShyxGz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShyxG_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", + "children": [ + { + "kind": "TypeNominal", "name": "Set", - "printedName": "Set()", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + "usr": "s:Sh" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShyxGSgz_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "anchorTimestamp", - "printedName": "anchorTimestamp", + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShyxGSg_AA5ZTMapCtSHRzAA14ZTBaseMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageSoftware", + "printedName": "ZTMessageSoftware", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -67792,109 +55749,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customActivityStartTimestamp", - "printedName": "customActivityStartTimestamp", + "name": "baseMajor", + "printedName": "baseMajor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -67903,109 +55789,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "customActivityFirstChunkId", - "printedName": "customActivityFirstChunkId", + "name": "baseMinor", + "printedName": "baseMinor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68014,109 +55829,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds6UInt16VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", + "name": "baseBuild", + "printedName": "baseBuild", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68125,109 +55869,38 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC9fwVersionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shoesSerial", - "printedName": "shoesSerial", + "name": "app", + "printedName": "app", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -68236,316 +55909,179 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC11shoesSerialSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTActivityCACycfc", - "mangledName": "$s9ZTCoreKit10ZTActivityCACycfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "save", - "printedName": "save()", + "kind": "Var", + "name": "appMajor", + "printedName": "appMajor", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC4saveyyF", - "mangledName": "$s9ZTCoreKit10ZTActivityC4saveyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(firstChunkId:lastChunkId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appMinor", + "printedName": "appMinor", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA13ZTSegmentDataCGs6UInt16VSg_ALtF", - "mangledName": "$s9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA13ZTSegmentDataCGs6UInt16VSg_ALtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "lastSavedChunkId", - "printedName": "lastSavedChunkId(startId:lastId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s6UInt16VAHSg_AItF", - "mangledName": "$s9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s6UInt16VAHSg_AItF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addToCache", - "printedName": "addToCache(_:)", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC10addToCacheyyAA13ZTSegmentDataCF", - "mangledName": "$s9ZTCoreKit10ZTActivityC10addToCacheyyAA13ZTSegmentDataCF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "uploadCache", - "printedName": "uploadCache(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", - "mangledName": "$s9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "saveCachedPackets", - "printedName": "saveCachedPackets()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", - "mangledName": "$s9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Constructor", @@ -68554,9 +56090,9 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" + "name": "ZTMessageSoftware", + "printedName": "ZTCoreKit.ZTMessageSoftware", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" }, { "kind": "TypeNominal", @@ -68566,13 +56102,10 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTActivityC4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit10ZTActivityC4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Required" - ], "throwing": true, "init_kind": "Designated" }, @@ -68594,67 +56127,30 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTActivityC6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit10ZTActivityC6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, - "isOpen": true, "throwing": true, "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvp", - "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvg", - "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTActivityC", - "mangledName": "$s9ZTCoreKit10ZTActivityC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTMessageSoftwareV", + "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, { "kind": "Conformance", "name": "Decodable", @@ -68683,30 +56179,68 @@ }, { "kind": "TypeDecl", - "name": "ZTDfuDelegate", - "printedName": "ZTDfuDelegate", + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTSerialNumberCharacteristic", "children": [ { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(firmwareDownloaded:version:)", + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -68714,238 +56248,218 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(didFinish:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(didFail:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(leftDidFinish:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, + "overriding": true, + "isOpen": true, + "declAttributes": [ + "AccessControl", + "Override" + ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "dfuDelegate", - "printedName": "dfuDelegate(rightDidFinish:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSerialNumberCharacteristic", + "printedName": "ZTCoreKit.ZTSerialNumberCharacteristic", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP", - "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP", + "declKind": "Class", + "usr": "s:9ZTCoreKit28ZTSerialNumberCharacteristicC", + "mangledName": "$s9ZTCoreKit28ZTSerialNumberCharacteristicC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" ] }, { "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "DFUServiceInitiator", - "printedName": "DFUServiceInitiator", + "name": "ZTActivityCachable", + "printedName": "ZTActivityCachable", "children": [ { "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)delegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -68954,27 +56468,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceDelegate", - "printedName": "any ZTCoreKit.DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)delegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -68989,27 +56495,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.DFUServiceDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceDelegate", - "printedName": "any ZTCoreKit.DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDelegate:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69024,39 +56522,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8delegateAA0C8Delegate_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP2idSSvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP2idSSvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "progressDelegate", - "printedName": "progressDelegate", + "name": "packets", + "printedName": "packets", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)progressDelegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -69066,26 +56568,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", + "printedName": "Foundation.NSMutableOrderedSet?", "children": [ { "kind": "TypeNominal", - "name": "DFUProgressDelegate", - "printedName": "any ZTCoreKit.DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)progressDelegate", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -69101,26 +56603,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.DFUProgressDelegate)?", + "printedName": "Foundation.NSMutableOrderedSet?", "children": [ { "kind": "TypeNominal", - "name": "DFUProgressDelegate", - "printedName": "any ZTCoreKit.DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate" + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setProgressDelegate:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69135,39 +56637,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC16progressDelegateAA011DFUProgressF0_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP7packetsSo19NSMutableOrderedSetCSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "logger", - "printedName": "logger", + "name": "startDate", + "printedName": "startDate", "children": [ { "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.LoggerDelegate)?" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)logger", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvp", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -69177,26 +56683,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.LoggerDelegate)?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "LoggerDelegate", - "printedName": "any ZTCoreKit.LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)logger", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvg", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -69212,26 +56718,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.LoggerDelegate)?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "LoggerDelegate", - "printedName": "any ZTCoreKit.LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setLogger:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvs", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -69246,37 +56752,454 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC6loggerAA14LoggerDelegate_pSgvM", + "usr": "s:9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP9startDate10Foundation0F0VSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "upload", + "printedName": "upload(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_1_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTActivityCachableP6uploadyySayqd__GYaKAA08ZTPacketD0Rd__lF", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP6uploadyySayqd__GYaKAA08ZTPacketD0Rd__lF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable, τ_1_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTActivityCachablePAAE2eeoiySbx_xtFZ", + "mangledName": "$s9ZTCoreKit18ZTActivityCachablePAAE2eeoiySbx_xtFZ", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTActivityCachable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit18ZTActivityCachableP", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : CoreData.NSManagedObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LogLevel", + "printedName": "LogLevel", + "children": [ { "kind": "Var", - "name": "peripheralSelector", - "printedName": "peripheralSelector", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelDebug", + "mangledName": "$s9ZTCoreKit8LogLevelO5debugyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "verbose", + "printedName": "verbose", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelVerbose", + "mangledName": "$s9ZTCoreKit8LogLevelO7verboseyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelInfo", + "mangledName": "$s9ZTCoreKit8LogLevelO4infoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "application", + "printedName": "application", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelApplication", + "mangledName": "$s9ZTCoreKit8LogLevelO11applicationyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "warning", + "printedName": "warning", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelWarning", + "mangledName": "$s9ZTCoreKit8LogLevelO7warningyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.LogLevel.Type) -> ZTCoreKit.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@LogLevel@LogLevelError", + "mangledName": "$s9ZTCoreKit8LogLevelO5erroryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Function", + "name": "name", + "printedName": "name()", "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)peripheralSelector", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8LogLevelO4nameSSyF", + "mangledName": "$s9ZTCoreKit8LogLevelO4nameSSyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.LogLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueACSgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -69285,90 +57208,399 @@ "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)peripheralSelector", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvg", + "usr": "s:9ZTCoreKit8LogLevelO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8LogLevelO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@LogLevel", + "mangledName": "$s9ZTCoreKit8LogLevelO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoggerDelegate", + "printedName": "LoggerDelegate", + "children": [ + { + "kind": "Function", + "name": "logWith", + "printedName": "logWith(_:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "ZTCoreKit.LogLevel", + "usr": "c:@M@ZTCoreKit@E@LogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate(im)logWith:message:", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP7logWith_7messageyAA8LogLevelO_SStF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.LoggerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", + "mangledName": "$s9ZTCoreKit14LoggerDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMappingType", + "printedName": "ZTMappingType", + "children": [ + { + "kind": "Var", + "name": "fromJSON", + "printedName": "fromJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" }, { "kind": "TypeNominal", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "any ZTCoreKit.DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMappingType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPeripheralSelector:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "toJSON", + "printedName": "toJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMappingType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" }, + { + "kind": "TypeNominal", + "name": "ZTMappingType", + "printedName": "ZTCoreKit.ZTMappingType", + "usr": "s:9ZTCoreKit13ZTMappingTypeO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivp", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC18peripheralSelectorAA013DFUPeripheralF8Delegate_pvM", + "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivg", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTMappingTypeO", + "mangledName": "$s9ZTCoreKit13ZTMappingTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMapper", + "printedName": "ZTMapper", + "children": [ { "kind": "Var", - "name": "packetReceiptNotificationParameter", - "printedName": "packetReceiptNotificationParameter", + "name": "context", + "printedName": "context", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)packetReceiptNotificationParameter", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvp", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -69379,18 +57611,28 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)packetReceiptNotificationParameter", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvg", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -69406,18 +57648,28 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setPacketReceiptNotificationParameter:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16Vvs", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -69433,18 +57685,23 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC34packetReceiptNotificationParameters6UInt16VvM", + "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", + "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "forceDfu", - "printedName": "forceDfu", + "name": "shouldIncludeNilValues", + "printedName": "shouldIncludeNilValues", "children": [ { "kind": "TypeNominal", @@ -69454,15 +57711,14 @@ } ], "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvp", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -69479,12 +57735,14 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvg", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -69506,12 +57764,14 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvs", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -69527,878 +57787,1278 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC8forceDfuSbvM", + "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", + "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "forceScanningForNewAddressInLegacyDfu", - "printedName": "forceScanningForNewAddressInLegacyDfu", + "kind": "Constructor", + "name": "init", + "printedName": "init(context:shouldIncludeNilValues:)", "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapper", + "printedName": "ZTCoreKit.ZTMapper<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit8ZTMapperC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", + "hasDefaultArg": true, "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)forceScanningForNewAddressInLegacyDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", + "mangledName": "$s9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:toObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)forceScanningForNewAddressInLegacyDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:toObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:toObject:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setForceScanningForNewAddressInLegacyDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC37forceScanningForNewAddressInLegacyDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "connectionTimeout", - "printedName": "connectionTimeout", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)connectionTimeout", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)connectionTimeout", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setConnectionTimeout:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC17connectionTimeoutSdvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "dataObjectPreparationDelay", - "printedName": "dataObjectPreparationDelay", + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "[τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)dataObjectPreparationDelay", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)dataObjectPreparationDelay", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDataObjectPreparationDelay:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sa" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26dataObjectPreparationDelaySdvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "alternativeAdvertisingNameEnabled", - "printedName": "alternativeAdvertisingNameEnabled", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingNameEnabled", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingNameEnabled", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } ], - "accessorKind": "get" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingNameEnabled:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:toDictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC33alternativeAdvertisingNameEnabledSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "alternativeAdvertisingName", - "printedName": "alternativeAdvertisingName", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:toDictionary:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)alternativeAdvertisingName", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)alternativeAdvertisingName", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0]]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setAlternativeAdvertisingName:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC26alternativeAdvertisingNameSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "printedName": "enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArrayOfArrays", + "printedName": "mapArrayOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0]]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Array", + "printedName": "[[τ_0_0]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)enableUnsafeExperimentalButtonlessServiceInSecureDfu", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setEnableUnsafeExperimentalButtonlessServiceInSecureDfu:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONStringIntoDictionary", + "printedName": "parseJSONStringIntoDictionary(JSONString:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC52enableUnsafeExperimentalButtonlessServiceInSecureDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "uuidHelper", - "printedName": "uuidHelper", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)uuidHelper", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)uuidHelper", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONString", + "printedName": "parseJSONString(JSONString:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUUuidHelper", - "printedName": "ZTCoreKit.DFUUuidHelper", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setUuidHelper:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0Cvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC10uuidHelperAA07DFUUuidF0CvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disableResume", - "printedName": "disableResume", - "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(py)disableResume", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSON:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)disableResume", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)setDisableResume:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC13disableResumeSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SD" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(centralManager:target:)", + "kind": "Function", + "name": "map", + "printedName": "map(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithCentralManager:target:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC14centralManager6targetACSo09CBCentralF0C_So12CBPeripheralCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", "moduleName": "ZTCoreKit", - "deprecated": true, - "objc_name": "initWithCentralManager:target:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" + "Final" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(queue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:)", + "kind": "Function", + "name": "map", + "printedName": "map(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" - }, - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "hasDefaultArg": true, - "usr": "c:objc(cs)OS_dispatch_queue" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", @@ -70420,667 +59080,484 @@ "usr": "s:SD" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5queue13delegateQueue08progressG006loggerG021centralManagerOptionsACSo012OS_dispatch_E0CSg_A3JSDySSypGSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", "moduleName": "ZTCoreKit", - "objc_name": "initWithQueue:delegateQueue:progressQueue:loggerQueue:centralManagerOptions:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", + "Final", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "with", - "printedName": "with(firmware:)", + "name": "mapArray", + "printedName": "mapArray(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "DFUFirmware", - "printedName": "ZTCoreKit.DFUFirmware", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUFirmware" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)withFirmware:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC4with8firmwareAcA11DFUFirmwareC_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", "moduleName": "ZTCoreKit", - "objc_name": "withFirmware:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start()", + "name": "mapArray", + "printedName": "mapArray(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)start", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5startAA0C10ControllerCSgyF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", "moduleName": "ZTCoreKit", - "deprecated": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start(target:)", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONString:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTarget:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start6targetAA0C10ControllerCSgSo12CBPeripheralC_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", "moduleName": "ZTCoreKit", - "objc_name": "startWithTarget:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", + "Final", "RawDocComment" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "start", - "printedName": "start(targetWithIdentifier:)", + "name": "mapDictionary", + "printedName": "mapDictionary(JSONObject:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUServiceController?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUServiceController", - "printedName": "ZTCoreKit.DFUServiceController", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceController" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)startWithTargetWithIdentifier:", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC5start20targetWithIdentifierAA0C10ControllerCSg10Foundation4UUIDV_tF", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", "moduleName": "ZTCoreKit", - "objc_name": "startWithTargetWithIdentifier:", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" + "Final" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUServiceInitiator", - "printedName": "ZTCoreKit.DFUServiceInitiator", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator(im)init", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorCACycfc", - "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUServiceInitiator", - "mangledName": "$s9ZTCoreKit19DFUServiceInitiatorC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTPlistStorage", - "printedName": "ZTPlistStorage", - "children": [ - { - "kind": "Var", - "name": "plist", - "printedName": "plist", + "kind": "Function", + "name": "mapDictionary", + "printedName": "mapDictionary(JSON:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvpZ", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvpZ", - "moduleName": "ZTCoreKit", - "static": true, - "protocolReq": true, - "declAttributes": [ - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvgZ", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP5plistAA0C0CvgZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPlistStorage>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit14ZTPlistStorageP", - "mangledName": "$s9ZTCoreKit14ZTPlistStorageP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBatteryLevel", - "printedName": "ZTBatteryLevel", - "children": [ - { - "kind": "Var", - "name": "rawData", - "printedName": "rawData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:SD" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV7rawData10Foundation0F0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", + "Final", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapDictionaryOfArrays", + "printedName": "mapDictionaryOfArrays(JSON:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV5rights5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:SD" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "Final" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArrayOfArrays", + "printedName": "mapArrayOfArrays(JSONObject:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sa" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4lefts5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "min", - "printedName": "min", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", + "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl", + "Final", "RawDocComment" ], - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "map", + "printedName": "map(JSONfile:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV3mins5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "String", @@ -71088,724 +59565,852 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mapArray", + "printedName": "mapArray(JSONfile:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelVACycfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelVACycfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4dataAC10Foundation4DataV_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", + "mangledName": "$s9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBatteryLevel", - "printedName": "ZTCoreKit.ZTBatteryLevel", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "toJSONArray", + "printedName": "toJSONArray(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit14ZTBatteryLevelV", - "mangledName": "$s9ZTCoreKit14ZTBatteryLevelV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUError", - "printedName": "DFUError", - "children": [ - { - "kind": "Var", - "name": "remoteLegacyDFUSuccess", - "printedName": "remoteLegacyDFUSuccess", + "kind": "Function", + "name": "toJSONDictionary", + "printedName": "toJSONDictionary(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteLegacyDFUSuccessyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 0 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUInvalidState", - "printedName": "remoteLegacyDFUInvalidState", + "kind": "Function", + "name": "toJSONDictionaryOfArrays", + "printedName": "toJSONDictionaryOfArrays(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [[Swift.String : Any]]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUInvalidState", - "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUInvalidStateyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "remoteLegacyDFUNotSupported", - "printedName": "remoteLegacyDFUNotSupported", - "children": [ + ], + "usr": "s:SD" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:SD" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUNotSupportedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", + "mangledName": "$s9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 2 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUDataExceedsLimit", - "printedName": "remoteLegacyDFUDataExceedsLimit", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUDataExceedsLimit", - "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteLegacyDFUDataExceedsLimityA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 3 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUCrcError", - "printedName": "remoteLegacyDFUCrcError", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUCrcError", - "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteLegacyDFUCrcErroryA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 4 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteLegacyDFUOperationFailed", - "printedName": "remoteLegacyDFUOperationFailed", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteLegacyDFUOperationFailedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 5 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUSuccess", - "printedName": "remoteSecureDFUSuccess", + "kind": "Function", + "name": "toJSONData", + "printedName": "toJSONData(_:options:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "WritingOptions", + "printedName": "Foundation.JSONSerialization.WritingOptions", + "usr": "c:@E@NSJSONWritingOptions" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteSecureDFUSuccessyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", + "mangledName": "$s9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 6 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUOpCodeNotSupported", - "printedName": "remoteSecureDFUOpCodeNotSupported", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONString:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteSecureDFUOpCodeNotSupportedyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 7 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInvalidParameter", - "printedName": "remoteSecureDFUInvalidParameter", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONObject:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0>?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidParameter", - "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteSecureDFUInvalidParameteryA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 8 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInsufficientResources", - "printedName": "remoteSecureDFUInsufficientResources", + "kind": "Function", + "name": "mapSet", + "printedName": "mapSet(JSONArray:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInsufficientResources", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUInsufficientResourcesyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 9 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUInvalidObject", - "printedName": "remoteSecureDFUInvalidObject", + "kind": "Function", + "name": "toJSONSet", + "printedName": "toJSONSet(_:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidObject", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUInvalidObjectyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 10 + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteSecureDFUSignatureMismatch", - "printedName": "remoteSecureDFUSignatureMismatch", + "kind": "Function", + "name": "toJSONString", + "printedName": "toJSONString(_:prettyPrint:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSignatureMismatch", - "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteSecureDFUSignatureMismatchyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", + "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment", - "ObjC" + "Final", + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 11 - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTMapperC", + "mangledName": "$s9ZTCoreKit8ZTMapperC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerComponent", + "printedName": "ZTLoggerComponent", + "children": [ { "kind": "Var", - "name": "remoteSecureDFUUnsupportedType", - "printedName": "remoteSecureDFUUnsupportedType", + "name": "api", + "printedName": "api", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71813,41 +60418,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUUnsupportedType", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUUnsupportedTypeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 12 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUOperationNotPermitted", - "printedName": "remoteSecureDFUOperationNotPermitted", + "name": "app", + "printedName": "app", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71855,41 +60455,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationNotPermitted", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUOperationNotPermittedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 13 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUOperationFailed", - "printedName": "remoteSecureDFUOperationFailed", + "name": "sdk", + "printedName": "sdk", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71897,41 +60492,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 14 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteSecureDFUExtendedError", - "printedName": "remoteSecureDFUExtendedError", + "name": "firmware", + "printedName": "firmware", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerComponent.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } ] } @@ -71939,167 +60529,161 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUExtendedError", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUExtendedErroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 15 + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongCommandFormat", - "printedName": "remoteExtendedErrorWrongCommandFormat", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLoggerComponent?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongCommandFormat", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongCommandFormatyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 16 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteExtendedErrorUnknownCommand", - "printedName": "remoteExtendedErrorUnknownCommand", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorUnknownCommand", - "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteExtendedErrorUnknownCommandyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 17 + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTLoggerComponentO", + "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "remoteExtendedErrorInitCommandInvalid", - "printedName": "remoteExtendedErrorInitCommandInvalid", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInitCommandInvalid", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorInitCommandInvalidyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 18 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerSeverity", + "printedName": "ZTLoggerSeverity", + "children": [ { "kind": "Var", - "name": "remoteExtendedErrorFwVersionFailure", - "printedName": "remoteExtendedErrorFwVersionFailure", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72107,41 +60691,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorFwVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorFwVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 19 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorHwVersionFailure", - "printedName": "remoteExtendedErrorHwVersionFailure", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72149,41 +60728,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHwVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorHwVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 20 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorSdVersionFailure", - "printedName": "remoteExtendedErrorSdVersionFailure", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72191,41 +60765,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSdVersionFailure", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSdVersionFailureyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 21 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorSignatureMissing", - "printedName": "remoteExtendedErrorSignatureMissing", + "name": "warn", + "printedName": "warn", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } ] } @@ -72233,167 +60802,171 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSignatureMissing", - "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSignatureMissingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 22 + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongHashType", - "printedName": "remoteExtendedErrorWrongHashType", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLoggerSeverity?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongHashType", - "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteExtendedErrorWrongHashTypeyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 23 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteExtendedErrorHashFailed", - "printedName": "remoteExtendedErrorHashFailed", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHashFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO29remoteExtendedErrorHashFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 24 + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO", + "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "remoteExtendedErrorWrongSignatureType", - "printedName": "remoteExtendedErrorWrongSignatureType", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongSignatureType", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongSignatureTypeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 25 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDfuPackageType", + "printedName": "ZTDfuPackageType", + "children": [ { "kind": "Var", - "name": "remoteExtendedErrorVerificationFailed", - "printedName": "remoteExtendedErrorVerificationFailed", + "name": "APP", + "printedName": "APP", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72401,41 +60974,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorVerificationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorVerificationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 26 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO3APPyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExtendedErrorInsufficientSpace", - "printedName": "remoteExtendedErrorInsufficientSpace", + "name": "BL", + "printedName": "BL", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72443,41 +61011,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInsufficientSpace", - "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteExtendedErrorInsufficientSpaceyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 27 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2BLyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUSuccess", - "printedName": "remoteExperimentalButtonlessDFUSuccess", + "name": "SD", + "printedName": "SD", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72485,41 +61048,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO38remoteExperimentalButtonlessDFUSuccessyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 28 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO2SDyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUOpCodeNotSupported", - "printedName": "remoteExperimentalButtonlessDFUOpCodeNotSupported", + "name": "SD_BL", + "printedName": "SD_BL", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72527,41 +61085,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO49remoteExperimentalButtonlessDFUOpCodeNotSupportedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 29 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO5SD_BLyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "remoteExperimentalButtonlessDFUOperationFailed", - "printedName": "remoteExperimentalButtonlessDFUOperationFailed", + "name": "SD_BL_APP", + "printedName": "SD_BL_APP", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTDfuPackageType.Type) -> ZTCoreKit.ZTDfuPackageType", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTDfuPackageType.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } ] } @@ -72569,839 +61122,1322 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO46remoteExperimentalButtonlessDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 30 + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO9SD_BL_APPyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "remoteButtonlessDFUSuccess", - "printedName": "remoteButtonlessDFUSuccess", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDfuPackageType?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTDfuPackageType", + "printedName": "ZTCoreKit.ZTDfuPackageType", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUSuccess", - "mangledName": "$s9ZTCoreKit8DFUErrorO26remoteButtonlessDFUSuccessyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 31 + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "remoteButtonlessDFUOpCodeNotSupported", - "printedName": "remoteButtonlessDFUOpCodeNotSupported", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO8rawValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO", + "mangledName": "$s9ZTCoreKit16ZTDfuPackageTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOpCodeNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteButtonlessDFUOpCodeNotSupportedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 32 - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTHardwareCharacteristic", + "children": [ { "kind": "Var", - "name": "remoteButtonlessDFUOperationFailed", - "printedName": "remoteButtonlessDFUOperationFailed", + "name": "uuid", + "printedName": "uuid", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOperationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO34remoteButtonlessDFUOperationFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 33 + ] }, { "kind": "Var", - "name": "remoteButtonlessDFUInvalidAdvertisementName", - "printedName": "remoteButtonlessDFUInvalidAdvertisementName", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUInvalidAdvertisementName", - "mangledName": "$s9ZTCoreKit8DFUErrorO43remoteButtonlessDFUInvalidAdvertisementNameyA2CmF", + "declKind": "Func", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "Override" ], - "fixedbinaryorder": 34 + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "remoteButtonlessDFUBusy", - "printedName": "remoteButtonlessDFUBusy", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTHardwareCharacteristic", + "printedName": "ZTCoreKit.ZTHardwareCharacteristic", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit24ZTHardwareCharacteristicC", + "mangledName": "$s9ZTCoreKit24ZTHardwareCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageChunkData", + "printedName": "ZTMessageChunkData", + "children": [ + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "manual", + "printedName": "manual", "children": [ { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO6manualyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkData.Mode.Type) -> ZTCoreKit.ZTMessageChunkData.Mode", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUBusy", - "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteButtonlessDFUBusyyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 35 - }, - { - "kind": "Var", - "name": "remoteButtonlessDFUNotBonded", - "printedName": "remoteButtonlessDFUNotBonded", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO9automaticyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUNotBonded", - "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteButtonlessDFUNotBondedyA2CmF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4ModeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl" ], - "fixedbinaryorder": 36 - }, - { - "kind": "Var", - "name": "fileNotSpecified", - "printedName": "fileNotSpecified", - "children": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileNotSpecified", - "mangledName": "$s9ZTCoreKit8DFUErrorO16fileNotSpecifiedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 37 + ] }, { "kind": "Var", - "name": "fileInvalid", - "printedName": "fileInvalid", + "name": "byte0", + "printedName": "byte0", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte0s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileInvalid", - "mangledName": "$s9ZTCoreKit8DFUErrorO11fileInvalidyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 38 + ] }, { "kind": "Var", - "name": "extendedInitPacketRequired", - "printedName": "extendedInitPacketRequired", + "name": "byte1", + "printedName": "byte1", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorExtendedInitPacketRequired", - "mangledName": "$s9ZTCoreKit8DFUErrorO26extendedInitPacketRequiredyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 39 - }, - { - "kind": "Var", - "name": "initPacketRequired", - "printedName": "initPacketRequired", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte1s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInitPacketRequired", - "mangledName": "$s9ZTCoreKit8DFUErrorO18initPacketRequiredyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 40 + ] }, { "kind": "Var", - "name": "failedToConnect", - "printedName": "failedToConnect", + "name": "byte2", + "printedName": "byte2", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFailedToConnect", - "mangledName": "$s9ZTCoreKit8DFUErrorO15failedToConnectyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 41 - }, - { - "kind": "Var", - "name": "deviceDisconnected", - "printedName": "deviceDisconnected", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte2s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceDisconnected", - "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceDisconnectedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 42 + ] }, { "kind": "Var", - "name": "bluetoothDisabled", - "printedName": "bluetoothDisabled", + "name": "byte3", + "printedName": "byte3", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBluetoothDisabled", - "mangledName": "$s9ZTCoreKit8DFUErrorO17bluetoothDisabledyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 43 - }, - { - "kind": "Var", - "name": "serviceDiscoveryFailed", - "printedName": "serviceDiscoveryFailed", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5byte3s5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorServiceDiscoveryFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO22serviceDiscoveryFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 44 + ] }, { - "kind": "Var", - "name": "deviceNotSupported", - "printedName": "deviceNotSupported", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceNotSupported", - "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceNotSupportedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "AccessControl", + "RawDocComment" ], - "fixedbinaryorder": 45 + "init_kind": "Designated" }, { - "kind": "Var", - "name": "readingVersionFailed", - "printedName": "readingVersionFailed", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTMessageChunkData", + "printedName": "ZTCoreKit.ZTMessageChunkData", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReadingVersionFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO20readingVersionFailedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } ], - "fixedbinaryorder": 46 + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "enablingControlPointFailed", - "printedName": "enablingControlPointFailed", + "name": "side", + "printedName": "side", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4sideAA12ZTModuleSideOvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorEnablingControlPointFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO26enablingControlPointFailedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 47 + ] }, { "kind": "Var", - "name": "writingCharacteristicFailed", - "printedName": "writingCharacteristicFailed", + "name": "mode", + "printedName": "mode", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - } - ] + "name": "Mode", + "printedName": "ZTCoreKit.ZTMessageChunkData.Mode", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4ModeO" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV4modeAC4ModeOvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "length", + "printedName": "length", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorWritingCharacteristicFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO27writingCharacteristicFailedyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 48 + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV6lengths5UInt8Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Var", - "name": "receivingNotificationFailed", - "printedName": "receivingNotificationFailed", + "name": "payload", + "printedName": "payload", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV7payload10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReceivingNotificationFailed", - "mangledName": "$s9ZTCoreKit8DFUErrorO27receivingNotificationFailedyA2CmF", + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], - "fixedbinaryorder": 49 + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit18ZTMessageChunkDataV", + "mangledName": "$s9ZTCoreKit18ZTMessageChunkDataV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoStatus", + "printedName": "ZTAlgoStatus", + "children": [ { "kind": "Var", - "name": "unsupportedResponse", - "printedName": "unsupportedResponse", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73409,41 +62445,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorUnsupportedResponse", - "mangledName": "$s9ZTCoreKit8DFUErrorO19unsupportedResponseyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 50 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO9timestampyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "bytesLost", - "printedName": "bytesLost", + "name": "modeId", + "printedName": "modeId", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73451,41 +62482,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBytesLost", - "mangledName": "$s9ZTCoreKit8DFUErrorO9bytesLostyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 51 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO6modeIdyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "crcError", - "printedName": "crcError", + "name": "precisionMode", + "printedName": "precisionMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73493,41 +62519,36 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorCrcError", - "mangledName": "$s9ZTCoreKit8DFUErrorO8crcErroryA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 52 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13precisionModeyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "invalidInternalState", - "printedName": "invalidInternalState", + "name": "numberOfSteps", + "printedName": "numberOfSteps", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "printedName": "(ZTCoreKit.ZTAlgoStatus.Type) -> ZTCoreKit.ZTAlgoStatus", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUError.Type", + "printedName": "ZTCoreKit.ZTAlgoStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ] } @@ -73535,14 +62556,9 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInvalidInternalState", - "mangledName": "$s9ZTCoreKit8DFUErrorO20invalidInternalStateyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 53 + "usr": "s:9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO13numberOfStepsyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", @@ -73552,27 +62568,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUError?", + "printedName": "ZTCoreKit.ZTAlgoStatus?", "children": [ { "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -73584,14 +62600,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivp", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -73602,14 +62618,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivg", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -73618,15 +62634,14 @@ } ], "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUError", - "mangledName": "$s9ZTCoreKit8DFUErrorO", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO", + "mangledName": "$s9ZTCoreKit12ZTAlgoStatusO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "enumRawTypeName": "Int", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -73649,180 +62664,92 @@ "children": [ { "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DFUState", - "printedName": "DFUState", - "children": [ - { - "kind": "Var", - "name": "connecting", - "printedName": "connecting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateConnecting", - "mangledName": "$s9ZTCoreKit8DFUStateO10connectingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "starting", - "printedName": "starting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateStarting", - "mangledName": "$s9ZTCoreKit8DFUStateO8startingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "enablingDfuMode", - "printedName": "enablingDfuMode", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - }, + "name": "RawValue", + "printedName": "RawValue", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateEnablingDfuMode", - "mangledName": "$s9ZTCoreKit8DFUStateO15enablingDfuModeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "os.log", + "printedName": "os.log", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTLogLevel", + "printedName": "ZTLogLevel", + "children": [ { "kind": "Var", - "name": "uploading", - "printedName": "uploading", + "name": "all", + "printedName": "all", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73830,41 +62757,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateUploading", - "mangledName": "$s9ZTCoreKit8DFUStateO9uploadingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO3allyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO3allyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 + "RawDocComment" + ] }, { "kind": "Var", - "name": "validating", - "printedName": "validating", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73872,41 +62797,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateValidating", - "mangledName": "$s9ZTCoreKit8DFUStateO10validatingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5debugyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5debugyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 + "RawDocComment" + ] }, { "kind": "Var", - "name": "disconnecting", - "printedName": "disconnecting", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73914,41 +62837,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateDisconnecting", - "mangledName": "$s9ZTCoreKit8DFUStateO13disconnectingyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO4infoyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO4infoyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 + "RawDocComment" + ] }, { "kind": "Var", - "name": "completed", - "printedName": "completed", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73956,41 +62877,39 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateCompleted", - "mangledName": "$s9ZTCoreKit8DFUStateO9completedyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5erroryA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 6 + "RawDocComment" + ] }, { "kind": "Var", - "name": "aborted", - "printedName": "aborted", + "name": "fatal", + "printedName": "fatal", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", + "printedName": "(ZTCoreKit.ZTLogLevel.Type) -> ZTCoreKit.ZTLogLevel", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.DFUState.Type", + "printedName": "ZTCoreKit.ZTLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ] } @@ -73998,14 +62917,12 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateAborted", - "mangledName": "$s9ZTCoreKit8DFUStateO7abortedyA2CmF", + "usr": "s:9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO5fatalyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 7 + "RawDocComment" + ] }, { "kind": "Constructor", @@ -74015,27 +62932,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", + "printedName": "ZTCoreKit.ZTLogLevel?", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "ZTLogLevel", + "printedName": "ZTCoreKit.ZTLogLevel", + "usr": "s:9ZTCoreKit10ZTLogLevelO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -74047,14 +62964,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivp", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivp", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -74065,14 +62982,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivg", - "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivg", + "usr": "s:9ZTCoreKit10ZTLogLevelO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -74092,11 +63009,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvp", + "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "isFromExtension": true, "accessors": [ @@ -74113,8 +63031,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvg", + "usr": "s:9ZTCoreKit10ZTLogLevelO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO11descriptionSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" @@ -74123,15 +63041,14 @@ } ], "declKind": "Enum", - "usr": "c:@M@ZTCoreKit@E@DFUState", - "mangledName": "$s9ZTCoreKit8DFUStateO", + "usr": "s:9ZTCoreKit10ZTLogLevelO", + "mangledName": "$s9ZTCoreKit10ZTLogLevelO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "enumRawTypeName": "Int", + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", @@ -74159,9 +63076,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } @@ -74180,500 +63097,166 @@ }, { "kind": "TypeDecl", - "name": "DFUProgressDelegate", - "printedName": "DFUProgressDelegate", - "children": [ - { - "kind": "Function", - "name": "dfuProgressDidChange", - "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate(im)dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avgnopQ0ySi_S2iS2dtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUProgressDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUServiceDelegate", - "printedName": "DFUServiceDelegate", - "children": [ - { - "kind": "Function", - "name": "dfuStateDidChange", - "printedName": "dfuStateDidChange(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuStateDidChangeTo:", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP17dfuStateDidChange2toyAA8DFUStateO_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "objc_name": "dfuStateDidChangeTo:", - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuError", - "printedName": "dfuError(_:didOccurWithMessage:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuError:didOccurWithMessage:", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC", - "RawDocComment" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageSoftware", - "printedName": "ZTMessageSoftware", + "name": "ZTLogCategory", + "printedName": "ZTLogCategory", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "networkAgent", + "printedName": "networkAgent", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO12networkAgentyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "side", - "printedName": "side", + "name": "modules", + "printedName": "modules", "children": [ { - "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "ZTModuleSide", - "printedName": "ZTCoreKit.ZTModuleSide", - "usr": "s:9ZTCoreKit12ZTModuleSideO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4sideAA12ZTModuleSideOvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "baseMajor", - "printedName": "baseMajor", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMajors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "baseMinor", - "printedName": "baseMinor", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO7modulesyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseMinors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } + "RawDocComment" ] }, { "kind": "Var", - "name": "baseBuild", - "printedName": "baseBuild", + "name": "sdk", + "printedName": "sdk", "children": [ { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTLogCategory.Type) -> ZTCoreKit.ZTLogCategory", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTLogCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV9baseBuilds6UInt16Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "app", - "printedName": "app", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO3sdkyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV3appSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV3appSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } + "RawDocComment" ] }, { - "kind": "Var", - "name": "appMajor", - "printedName": "appMajor", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTLogCategory?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTLogCategory", + "printedName": "ZTCoreKit.ZTLogCategory", + "usr": "s:9ZTCoreKit13ZTLogCategoryO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMajors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "appMinor", - "printedName": "appMinor", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueACSgSS_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV8appMinors5UInt8Vvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "version", - "printedName": "version", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -74683,12 +63266,10 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvp", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -74703,9 +63284,10 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV7versionSSvg", + "usr": "s:9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO8rawValueSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] @@ -74723,13 +63305,14 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvp", + "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -74744,94 +63327,67 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV11descriptionSSvg", + "usr": "s:9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO11descriptionSSvg", "moduleName": "ZTCoreKit", + "isFromExtension": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageSoftware", - "printedName": "ZTCoreKit.ZTMessageSoftware", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTMessageSoftwareV", - "mangledName": "$s9ZTCoreKit17ZTMessageSoftwareV", + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTLogCategoryO", + "mangledName": "$s9ZTCoreKit13ZTLogCategoryO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "enumRawTypeName": "String", "conformances": [ { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, @@ -74840,50 +63396,46 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTHexColorTransform", - "printedName": "ZTHexColorTransform", + "name": "ZTDictionaryTransform", + "printedName": "ZTDictionaryTransform", "children": [ { "kind": "Constructor", "name": "init", - "printedName": "init(prefixToJSON:alphaToJSON:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "ZTHexColorTransform", - "printedName": "ZTCoreKit.ZTHexColorTransform", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "ZTDictionaryTransform", + "printedName": "ZTCoreKit.ZTDictionaryTransform<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformVACyxq_Gycfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -74897,13 +63449,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIColor?", + "printedName": "[τ_0_0 : τ_0_1]?", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" @@ -74923,10 +63487,11 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV17transformFromJSONySDyxq_GSgypSgF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], @@ -74940,13 +63505,12 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ], "usr": "s:Sq" @@ -74954,36 +63518,51 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIColor?", + "printedName": "[τ_0_0 : τ_0_1]?", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV15transformToJSONyypSgSDyxq_GSgF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTHexColorTransformC", - "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit21ZTDictionaryTransformV", + "mangledName": "$s9ZTCoreKit21ZTDictionaryTransformV", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable, τ_0_0 : Swift.RawRepresentable, τ_0_1 : ZTCoreKit.ZTMappable, τ_0_0.RawValue == Swift.String>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -74998,9 +63577,21 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ] }, @@ -75011,9 +63602,8 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "Any" } ] } @@ -75025,8 +63615,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "ObjectiveC", + "printedName": "ObjectiveC", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -75045,40 +63635,65 @@ }, { "kind": "TypeDecl", - "name": "ZTActivityComment", - "printedName": "ZTActivityComment", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTMessageBootloaderInfo", "children": [ { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "side", + "printedName": "side", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75087,108 +63702,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "timeZone", - "printedName": "timeZone", + "name": "bootloaderVersion", + "printedName": "bootloaderVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75197,108 +63743,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17bootloaderVersions5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "appSupportVersion", + "printedName": "appSupportVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75307,108 +63784,39 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV17appSupportVersions5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "softDeviceId", + "printedName": "softDeviceId", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75417,108 +63825,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV12softDeviceIds5UInt8Vvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "name": "dfuState", + "printedName": "dfuState", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75528,107 +63875,46 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8dfuStateAC03DfuG0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -75637,363 +63923,508 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DfuState", + "printedName": "DfuState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4noneyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "inProgress", + "printedName": "inProgress", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10inProgressyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "received", + "printedName": "received", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8receivedyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Var", + "name": "readyForCopy", + "printedName": "readyForCopy", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO12readyForCopyyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activation", + "printedName": "activation", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO10activationyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "done", + "printedName": "done", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO4doneyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "error", + "printedName": "error", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "mediaFiles", - "printedName": "mediaFiles", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO5erroryA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "kind": "Var", + "name": "validationError", + "printedName": "validationError", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15validationErroryA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activationError", + "printedName": "activationError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type) -> ZTCoreKit.ZTMessageBootloaderInfo.DfuState", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO15activationErroryA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFile]?", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFile]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" - } - ], - "usr": "s:Sa" + "name": "DfuState", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" + "name": "ZTMessageBootloaderInfo", + "printedName": "ZTCoreKit.ZTMessageBootloaderInfo", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], + "implicit": true, + "throwing": true, "init_kind": "Designated" }, { "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -76002,25 +64433,23 @@ }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTActivityCommentC", - "mangledName": "$s9ZTCoreKit17ZTActivityCommentC", + "declKind": "Struct", + "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV", + "mangledName": "$s9ZTCoreKit23ZTMessageBootloaderInfoV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -76029,17 +64458,24 @@ "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -76053,34 +64489,36 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "ZTSegmentData", - "printedName": "ZTSegmentData", + "name": "ZTMessageTime", + "printedName": "ZTMessageTime", "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -76097,22 +64535,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -76129,22 +64559,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvs", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -76161,8 +64583,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC03rawD010Foundation0D0VSgvM", + "usr": "s:9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV9timestamps5Int64VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -76171,19 +64593,19 @@ }, { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "side", + "printedName": "side", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -76200,14 +64622,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -76224,14 +64646,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16Vvs", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -76248,8 +64670,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2ids6UInt16VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2ids6UInt16VvM", + "usr": "s:9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV4sideAA12ZTModuleSideOvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -76257,147 +64679,61 @@ ] }, { - "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTMessageTime", + "printedName": "ZTCoreKit.ZTMessageTime", + "usr": "s:9ZTCoreKit13ZTMessageTimeV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10activityIdSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] + "init_kind": "Designated" }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvp", + "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -76406,1166 +64742,1267 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvg", + "usr": "s:9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit13ZTMessageTimeV", + "mangledName": "$s9ZTCoreKit13ZTMessageTimeV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNotifyData", + "printedName": "ZTNotifyData", + "children": [ + { + "kind": "TypeDecl", + "name": "GroupID", + "printedName": "GroupID", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "common", + "printedName": "common", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6commonyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "warm", + "printedName": "warm", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12activityTypeAA14ZTActivityModeOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO4warmyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "Var", + "name": "running", + "printedName": "running", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7runningyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "cycling", + "printedName": "cycling", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7cyclingyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "safety", + "printedName": "safety", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO6safetyyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "generic", + "printedName": "generic", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.GroupID.Type) -> ZTCoreKit.ZTNotifyData.GroupID", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9timestamps5Int64VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "duration", - "printedName": "duration", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO7genericyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "GroupID", + "printedName": "ZTCoreKit.ZTNotifyData.GroupID", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO" } ], "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC8durationSiSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC8durationSiSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6statusAC6StatusOvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "timestampType", - "printedName": "timestampType", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO7GroupIDO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO7GroupIDO", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13timestampTypeAC09TimestampF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SY", + "mangledName": "$sSY" } ] }, { - "kind": "Var", - "name": "bmTimestampType", - "printedName": "bmTimestampType", + "kind": "TypeDecl", + "name": "CommonMessageId", + "printedName": "CommonMessageId", "children": [ { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_GENERAL_STATES", + "printedName": "MSG_GENERAL_STATES", "children": [ { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_GENERAL_STATESyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_BATTERY_LEVEL", + "printedName": "MSG_BATTERY_LEVEL", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BATTERY_LEVELyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_MEMS", + "printedName": "MSG_MEMS", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15bmTimestampTypeAC02BmfG0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetType", - "printedName": "packetType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_MEMSyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_FLASH", + "printedName": "MSG_FLASH", "children": [ { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_FLASHyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_TIME", + "printedName": "MSG_TIME", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8MSG_TIMEyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_HARDWARE", + "printedName": "MSG_HARDWARE", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0OvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10packetTypeAC06PacketF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "originalTimestamp", - "printedName": "originalTimestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_HARDWAREyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_SOFTWARE", + "printedName": "MSG_SOFTWARE", "children": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO12MSG_SOFTWAREyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_ACTIVITY_INFO", + "printedName": "MSG_ACTIVITY_INFO", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_ACTIVITY_INFOyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_ACTIVITY_METADATA", + "printedName": "MSG_ACTIVITY_METADATA", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17originalTimestamps5Int64VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "packetsNumber", - "printedName": "packetsNumber", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_ACTIVITY_METADATAyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_RAWDATA_HEADER", + "printedName": "MSG_RAWDATA_HEADER", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO18MSG_RAWDATA_HEADERyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_RAWDATA_FRAME", + "printedName": "MSG_RAWDATA_FRAME", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_RAWDATA_FRAMEyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_BTLOADER_INFO", + "printedName": "MSG_BTLOADER_INFO", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8VvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13packetsNumbers5UInt8VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "rawDescription", - "printedName": "rawDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO17MSG_BTLOADER_INFOyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_INACTIVITY_TIMEOUT", + "printedName": "MSG_INACTIVITY_TIMEOUT", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14rawDescriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO22MSG_INACTIVITY_TIMEOUTyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "MSG_CHUNK_SEND_STATUS", + "printedName": "MSG_CHUNK_SEND_STATUS", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO21MSG_CHUNK_SEND_STATUSyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "MSG_CHUNK_DATA", + "printedName": "MSG_CHUNK_DATA", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO14MSG_CHUNK_DATAyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "MSG_CHUNK_CONFIG", + "printedName": "MSG_CHUNK_CONFIG", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO16MSG_CHUNK_CONFIGyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "MSG_DEBUG", + "printedName": "MSG_DEBUG", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.CommonMessageId.Type) -> ZTCoreKit.ZTNotifyData.CommonMessageId", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC9fwVersionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "retryCount", - "printedName": "retryCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO9MSG_DEBUGyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivg", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommonMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CommonMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivs", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10retryCountSivM", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10retryCountSivM", + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CodingKeys", - "printedName": "CodingKeys", - "children": [ - { - "kind": "Var", - "name": "id", - "printedName": "id", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO2idyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO2idyA2EmF", - "moduleName": "ZTCoreKit" + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15CommonMessageIdO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "activityId", - "printedName": "activityId", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10activityIdyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10activityIdyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WarmMessageId", + "printedName": "WarmMessageId", + "children": [ { "kind": "Var", - "name": "rawData", - "printedName": "rawData", + "name": "MSG_HEATING_TEMP_1", + "printedName": "MSG_HEATING_TEMP_1", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77573,36 +66010,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO03rawD0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO03rawD0yA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_1yA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", + "name": "MSG_HEATING_TEMP_2", + "printedName": "MSG_HEATING_TEMP_2", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77610,36 +66047,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9timestampyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9timestampyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_HEATING_TEMP_2yA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "MSG_HEATING_STEP_R_CNT", + "printedName": "MSG_HEATING_STEP_R_CNT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77647,36 +66084,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8durationyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8durationyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_R_CNTyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "MSG_HEATING_STEP_L_CNT", + "printedName": "MSG_HEATING_STEP_L_CNT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77684,36 +66121,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO6statusyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO6statusyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_STEP_L_CNTyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "packetType", - "printedName": "packetType", + "name": "MSG_HEATING_SETPOINT_R", + "printedName": "MSG_HEATING_SETPOINT_R", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77721,36 +66158,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10packetTypeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10packetTypeyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_RyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "timestampType", - "printedName": "timestampType", + "name": "MSG_HEATING_SETPOINT_L", + "printedName": "MSG_HEATING_SETPOINT_L", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77758,36 +66195,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO13timestampTypeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO13timestampTypeyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO22MSG_HEATING_SETPOINT_LyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "originalTimestamp", - "printedName": "originalTimestamp", + "name": "MSG_GET_HEAT_TIMER", + "printedName": "MSG_GET_HEAT_TIMER", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77795,36 +66232,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO17originalTimestampyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO17originalTimestampyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO18MSG_GET_HEAT_TIMERyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "packetsNumber", - "printedName": "packetsNumber", + "name": "MSG_HEATING_DEBUG_R", + "printedName": "MSG_HEATING_DEBUG_R", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77832,36 +66269,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO13packetsNumberyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO13packetsNumberyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_RyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "fwVersion", - "printedName": "fwVersion", + "name": "MSG_HEATING_DEBUG_L", + "printedName": "MSG_HEATING_DEBUG_L", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "printedName": "(ZTCoreKit.ZTNotifyData.WarmMessageId.Type) -> ZTCoreKit.ZTNotifyData.WarmMessageId", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } ] } @@ -77869,94 +66306,58 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9fwVersionyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9fwVersionyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO19MSG_HEATING_DEBUG_LyA2EmF", "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "retryCount", - "printedName": "retryCount", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.CodingKeys.Type) -> ZTCoreKit.ZTSegmentData.CodingKeys", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId?", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ] + "name": "WarmMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.WarmMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO10retryCountyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO10retryCountyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO2eeoiySbAE_AEtFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -77967,140 +66368,156 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO9hashValueSivg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO13WarmMessageIdO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RunningMessageId", + "printedName": "RunningMessageId", + "children": [ { "kind": "Var", - "name": "stringValue", - "printedName": "stringValue", + "name": "UNKNOWN", + "printedName": "UNKNOWN", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTNotifyData.RunningMessageId.Type) -> ZTCoreKit.ZTNotifyData.RunningMessageId", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO7UNKNOWNyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Constructor", "name": "init", - "printedName": "init(stringValue:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys?", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId?", "children": [ { "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" + "name": "RunningMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.RunningMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueAESgSS_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO11stringValueAESgSS_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "intValue", - "printedName": "intValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -78111,70 +66528,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueSiSgvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(intValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys?", - "children": [ - { - "kind": "TypeNominal", - "name": "CodingKeys", - "printedName": "ZTCoreKit.ZTSegmentData.CodingKeys", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueAESgSi_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO8intValueAESgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10CodingKeysO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10CodingKeysO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16RunningMessageIdO", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -78192,311 +66566,59 @@ }, { "kind": "Conformance", - "name": "CodingKey", - "printedName": "CodingKey", - "usr": "s:s9CodingKeyP", - "mangledName": "$ss9CodingKeyP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4dataAC10Foundation0D0V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4dataAC10Foundation0D0V_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:activityId:fwversion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4data10activityId9fwversionAC10Foundation0D0V_S2SSgtcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4data10activityId9fwversionAC10Foundation0D0V_S2SSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Required", - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", - "children": [ - { - "kind": "Var", - "name": "new", - "printedName": "new", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO3newyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO3newyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sent", - "printedName": "sent", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO4sentyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO4sentyA2EmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "sending", - "printedName": "sending", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO7sendingyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO7sendingyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CyclingMessageId", + "printedName": "CyclingMessageId", + "children": [ { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "MSG_CADENCE", + "printedName": "MSG_CADENCE", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.Status.Type) -> ZTCoreKit.ZTSegmentData.Status", + "printedName": "(ZTCoreKit.ZTNotifyData.CyclingMessageId.Type) -> ZTCoreKit.ZTNotifyData.CyclingMessageId", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.Status.Type", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" } ] } @@ -78504,8 +66626,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO5erroryA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO5erroryA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO11MSG_CADENCEyA2EmF", "moduleName": "ZTCoreKit" }, { @@ -78516,27 +66638,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.Status?", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTSegmentData.Status", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO" + "name": "CyclingMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.CyclingMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValueAESgs4Int8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValueAESgs4Int8V_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -78548,14 +66670,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -78566,14 +66688,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO8rawValues4Int8Vvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -78582,15 +66704,11 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC6StatusO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC6StatusO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16CyclingMessageIdO", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], "isFromExtension": true, - "enumRawTypeName": "Int8", + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", @@ -78618,63 +66736,49 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, { "kind": "TypeDecl", - "name": "TimestampType", - "printedName": "TimestampType", + "name": "SafetyMessageId", + "printedName": "SafetyMessageId", "children": [ { "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "name": "MSG_CALIBRATION_SAFETY", + "printedName": "MSG_CALIBRATION_SAFETY", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } ] } @@ -78682,36 +66786,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO7unknownyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO22MSG_CALIBRATION_SAFETYyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "start", - "printedName": "start", + "name": "MSG_ALGO_RT_EVENT", + "printedName": "MSG_ALGO_RT_EVENT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.SafetyMessageId.Type) -> ZTCoreKit.ZTNotifyData.SafetyMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } ] } @@ -78719,147 +66823,159 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5startyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5startyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "stop", - "printedName": "stop", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId?", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "SafetyMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.SafetyMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4stopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4stopyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "pause", - "printedName": "pause", + "name": "rawValue", + "printedName": "rawValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5pauseyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO5pauseyA2EmF", - "moduleName": "ZTCoreKit" + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO15SafetyMessageIdO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "resume", - "printedName": "resume", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6resumeyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6resumeyA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GenericMessageId", + "printedName": "GenericMessageId", + "children": [ { "kind": "Var", - "name": "reboot", - "printedName": "reboot", + "name": "MSG_ALGO_RT_EVENT", + "printedName": "MSG_ALGO_RT_EVENT", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.TimestampType.Type) -> ZTCoreKit.ZTSegmentData.TimestampType", + "printedName": "(ZTCoreKit.ZTNotifyData.GenericMessageId.Type) -> ZTCoreKit.ZTNotifyData.GenericMessageId", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType.Type", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId.Type", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" } ] } @@ -78867,8 +66983,8 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6rebootyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO6rebootyA2EmF", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO17MSG_ALGO_RT_EVENTyA2EmF", "moduleName": "ZTCoreKit" }, { @@ -78884,48 +67000,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "name", - "printedName": "name", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -78944,8 +67020,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO4nameSSvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -78959,13 +67035,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType?", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId?", "children": [ { "kind": "TypeNominal", - "name": "TimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.TimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO" + "name": "GenericMessageId", + "printedName": "ZTCoreKit.ZTNotifyData.GenericMessageId", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO" } ], "usr": "s:Sq" @@ -78978,8 +67054,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -78997,8 +67073,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -79015,8 +67091,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -79025,11 +67101,10 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13TimestampTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13TimestampTypeO", + "usr": "s:9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO16GenericMessageIdO", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", "RawDocComment" ], "isFromExtension": true, @@ -79070,1367 +67145,1761 @@ ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] - }, + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTNotifyDataO", + "mangledName": "$s9ZTCoreKit12ZTNotifyDataO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDeviceActualState", + "printedName": "ZTDeviceActualState", + "children": [ { - "kind": "TypeDecl", - "name": "BmTimestampType", - "printedName": "BmTimestampType", + "kind": "Var", + "name": "activityNone", + "printedName": "activityNone", "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO7unknownyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO12activityNoneyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityStarting", + "printedName": "activityStarting", + "children": [ { - "kind": "Var", - "name": "shoeWearOn", - "printedName": "shoeWearOn", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO10shoeWearOnyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO10shoeWearOnyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStartingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "eraseMemory", + "printedName": "eraseMemory", + "children": [ { - "kind": "Var", - "name": "shoeWearOff", - "printedName": "shoeWearOff", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11shoeWearOffyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11shoeWearOffyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11eraseMemoryyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityRunning", + "printedName": "activityRunning", + "children": [ { - "kind": "Var", - "name": "walkingStart", - "printedName": "walkingStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12walkingStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12walkingStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO15activityRunningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityPaused", + "printedName": "activityPaused", + "children": [ { - "kind": "Var", - "name": "walkingStop", - "printedName": "walkingStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11walkingStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11walkingStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO14activityPausedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityStopping", + "printedName": "activityStopping", + "children": [ { - "kind": "Var", - "name": "runningStart", - "printedName": "runningStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12runningStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12runningStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityStoppingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityPendData", + "printedName": "activityPendData", + "children": [ { - "kind": "Var", - "name": "runningStop", - "printedName": "runningStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11runningStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11runningStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activityPendDatayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activitySendData", + "printedName": "activitySendData", + "children": [ { - "kind": "Var", - "name": "cyclingStart", - "printedName": "cyclingStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO16activitySendDatayA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDeviceActualState.Type) -> ZTCoreKit.ZTDeviceActualState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDeviceActualState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ] } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO7unknownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12cyclingStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO12cyclingStartyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDeviceActualState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "cyclingStop", - "printedName": "cyclingStop", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO", + "mangledName": "$s9ZTCoreKit19ZTDeviceActualStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoState", + "printedName": "ZTAlgoState", + "children": [ + { + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11cyclingStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11cyclingStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9undefinedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "walking", + "printedName": "walking", + "children": [ { - "kind": "Var", - "name": "transportStart", - "printedName": "transportStart", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7walkingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO14transportStartyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO14transportStartyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pedaling", + "printedName": "pedaling", + "children": [ { - "kind": "Var", - "name": "transportStop", - "printedName": "transportStop", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.BmTimestampType.Type) -> ZTCoreKit.ZTSegmentData.BmTimestampType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - }, + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8pedalingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "jump", + "printedName": "jump", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO13transportStopyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO13transportStopyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4jumpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsUp", + "printedName": "stairsUp", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8stairsUpyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stairsDown", + "printedName": "stairsDown", + "children": [ { - "kind": "Var", - "name": "name", - "printedName": "name", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO4nameSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } ] - }, + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO10stairsDownyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "standing", + "printedName": "standing", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType?", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "BmTimestampType", - "printedName": "ZTCoreKit.ZTSegmentData.BmTimestampType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8standingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "sitting", + "printedName": "sitting", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15BmTimestampTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO7sittingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "kneeling", + "printedName": "kneeling", + "children": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8kneelingyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeDecl", - "name": "PacketType", - "printedName": "PacketType", + "kind": "Var", + "name": "tiptoe", + "printedName": "tiptoe", "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO7unknownyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO6tiptoeyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "vibration", + "printedName": "vibration", + "children": [ { - "kind": "Var", - "name": "quantification", - "printedName": "quantification", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14quantificationyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14quantificationyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9vibrationyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "slip", + "printedName": "slip", + "children": [ { - "kind": "Var", - "name": "walkAnalysis", - "printedName": "walkAnalysis", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO12walkAnalysisyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO12walkAnalysisyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO4slipyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "incident", + "printedName": "incident", + "children": [ { - "kind": "Var", - "name": "runAnalysis", - "printedName": "runAnalysis", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11runAnalysisyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11runAnalysisyA2EmF", - "moduleName": "ZTCoreKit" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8incidentyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "freewheel", + "printedName": "freewheel", + "children": [ { - "kind": "Var", - "name": "stairs", - "printedName": "stairs", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoState.Type) -> ZTCoreKit.ZTAlgoState", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoState.Type", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" } ] } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO9freewheelyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoState", + "printedName": "ZTCoreKit.ZTAlgoState", + "usr": "s:9ZTCoreKit11ZTAlgoStateO" + } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO6stairsyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO6stairsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" }, { - "kind": "Var", - "name": "cycling", - "printedName": "cycling", + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO7cyclingyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO7cyclingyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit11ZTAlgoStateO", + "mangledName": "$s9ZTCoreKit11ZTAlgoStateO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDfuDelegate", + "printedName": "ZTDfuDelegate", + "children": [ + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(firmwareDownloaded:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "jump", - "printedName": "jump", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO4jumpyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO4jumpyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD018firmwareDownloaded7versionySb_SSSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(didFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "safety", - "printedName": "safety", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD09didFinishySb_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(didFail:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTError?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO6safetyyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO6safetyyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD07didFailyAA7ZTErrorOSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(progress:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "staticActivity", - "printedName": "staticActivity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14staticActivityyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14staticActivityyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD08progressySfSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(leftDidFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "debug", - "printedName": "debug", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO5debugyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO5debugyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD013leftDidFinishySSSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dfuDelegate", + "printedName": "dfuDelegate(rightDidFinish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "debugTelemetry", - "printedName": "debugTelemetry", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO14debugTelemetryyA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO14debugTelemetryyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP03dfuD014rightDidFinishySSSg_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTDfuDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit13ZTDfuDelegateP", + "mangledName": "$s9ZTCoreKit13ZTDfuDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageActivity", + "printedName": "ZTMessageActivity", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" }, { - "kind": "Var", - "name": "debugProba", - "printedName": "debugProba", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO10debugProbayA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO10debugProbayA2EmF", - "moduleName": "ZTCoreKit" - }, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "isRight", + "printedName": "isRight", + "children": [ { - "kind": "Var", - "name": "bmTimestampPacket", - "printedName": "bmTimestampPacket", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO011bmTimestampE0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO011bmTimestampE0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLeft", + "printedName": "isLeft", + "children": [ { - "kind": "Var", - "name": "fwTimestampPacket", - "printedName": "fwTimestampPacket", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTSegmentData.PacketType.Type) -> ZTCoreKit.ZTSegmentData.PacketType", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO011fwTimestampE0yA2EmF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO011fwTimestampE0yA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selectedMode", + "printedName": "selectedMode", + "children": [ { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "PacketType", - "printedName": "ZTCoreKit.ZTSegmentData.PacketType", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeInterval", + "printedName": "timeInterval", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10PacketTypeO", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10PacketTypeO", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, + "accessors": [ { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "lastSegmentId", - "printedName": "lastSegmentId(activityId:)", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, { "kind": "TypeNominal", "name": "String", @@ -80438,255 +68907,576 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13lastSegmentId08activityG0SiSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13lastSegmentId08activityG0SiSS_tFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "segmentsCount", - "printedName": "segmentsCount(activityId:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTMessageActivity", + "printedName": "ZTCoreKit.ZTMessageActivity", + "usr": "s:9ZTCoreKit17ZTMessageActivityV" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13segmentsCount10activityIdSiSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13segmentsCount10activityIdSiSS_tFZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "loadUnsent", - "printedName": "loadUnsent(activityId:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadUnsent10activityIdSayACGSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadUnsent10activityIdSayACGSS_tFZ", + "usr": "s:9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTMessageActivityV", + "mangledName": "$s9ZTCoreKit17ZTMessageActivityV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:)", + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityIdSayACGSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityIdSayACGSS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:startId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId05startH0SayACGSS_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId05startH0SayACGSS_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllPackets", - "printedName": "loadAllPackets(activityId:startId:lastId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14loadAllPackets10activityId05startI004lastI0SayACGSS_s6UInt16VSgAKtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14loadAllPackets10activityId05startI004lastI0SayACGSS_s6UInt16VSgAKtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllIds", - "printedName": "loadAllIds(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.Int]", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -80695,56 +69485,59 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadAllIds10activityId05startI003endI0SaySiGSS_s6UInt16VAJSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadAllIds10activityId05startI003endI0SaySiGSS_s6UInt16VAJSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "loadAllPacketsIds", - "printedName": "loadAllPacketsIds(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -80753,470 +69546,393 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17loadAllPacketsIds10activityId05startJ003endJ0Says6UInt16VGSS_A2ISgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17loadAllPacketsIds10activityId05startJ003endJ0Says6UInt16VGSS_A2ISgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "loadPrevious", - "printedName": "loadPrevious(activityId:chunkId:originalTimestamp:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12loadPrevious10activityId05chunkH017originalTimestampACSgSSSg_s6UInt16Vs5Int64VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12loadPrevious10activityId05chunkH017originalTimestampACSgSSSg_s6UInt16Vs5Int64VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadPacket", - "printedName": "loadPacket(activityId:id:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC10loadPacket10activityId2idACSgSSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC10loadPacket10activityId2idACSgSSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadLastFwVersionEvent", - "printedName": "loadLastFwVersionEvent(activityId:chunkId:startId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTSegmentData?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC22loadLastFwVersionEvent10activityId05chunkK005startK0ACSgSSSg_s6UInt16VAKSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC22loadLastFwVersionEvent10activityId05chunkK005startK0ACSgSSSg_s6UInt16VAKSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "loadAllChunks", - "printedName": "loadAllChunks(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTSegmentData>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:lastChunkId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object", + "paramValueOwnership": "InOut" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId09lastChunkH0SayACGSS_s6UInt16VSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId09lastChunkH0SayACGSS_s6UInt16VSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "loadAll", - "printedName": "loadAll(activityId:firstChunkId:lastChunkId:)", + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7loadAll10activityId010firstChunkH004lastjH0SayACGSS_s6UInt16VSgAKtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7loadAll10activityId010firstChunkH004lastjH0SayACGSS_s6UInt16VSgAKtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "clear", - "printedName": "clear(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC5clear10activityIdySSSg_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC5clear10activityIdySSSg_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "getMissedChunk", - "printedName": "getMissedChunk(activity:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.Object?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivity?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivity", - "printedName": "ZTCoreKit.ZTActivity", - "usr": "s:9ZTCoreKit10ZTActivityC" - } - ], - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14getMissedChunk8activitys6UInt16VSgAA10ZTActivityCSg_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14getMissedChunk8activitys6UInt16VSgAA10ZTActivityCSg_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "getMaxMissedChunk", - "printedName": "getMaxMissedChunk(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81225,50 +69941,59 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17getMaxMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17getMaxMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "getMissedPackets", - "printedName": "getMissedPackets(activityId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.UInt16]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt16]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81277,149 +70002,193 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC16getMissedPackets10activityId05startI003endI0Says6UInt16VGSgSS_A2ISgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC16getMissedPackets10activityId05startI003endI0Says6UInt16VGSgSS_A2ISgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "getMinMissedChunk", - "printedName": "getMinMissedChunk(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17getMinMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17getMinMissedChunk10activityId05chunkJ0s6UInt16VSgSS_AHtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "getMinMissedPacketId", - "printedName": "getMinMissedPacketId(activityId:startId:lastId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" - }, + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : τ_0_0.Object]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Dictionary", + "printedName": "[Swift.String : τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC20getMinMissedPacketId08activityI005startI004lastI0s6UInt16VSgSS_AiJtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC20getMinMissedPacketId08activityI005startI004lastI0s6UInt16VSgSS_AiJtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "updateSegmentsTimestamp", - "printedName": "updateSegmentsTimestamp(activityId:startId:anchorTime:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81428,77 +70197,67 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC23updateSegmentsTimestamp10activityId05startI010anchorTimeySS_s6UInt16Vs5Int64VSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC23updateSegmentsTimestamp10activityId05startI010anchorTimeySS_s6UInt16Vs5Int64VSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:SD" }, { - "kind": "Function", - "name": "checkMissedChunks", - "printedName": "checkMissedChunks(activityId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC17checkMissedChunks10activityIdSbSS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC17checkMissedChunks10activityIdSbSS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Function", - "name": "hasMissedChunks", - "printedName": "hasMissedChunks(activityId:startIndex:endIndex:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -81507,796 +70266,944 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC15hasMissedChunks10activityId10startIndex03endK0SbSS_s6UInt16VSgAJtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC15hasMissedChunks10activityId10startIndex03endK0SbSS_s6UInt16VSgAJtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:SD" }, { - "kind": "Function", - "name": "checkPacketToRemove", - "printedName": "checkPacketToRemove(activityId:packetId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0.Object]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC19checkPacketToRemove10activityId06packetJ0ySSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC19checkPacketToRemove10activityId06packetJ0ySSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "hasPreviousChunk", - "printedName": "hasPreviousChunk(activityId:currentIndex:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC16hasPreviousChunk10activityId12currentIndexSbSS_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC16hasPreviousChunk10activityId12currentIndexSbSS_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "isChunkSaved", - "printedName": "isChunkSaved(activityId:chunkId:startId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [τ_0_0.Object]]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[Swift.String : [τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12isChunkSaved10activityId05chunkI005startI0SbSSSg_s6UInt16VAJSgtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12isChunkSaved10activityId05chunkI005startI0SbSSSg_s6UInt16VAJSgtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "isSaved", - "printedName": "isSaved(activityId:chunkId:startId:endId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC7isSaved10activityId05chunkH005startH003endH0SbSSSg_s6UInt16VAKSgALtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC7isSaved10activityId05chunkH005startH003endH0SbSSSg_s6UInt16VAKSgALtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sa" }, { - "kind": "Function", - "name": "isChunkEmpty", - "printedName": "isChunkEmpty(activityId:chunkId:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC12isChunkEmpty10activityId05chunkI0SbSSSg_s6UInt16VtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC12isChunkEmpty10activityId05chunkI0SbSSSg_s6UInt16VtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sa" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "save", - "printedName": "save()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC4saveyyF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC4saveyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "paramValueOwnership": "InOut", + "usr": "s:Sq" }, { - "kind": "Function", - "name": "saveWithResult", - "printedName": "saveWithResult(_:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC14saveWithResultyS2bF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC14saveWithResultyS2bF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "forceSegmentsUpload", - "printedName": "forceSegmentsUpload(activityId:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[τ_0_0.Object]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC19forceSegmentsUpload10activityIdySS_tFZ", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC19forceSegmentsUpload10activityIdySS_tFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "updateSegment", - "printedName": "updateSegment(_:segment:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "usr": "s:Sq" + "usr": "s:Sa" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTSegmentDataC13updateSegment_7segmentySSSg_ACtF", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC13updateSegment_7segmentySSSg_ACtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit13ZTSegmentDataC", - "mangledName": "$s9ZTCoreKit13ZTSegmentDataC", + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", - "isOpen": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTNotifyDataMessage", - "printedName": "ZTNotifyDataMessage", - "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", - "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0.Object]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", "declAttributes": [ - "RawDocComment" - ] + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTActivitySummaryStatus", + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", "children": [ { - "kind": "Var", - "name": "started", - "printedName": "started", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0.Object]]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "complete", - "printedName": "complete", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[τ_0_0.Object]]?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[τ_0_0.Object]]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "name": "Array", + "printedName": "[τ_0_0.Object]", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sa" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "processing", - "printedName": "processing", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "paramValueOwnership": "InOut", + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "errored", - "printedName": "errored", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "usr": "s:Sh" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ], - "usr": "s:Sq" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<<-", + "printedName": "<<-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0.Object>?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sh" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO", - "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO", + "declKind": "Func", + "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "->>", + "printedName": "->>(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set<τ_0_0.Object>?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0.Object>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DependentMember", + "printedName": "τ_0_0.Object" } - ] + ], + "usr": "s:Sh" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ZTActivitySummary", - "printedName": "ZTActivitySummary", + "name": "ZTUserShoe", + "printedName": "ZTUserShoe", "children": [ { "kind": "Var", @@ -82305,14 +71212,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82329,14 +71244,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82353,14 +71276,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82377,8 +71308,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82387,19 +71318,27 @@ }, { "kind": "Var", - "name": "activityType", - "printedName": "activityType", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82415,14 +71354,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82439,14 +71386,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82463,8 +71418,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82473,19 +71428,40 @@ }, { "kind": "Var", - "name": "activityIdentifier", - "printedName": "activityIdentifier", + "name": "attributes", + "printedName": "attributes", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82501,14 +71477,35 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82525,14 +71522,35 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82549,8 +71567,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82559,27 +71577,27 @@ }, { "kind": "Var", - "name": "start", - "printedName": "start", + "name": "firmware", + "printedName": "firmware", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82596,21 +71614,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82628,21 +71646,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82659,8 +71677,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82669,8 +71687,8 @@ }, { "kind": "Var", - "name": "end", - "printedName": "end", + "name": "organizationId", + "printedName": "organizationId", "children": [ { "kind": "TypeNominal", @@ -82688,8 +71706,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82719,8 +71737,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82751,8 +71769,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82769,8 +71787,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82779,27 +71797,27 @@ }, { "kind": "Var", - "name": "duration", - "printedName": "duration", + "name": "createdAt", + "printedName": "createdAt", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82816,21 +71834,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82848,21 +71866,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82879,8 +71897,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82889,27 +71907,27 @@ }, { "kind": "Var", - "name": "tz", - "printedName": "tz", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -82926,21 +71944,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -82958,21 +71976,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -82989,8 +72007,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", + "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -82998,183 +72016,409 @@ ] }, { - "kind": "Var", - "name": "startDate", - "printedName": "startDate", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTUserShoe?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTUserShoe", + "printedName": "ZTCoreKit.ZTUserShoe", + "usr": "s:9ZTCoreKit10ZTUserShoeC" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Firmware", + "printedName": "Firmware", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "arch", + "printedName": "arch", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "endDate", - "printedName": "endDate", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "version", + "printedName": "version", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", @@ -83190,212 +72434,188 @@ "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "status", - "printedName": "status", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", "children": [ { "kind": "TypeNominal", - "name": "ZTActivitySummaryStatus", - "printedName": "ZTCoreKit.ZTActivitySummaryStatus", - "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + "name": "Firmware", + "printedName": "ZTCoreKit.ZTUserShoe.Firmware", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivitySummary?", - "children": [ + }, { "kind": "TypeNominal", - "name": "ZTActivitySummary", - "printedName": "ZTCoreKit.ZTActivitySummary", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC", "moduleName": "ZTCoreKit", "declAttributes": [ - "Required", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] } ], "declKind": "Class", - "usr": "s:9ZTCoreKit17ZTActivitySummaryC", - "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC", + "usr": "s:9ZTCoreKit10ZTUserShoeC", + "mangledName": "$s9ZTCoreKit10ZTUserShoeC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" @@ -83427,31 +72647,51 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, { "kind": "TypeDecl", - "name": "ZTDateFormatterTransform", - "printedName": "ZTDateFormatterTransform", + "name": "ZTButtonlessDfuCharacteristic", + "printedName": "ZTButtonlessDfuCharacteristic", "children": [ { "kind": "Var", - "name": "dateFormatter", - "printedName": "dateFormatter", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvp", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ - "HasStorage", + "HasInitialValue", "Final", - "AccessControl" + "HasStorage", + "AccessControl", + "RawDocComment" ], "isLet": true, "hasStorage": true, @@ -83463,15 +72703,16 @@ "children": [ { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0So06NSDateD0Cvg", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, "implicit": true, "declAttributes": [ "Final" @@ -83481,184 +72722,138 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(dateFormatter:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "ZTDateFormatterTransform", - "printedName": "ZTCoreKit.ZTDateFormatterTransform", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC" - }, - { - "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC04dateD0ACSo06NSDateD0C_tcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTButtonlessDfuCharacteristic", + "printedName": "ZTCoreKit.ZTButtonlessDfuCharacteristic", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", - "isOpen": true, + "overriding": true, "declAttributes": [ - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC15transformToJSONySSSg10Foundation4DateVSgF", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "isOpen": true, + "overriding": true, "declAttributes": [ - "AccessControl" + "AccessControl", + "Override", + "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "mangledName": "$s9ZTCoreKit24ZTDateFormatterTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC", + "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" ] }, { @@ -83666,23 +72861,6 @@ "name": "CoreBluetooth", "printedName": "CoreBluetooth", "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ "RawDocComment" @@ -83698,401 +72876,157 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, { "kind": "TypeDecl", - "name": "ZTBleManager", - "printedName": "ZTBleManager", + "name": "ZTSamplingMode", + "printedName": "ZTSamplingMode", "children": [ { "kind": "Var", - "name": "advertisingServices", - "printedName": "advertisingServices", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19advertisingServicesSaySo6CBUUIDCGSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } ] }, { "kind": "Var", - "name": "managerState", - "printedName": "managerState", + "name": "run", + "printedName": "run", "children": [ { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" }, { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12managerStateAA0cdF0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "instance", - "printedName": "instance", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvpZ", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvpZ", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO3runyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO3runyA2CmF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC8instanceACvgZ", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8instanceACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } ] }, { "kind": "Var", - "name": "centralManager", - "printedName": "centralManager", + "name": "walk", + "printedName": "walk", "children": [ { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", "children": [ { "kind": "TypeNominal", - "name": "ZTCBCentralManagerProtocol", - "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" + }, { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "(any ZTCoreKit.ZTCBCentralManagerProtocol)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTSamplingMode.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCBCentralManagerProtocol", - "printedName": "any ZTCoreKit.ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0AA011ZTCBCentralD8Protocol_pSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "macAddress", - "printedName": "macAddress", + "name": "parameters", + "printedName": "parameters", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvp", + "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -84102,62 +73036,77 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10macAddressSSSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", + "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "deviceInfo", - "printedName": "deviceInfo", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "ZTCoreKit.ZTSamplingMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ZTSamplingMode", + "printedName": "ZTCoreKit.ZTSamplingMode", + "usr": "s:9ZTCoreKit14ZTSamplingModeO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } ], - "hasStorage": true, + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84166,333 +73115,399 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvg", + "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTSamplingModeO", + "mangledName": "$s9ZTCoreKit14ZTSamplingModeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTEnvironment", + "printedName": "ZTEnvironment", + "children": [ + { + "kind": "Var", + "name": "dev", + "printedName": "dev", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC10deviceInfoAA08ZTDeviceF0CSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO3devyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO3devyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "serviceTypes", - "printedName": "serviceTypes", + "name": "staging", + "printedName": "staging", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } ] } - ], - "usr": "s:SD" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO7stagingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "production", + "printedName": "production", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTService.Type]", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTService.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - } - ] + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:SD" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12serviceTypesSDySSAA9ZTServiceCmGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO10productionyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "product", - "printedName": "product", + "name": "zcdev", + "printedName": "zcdev", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO5zcdevyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zcstaging", + "printedName": "zcstaging", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9zcstagingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "zcproduction", + "printedName": "zcproduction", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTEnvironment.Type) -> ZTCoreKit.ZTEnvironment", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTEnvironment.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO12zcproductionyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC7productAA13ZTProductTypeOSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "ZTEnvironment", + "printedName": "ZTCoreKit.ZTEnvironment", + "usr": "s:9ZTCoreKit13ZTEnvironmentO" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "connectedDevice", - "printedName": "connectedDevice", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvp", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivp", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84501,188 +73516,199 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC15connectedDeviceAA8ZTDeviceCSgvg", + "usr": "s:9ZTCoreKit13ZTEnvironmentO9hashValueSivg", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "foundPeripherals", - "printedName": "foundPeripherals", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "[CoreBluetooth.CBPeripheral]?", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTEnvironmentO", + "mangledName": "$s9ZTCoreKit13ZTEnvironmentO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTModuleSide", + "printedName": "ZTModuleSide", + "children": [ + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTModuleSide.Type", "children": [ { "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTModuleSideO4leftyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO4leftyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "right", + "printedName": "right", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTModuleSide.Type) -> ZTCoreKit.ZTModuleSide", "children": [ { "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "[CoreBluetooth.CBPeripheral]?", + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTModuleSide.Type", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBPeripheral]", - "children": [ - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "usr": "s:Sa" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC16foundPeripheralsSaySo12CBPeripheralCGSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit12ZTModuleSideO5rightyA2CmF", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO5rightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "scanning", - "printedName": "scanning", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTModuleSide?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTModuleSide", + "printedName": "ZTCoreKit.ZTModuleSide", + "usr": "s:9ZTCoreKit12ZTModuleSideO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC8scanningSbvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC8scanningSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "isDfuMode", - "printedName": "isDfuMode", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvp", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "SetterAccess", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -84691,1174 +73717,1126 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC9isDfuModeSbvg", + "usr": "s:9ZTCoreKit12ZTModuleSideO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO8rawValueSSvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit12ZTModuleSideO", + "mangledName": "$s9ZTCoreKit12ZTModuleSideO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "onBluetoothStateChange", - "printedName": "onBluetoothStateChange", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "decodeData", + "printedName": "decodeData(_:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", + "mangledName": "$s9ZTCoreKit10decodeData_3forxSg10Foundation0D0V_xmtSeRzSERzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encodeData", + "printedName": "encodeData(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", + "mangledName": "$s9ZTCoreKit10encodeData3for10Foundation0D0Vx_tSeRzSERzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DFUError", + "printedName": "DFUError", + "children": [ + { + "kind": "Var", + "name": "remoteLegacyDFUSuccess", + "printedName": "remoteLegacyDFUSuccess", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "CBManagerState", - "printedName": "CoreBluetooth.CBManagerState", - "usr": "c:@E@CBManagerState" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC22onBluetoothStateChangeAA8ZTSignalCySo09CBManagerG0VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteLegacyDFUSuccessyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { "kind": "Var", - "name": "onDeviceStateChange", - "printedName": "onDeviceStateChange", + "name": "remoteLegacyDFUInvalidState", + "printedName": "remoteLegacyDFUInvalidState", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUInvalidState", + "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUInvalidStateyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "remoteLegacyDFUNotSupported", + "printedName": "remoteLegacyDFUNotSupported", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC19onDeviceStateChangeAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO27remoteLegacyDFUNotSupportedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 }, { "kind": "Var", - "name": "onDeviceDiscovered", - "printedName": "onDeviceDiscovered", + "name": "remoteLegacyDFUDataExceedsLimit", + "printedName": "remoteLegacyDFUDataExceedsLimit", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUDataExceedsLimit", + "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteLegacyDFUDataExceedsLimityA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "remoteLegacyDFUCrcError", + "printedName": "remoteLegacyDFUCrcError", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC18onDeviceDiscoveredAA8ZTSignalCyAA8ZTDeviceCGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUCrcError", + "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteLegacyDFUCrcErroryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "onDeviceConnectionFailed", - "printedName": "onDeviceConnectionFailed", + "name": "remoteLegacyDFUOperationFailed", + "printedName": "remoteLegacyDFUOperationFailed", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteLegacyDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteLegacyDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "remoteSecureDFUSuccess", + "printedName": "remoteSecureDFUSuccess", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC24onDeviceConnectionFailedAA8ZTSignalCyAA8ZTDeviceCSg_s5Error_pSgtGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO22remoteSecureDFUSuccessyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 }, { "kind": "Var", - "name": "onScanFinished", - "printedName": "onScanFinished", + "name": "remoteSecureDFUOpCodeNotSupported", + "printedName": "remoteSecureDFUOpCodeNotSupported", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteSecureDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "remoteSecureDFUInvalidParameter", + "printedName": "remoteSecureDFUInvalidParameter", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC14onScanFinishedAA8ZTSignalCys5Error_pSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidParameter", + "mangledName": "$s9ZTCoreKit8DFUErrorO31remoteSecureDFUInvalidParameteryA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 }, { "kind": "Var", - "name": "onReconnectFailed", - "printedName": "onReconnectFailed", + "name": "remoteSecureDFUInsufficientResources", + "printedName": "remoteSecureDFUInsufficientResources", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInsufficientResources", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUInsufficientResourcesyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "remoteSecureDFUInvalidObject", + "printedName": "remoteSecureDFUInvalidObject", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<(any Swift.Error)?>", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC17onReconnectFailedAA8ZTSignalCys5Error_pSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUInvalidObject", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUInvalidObjectyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 }, { "kind": "Var", - "name": "onGeneralStateUpdated", - "printedName": "onGeneralStateUpdated", + "name": "remoteSecureDFUSignatureMismatch", + "printedName": "remoteSecureDFUSignatureMismatch", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUSignatureMismatch", + "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteSecureDFUSignatureMismatchyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "remoteSecureDFUUnsupportedType", + "printedName": "remoteSecureDFUUnsupportedType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC21onGeneralStateUpdatedAA8ZTSignalCyAA09ZTMessagefG0VGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUUnsupportedType", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUUnsupportedTypeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 12 }, { "kind": "Var", - "name": "onCommandAck", - "printedName": "onCommandAck", + "name": "remoteSecureDFUOperationNotPermitted", + "printedName": "remoteSecureDFUOperationNotPermitted", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationNotPermitted", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteSecureDFUOperationNotPermittedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "remoteSecureDFUOperationFailed", + "printedName": "remoteSecureDFUOperationFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTCommandResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" - } - ], - "usr": "s:Sq" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC12onCommandAckAA8ZTSignalCyAA17ZTCommandResponseCSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager(im)init", - "mangledName": "$s9ZTCoreKit12ZTBleManagerCACycfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO30remoteSecureDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" + "fixedbinaryorder": 14 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:willRestoreState:)", + "kind": "Var", + "name": "remoteSecureDFUExtendedError", + "printedName": "remoteSecureDFUExtendedError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:SD" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:willRestoreState:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16willRestoreStateySo09CBCentralD0C_SDySSypGtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteSecureDFUExtendedError", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteSecureDFUExtendedErroryA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:willRestoreState:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 15 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:connectionEventDidOccur:for:)", + "kind": "Var", + "name": "remoteExtendedErrorWrongCommandFormat", + "printedName": "remoteExtendedErrorWrongCommandFormat", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBConnectionEvent", - "printedName": "CoreBluetooth.CBConnectionEvent", - "usr": "c:@E@CBConnectionEvent" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:connectionEventDidOccur:forPeripheral:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23connectionEventDidOccur3forySo09CBCentralD0C_So012CBConnectionG0VSo12CBPeripheralCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongCommandFormat", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongCommandFormatyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:connectionEventDidOccur:forPeripheral:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 16 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didDiscover:advertisementData:rssi:)", + "kind": "Var", + "name": "remoteExtendedErrorUnknownCommand", + "printedName": "remoteExtendedErrorUnknownCommand", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDiscoverPeripheral:advertisementData:RSSI:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_11didDiscover17advertisementData4rssiySo09CBCentralD0C_So12CBPeripheralCSDySSypGSo8NSNumberCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorUnknownCommand", + "mangledName": "$s9ZTCoreKit8DFUErrorO33remoteExtendedErrorUnknownCommandyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didDiscoverPeripheral:advertisementData:RSSI:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 17 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didFailToConnect:error:)", + "kind": "Var", + "name": "remoteExtendedErrorInitCommandInvalid", + "printedName": "remoteExtendedErrorInitCommandInvalid", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didFailToConnectPeripheral:error:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_16didFailToConnect5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInitCommandInvalid", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorInitCommandInvalidyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didFailToConnectPeripheral:error:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 18 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didConnect:)", + "kind": "Var", + "name": "remoteExtendedErrorFwVersionFailure", + "printedName": "remoteExtendedErrorFwVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didConnectPeripheral:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_10didConnectySo09CBCentralD0C_So12CBPeripheralCtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorFwVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorFwVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didConnectPeripheral:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 19 }, { - "kind": "Function", - "name": "centralManager", - "printedName": "centralManager(_:didDisconnectPeripheral:error:)", + "kind": "Var", + "name": "remoteExtendedErrorHwVersionFailure", + "printedName": "remoteExtendedErrorHwVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManager:didDisconnectPeripheral:error:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD0_23didDisconnectPeripheral5errorySo09CBCentralD0C_So12CBPeripheralCs5Error_pSgtF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHwVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorHwVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManager:didDisconnectPeripheral:error:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 20 }, { - "kind": "Function", - "name": "centralManagerDidUpdateState", - "printedName": "centralManagerDidUpdateState(_:)", + "kind": "Var", + "name": "remoteExtendedErrorSdVersionFailure", + "printedName": "remoteExtendedErrorSdVersionFailure", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CBCentralManager", - "printedName": "CoreBluetooth.CBCentralManager", - "usr": "c:objc(cs)CBCentralManager" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "c:@CM@ZTCoreKit@objc(cs)ZTBleManager(im)centralManagerDidUpdateState:", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC07centralD14DidUpdateStateyySo09CBCentralD0CF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSdVersionFailure", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSdVersionFailureyA2CmF", "moduleName": "ZTCoreKit", - "objc_name": "centralManagerDidUpdateState:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager", - "mangledName": "$s9ZTCoreKit12ZTBleManagerC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "fixedbinaryorder": 21 }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoCommand", - "printedName": "ZTAlgoCommand", - "children": [ { "kind": "Var", - "name": "getStatus", - "printedName": "getStatus", + "name": "remoteExtendedErrorSignatureMissing", + "printedName": "remoteExtendedErrorSignatureMissing", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85866,39 +74844,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorSignatureMissing", + "mangledName": "$s9ZTCoreKit8DFUErrorO35remoteExtendedErrorSignatureMissingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 22 }, { "kind": "Var", - "name": "startNewChunk", - "printedName": "startNewChunk", + "name": "remoteExtendedErrorWrongHashType", + "printedName": "remoteExtendedErrorWrongHashType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85906,39 +74886,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongHashType", + "mangledName": "$s9ZTCoreKit8DFUErrorO32remoteExtendedErrorWrongHashTypeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 23 }, { "kind": "Var", - "name": "changeProductMode", - "printedName": "changeProductMode", + "name": "remoteExtendedErrorHashFailed", + "printedName": "remoteExtendedErrorHashFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85946,39 +74928,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorHashFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO29remoteExtendedErrorHashFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 24 }, { "kind": "Var", - "name": "setPrecisionMode", - "printedName": "setPrecisionMode", + "name": "remoteExtendedErrorWrongSignatureType", + "printedName": "remoteExtendedErrorWrongSignatureType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -85986,39 +74970,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorWrongSignatureType", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorWrongSignatureTypeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 25 }, { "kind": "Var", - "name": "setMinimumNumberOfStrides", - "printedName": "setMinimumNumberOfStrides", + "name": "remoteExtendedErrorVerificationFailed", + "printedName": "remoteExtendedErrorVerificationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86026,39 +75012,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorVerificationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteExtendedErrorVerificationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 26 }, { "kind": "Var", - "name": "enableStreamingOfValues", - "printedName": "enableStreamingOfValues", + "name": "remoteExtendedErrorInsufficientSpace", + "printedName": "remoteExtendedErrorInsufficientSpace", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86066,39 +75054,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExtendedErrorInsufficientSpace", + "mangledName": "$s9ZTCoreKit8DFUErrorO36remoteExtendedErrorInsufficientSpaceyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 27 }, { "kind": "Var", - "name": "setDisconnectionDelay", - "printedName": "setDisconnectionDelay", + "name": "remoteExperimentalButtonlessDFUSuccess", + "printedName": "remoteExperimentalButtonlessDFUSuccess", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86106,39 +75096,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO38remoteExperimentalButtonlessDFUSuccessyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 28 }, { "kind": "Var", - "name": "setUserInfo", - "printedName": "setUserInfo", + "name": "remoteExperimentalButtonlessDFUOpCodeNotSupported", + "printedName": "remoteExperimentalButtonlessDFUOpCodeNotSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86146,39 +75138,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO49remoteExperimentalButtonlessDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 29 }, { "kind": "Var", - "name": "setDailyTimestamp", - "printedName": "setDailyTimestamp", + "name": "remoteExperimentalButtonlessDFUOperationFailed", + "printedName": "remoteExperimentalButtonlessDFUOperationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86186,39 +75180,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteExperimentalButtonlessDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO46remoteExperimentalButtonlessDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 30 }, { "kind": "Var", - "name": "getPositionOfPods", - "printedName": "getPositionOfPods", + "name": "remoteButtonlessDFUSuccess", + "printedName": "remoteButtonlessDFUSuccess", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86226,39 +75222,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUSuccess", + "mangledName": "$s9ZTCoreKit8DFUErrorO26remoteButtonlessDFUSuccessyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 31 }, { "kind": "Var", - "name": "enableSpecificPacket", - "printedName": "enableSpecificPacket", + "name": "remoteButtonlessDFUOpCodeNotSupported", + "printedName": "remoteButtonlessDFUOpCodeNotSupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86266,39 +75264,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOpCodeNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO37remoteButtonlessDFUOpCodeNotSupportedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 32 }, { "kind": "Var", - "name": "holdRealtimeStreaming", - "printedName": "holdRealtimeStreaming", + "name": "remoteButtonlessDFUOperationFailed", + "printedName": "remoteButtonlessDFUOperationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86306,39 +75306,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUOperationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO34remoteButtonlessDFUOperationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 33 }, { "kind": "Var", - "name": "getSingleTimeMetrics", - "printedName": "getSingleTimeMetrics", + "name": "remoteButtonlessDFUInvalidAdvertisementName", + "printedName": "remoteButtonlessDFUInvalidAdvertisementName", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86346,39 +75348,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUInvalidAdvertisementName", + "mangledName": "$s9ZTCoreKit8DFUErrorO43remoteButtonlessDFUInvalidAdvertisementNameyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 34 }, { "kind": "Var", - "name": "calibrateGravity", - "printedName": "calibrateGravity", + "name": "remoteButtonlessDFUBusy", + "printedName": "remoteButtonlessDFUBusy", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86386,195 +75390,125 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUBusy", + "mangledName": "$s9ZTCoreKit8DFUErrorO23remoteButtonlessDFUBusyyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 35 }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "remoteButtonlessDFUNotBonded", + "printedName": "remoteButtonlessDFUNotBonded", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoCommand?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoCommand", - "printedName": "ZTCoreKit.ZTAlgoCommand", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorRemoteButtonlessDFUNotBonded", + "mangledName": "$s9ZTCoreKit8DFUErrorO28remoteButtonlessDFUNotBondedyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 36 }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "fileNotSpecified", + "printedName": "fileNotSpecified", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTAlgoCommandO", - "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTAlgoMode", - "printedName": "ZTAlgoMode", - "children": [ + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileNotSpecified", + "mangledName": "$s9ZTCoreKit8DFUErrorO16fileNotSpecifiedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 37 + }, { "kind": "Var", - "name": "monitoring", - "printedName": "monitoring", + "name": "fileInvalid", + "printedName": "fileInvalid", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86582,36 +75516,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10monitoringyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFileInvalid", + "mangledName": "$s9ZTCoreKit8DFUErrorO11fileInvalidyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 38 }, { "kind": "Var", - "name": "gaming", - "printedName": "gaming", + "name": "extendedInitPacketRequired", + "printedName": "extendedInitPacketRequired", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTAlgoMode.Type) -> ZTCoreKit.ZTAlgoMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTAlgoMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -86619,621 +75558,419 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO6gamingyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorExtendedInitPacketRequired", + "mangledName": "$s9ZTCoreKit8DFUErrorO26extendedInitPacketRequiredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 39 }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "initPacketRequired", + "printedName": "initPacketRequired", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInitPacketRequired", + "mangledName": "$s9ZTCoreKit8DFUErrorO18initPacketRequiredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 40 }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "failedToConnect", + "printedName": "failedToConnect", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTAlgoMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTAlgoMode", - "printedName": "ZTCoreKit.ZTAlgoMode", - "usr": "s:9ZTCoreKit10ZTAlgoModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValueACSgs5UInt8V_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorFailedToConnect", + "mangledName": "$s9ZTCoreKit8DFUErrorO15failedToConnectyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 41 }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "deviceDisconnected", + "printedName": "deviceDisconnected", "children": [ { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTAlgoModeO", - "mangledName": "$s9ZTCoreKit10ZTAlgoModeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "ZTEnum", - "printedName": "ZTEnum", - "usr": "s:9ZTCoreKit6ZTEnumP", - "mangledName": "$s9ZTCoreKit6ZTEnumP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceDisconnected", + "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceDisconnectedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 42 }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageActivity", - "printedName": "ZTMessageActivity", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "bluetoothDisabled", + "printedName": "bluetoothDisabled", "children": [ { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV5bytesACSays5UInt8VG_tcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBluetoothDisabled", + "mangledName": "$s9ZTCoreKit8DFUErrorO17bluetoothDisabledyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" + "fixedbinaryorder": 43 }, { "kind": "Var", - "name": "isRight", - "printedName": "isRight", + "name": "serviceDiscoveryFailed", + "printedName": "serviceDiscoveryFailed", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV7isRightSbvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV7isRightSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isLeft", - "printedName": "isLeft", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorServiceDiscoveryFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO22serviceDiscoveryFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6isLeftSbvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "fixedbinaryorder": 44 }, { "kind": "Var", - "name": "selectedMode", - "printedName": "selectedMode", + "name": "deviceNotSupported", + "printedName": "deviceNotSupported", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityMode?", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityMode", - "printedName": "ZTCoreKit.ZTActivityMode", - "usr": "s:9ZTCoreKit14ZTActivityModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12selectedModeAA010ZTActivityF0OSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorDeviceNotSupported", + "mangledName": "$s9ZTCoreKit8DFUErrorO18deviceNotSupportedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 45 }, { "kind": "Var", - "name": "timeInterval", - "printedName": "timeInterval", + "name": "readingVersionFailed", + "printedName": "readingVersionFailed", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReadingVersionFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO20readingVersionFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 46 + }, + { + "kind": "Var", + "name": "enablingControlPointFailed", + "printedName": "enablingControlPointFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV12timeIntervalSiSgvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorEnablingControlPointFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO26enablingControlPointFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 47 + }, + { + "kind": "Var", + "name": "writingCharacteristicFailed", + "printedName": "writingCharacteristicFailed", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivity", - "printedName": "ZTCoreKit.ZTMessageActivity", - "usr": "s:9ZTCoreKit17ZTMessageActivityV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV4fromACs7Decoder_p_tKcfc", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorWritingCharacteristicFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO27writingCharacteristicFailedyA2CmF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } + "declAttributes": [ + "RawDocComment", + "ObjC" ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit17ZTMessageActivityV", - "mangledName": "$s9ZTCoreKit17ZTMessageActivityV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "fixedbinaryorder": 48 }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTSamplingMode", - "printedName": "ZTSamplingMode", - "children": [ { "kind": "Var", - "name": "jump", - "printedName": "jump", + "name": "receivingNotificationFailed", + "printedName": "receivingNotificationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87241,39 +75978,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4jumpyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorReceivingNotificationFailed", + "mangledName": "$s9ZTCoreKit8DFUErrorO27receivingNotificationFailedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 49 }, { "kind": "Var", - "name": "run", - "printedName": "run", + "name": "unsupportedResponse", + "printedName": "unsupportedResponse", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87281,39 +76020,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO3runyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO3runyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorUnsupportedResponse", + "mangledName": "$s9ZTCoreKit8DFUErrorO19unsupportedResponseyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 50 }, { "kind": "Var", - "name": "walk", - "printedName": "walk", + "name": "bytesLost", + "printedName": "bytesLost", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTSamplingMode.Type) -> ZTCoreKit.ZTSamplingMode", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTSamplingMode.Type", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ] } @@ -87321,68 +76062,98 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO4walkyA2CmF", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorBytesLost", + "mangledName": "$s9ZTCoreKit8DFUErrorO9bytesLostyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" - ] + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 51 }, { "kind": "Var", - "name": "parameters", - "printedName": "parameters", + "name": "crcError", + "printedName": "crcError", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + } + ] } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvp", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorCrcError", + "mangledName": "$s9ZTCoreKit8DFUErrorO8crcErroryA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "RawDocComment", + "ObjC" ], - "accessors": [ + "fixedbinaryorder": 52 + }, + { + "kind": "Var", + "name": "invalidInternalState", + "printedName": "invalidInternalState", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUError.Type) -> ZTCoreKit.DFUError", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUError.Type", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } - ], - "usr": "s:Sa" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO10parametersSays5UInt8VGvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUError@DFUErrorInvalidInternalState", + "mangledName": "$s9ZTCoreKit8DFUErrorO20invalidInternalStateyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 53 }, { "kind": "Constructor", @@ -87392,27 +76163,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTSamplingMode?", + "printedName": "ZTCoreKit.DFUError?", "children": [ { "kind": "TypeNominal", - "name": "ZTSamplingMode", - "printedName": "ZTCoreKit.ZTSamplingMode", - "usr": "s:9ZTCoreKit14ZTSamplingModeO" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -87424,14 +76195,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvp", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -87442,14 +76213,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO8rawValues5UInt8Vvg", + "usr": "s:9ZTCoreKit8DFUErrorO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8DFUErrorO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -87458,14 +76229,15 @@ } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTSamplingModeO", - "mangledName": "$s9ZTCoreKit14ZTSamplingModeO", + "usr": "c:@M@ZTCoreKit@E@DFUError", + "mangledName": "$s9ZTCoreKit8DFUErrorO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "Int", "conformances": [ { "kind": "Conformance", @@ -87493,83 +76265,49 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] } ], "usr": "s:SY", "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" } ] }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "ZTDFUState", - "printedName": "ZTDFUState", + "name": "DFUState", + "printedName": "DFUState", "children": [ { "kind": "Var", - "name": "started", - "printedName": "started", + "name": "connecting", + "printedName": "connecting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87577,36 +76315,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO7startedyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO7startedyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateConnecting", + "mangledName": "$s9ZTCoreKit8DFUStateO10connectingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 }, { "kind": "Var", - "name": "startedLeft", - "printedName": "startedLeft", + "name": "starting", + "printedName": "starting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87614,36 +76357,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateStarting", + "mangledName": "$s9ZTCoreKit8DFUStateO8startingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 }, { "kind": "Var", - "name": "completedLeft", - "printedName": "completedLeft", + "name": "enablingDfuMode", + "printedName": "enablingDfuMode", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87651,36 +76399,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateEnablingDfuMode", + "mangledName": "$s9ZTCoreKit8DFUStateO15enablingDfuModeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 }, { "kind": "Var", - "name": "startedRight", - "printedName": "startedRight", + "name": "uploading", + "printedName": "uploading", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87688,36 +76441,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateUploading", + "mangledName": "$s9ZTCoreKit8DFUStateO9uploadingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 }, { "kind": "Var", - "name": "completedRight", - "printedName": "completedRight", + "name": "validating", + "printedName": "validating", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87725,36 +76483,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateValidating", + "mangledName": "$s9ZTCoreKit8DFUStateO10validatingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "completed", - "printedName": "completed", + "name": "disconnecting", + "printedName": "disconnecting", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87762,36 +76525,41 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO9completedyA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO9completedyA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateDisconnecting", + "mangledName": "$s9ZTCoreKit8DFUStateO13disconnectingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "completed", + "printedName": "completed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTDFUState.Type", + "printedName": "ZTCoreKit.DFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ] } @@ -87799,49 +76567,56 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit10ZTDFUStateO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO5erroryA2CmF", - "moduleName": "ZTCoreKit" + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateCompleted", + "mangledName": "$s9ZTCoreKit8DFUStateO9completedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "aborted", + "printedName": "aborted", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUState.Type) -> ZTCoreKit.DFUState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUState@DFUStateAborted", + "mangledName": "$s9ZTCoreKit8DFUStateO7abortedyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 }, { "kind": "Constructor", @@ -87851,13 +76626,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDFUState?", + "printedName": "ZTCoreKit.DFUState?", "children": [ { "kind": "TypeNominal", - "name": "ZTDFUState", - "printedName": "ZTCoreKit.ZTDFUState", - "usr": "s:9ZTCoreKit10ZTDFUStateO" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } ], "usr": "s:Sq" @@ -87870,8 +76645,8 @@ } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", "implicit": true, "init_kind": "Designated" @@ -87889,8 +76664,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivp", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivp", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -87907,21 +76682,64 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivg", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "usr": "s:9ZTCoreKit8DFUStateO8rawValueSivg", + "mangledName": "$s9ZTCoreKit8DFUStateO8rawValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8DFUStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8DFUStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], "declKind": "Enum", - "usr": "s:9ZTCoreKit10ZTDFUStateO", - "mangledName": "$s9ZTCoreKit10ZTDFUStateO", + "usr": "c:@M@ZTCoreKit@E@DFUState", + "mangledName": "$s9ZTCoreKit8DFUStateO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" ], "enumRawTypeName": "Int", @@ -87961,2280 +76779,2760 @@ ], "usr": "s:SY", "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "DFUProgressDelegate", + "printedName": "DFUProgressDelegate", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "dfuProgressDidChange", + "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate(im)dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avgnopQ0ySi_S2iS2dtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUProgressDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", + "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "TypeDecl", + "name": "DFUServiceDelegate", + "printedName": "DFUServiceDelegate", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "dfuStateDidChange", + "printedName": "dfuStateDidChange(to:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUState", + "printedName": "ZTCoreKit.DFUState", + "usr": "c:@M@ZTCoreKit@E@DFUState" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuStateDidChangeTo:", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP17dfuStateDidChange2toyAA8DFUStateO_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "dfuStateDidChangeTo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Function", + "name": "dfuError", + "printedName": "dfuError(_:didOccurWithMessage:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "DFUError", + "printedName": "ZTCoreKit.DFUError", + "usr": "c:@M@ZTCoreKit@E@DFUError" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate(im)dfuError:didOccurWithMessage:", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUServiceDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", + "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "ObjC", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTMessageChunkSendStatus", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Var", + "name": "errorOutOfRange", + "printedName": "errorOutOfRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorSendFailed", + "printedName": "errorSendFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorUnexpected", + "printedName": "errorUnexpected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errorNotFound", + "printedName": "errorNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", - "children": [ + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sa" + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Var", + "name": "bytes", + "printedName": "bytes", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[τ_0_0.Object]", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sa" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Var", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", + "kind": "Var", + "name": "chunkId", + "printedName": "chunkId", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "Optional", + "printedName": "Swift.UInt16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt16?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object", - "paramValueOwnership": "InOut" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt16?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTMessageChunkSendStatus", + "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyy6ObjectQzSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Struct", + "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV", + "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "TypeDecl", + "name": "ZTTransformOf", + "printedName": "ZTTransformOf", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.Object?", + "kind": "Constructor", + "name": "init", + "printedName": "init(fromJSON:toJSON:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ + "name": "ZTTransformOf", + "printedName": "ZTCoreKit.ZTTransformOf<τ_0_0, τ_0_1>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:9ZTCoreKit13ZTTransformOfC" + }, { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_1?) -> τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + } + ] }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?) -> τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyy6ObjectQzSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC8fromJSON02toF0ACyxq_GxSgq_Sgc_AhGctcfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC17transformFromJSONyxSgypSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_1?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC15transformToJSONyq_SgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTTransformOfC", + "mangledName": "$s9ZTCoreKit13ZTTransformOfC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0, τ_0_1>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ] } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "TypeDecl", + "name": "ZTEnumTransform", + "printedName": "ZTEnumTransform", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "ZTEnumTransform", + "printedName": "ZTCoreKit.ZTEnumTransform<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit15ZTEnumTransformC" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit15ZTEnumTransformCACyxGycfc", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformCACyxGycfc", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySS6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0.Object]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Optional", + "printedName": "τ_0_0.RawValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.RawValue" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySS6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit15ZTEnumTransformC", + "mangledName": "$s9ZTCoreKit15ZTEnumTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", "name": "DependentMember", - "printedName": "τ_0_0.Object" + "printedName": "τ_0_0.RawValue" } - ], - "usr": "s:Sa" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl", "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Alamofire", + "printedName": "Alamofire", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTISO8601DateTransform", + "printedName": "ZTISO8601DateTransform", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" + "name": "ZTISO8601DateTransform", + "printedName": "ZTCoreKit.ZTISO8601DateTransform", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" } ], - "usr": "s:SD" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(dateFormatter:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTISO8601DateTransform", + "printedName": "ZTCoreKit.ZTISO8601DateTransform", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DateFormatter", + "printedName": "Foundation.DateFormatter", + "usr": "c:objc(cs)NSDateFormatter" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC", + "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", + "superclassNames": [ + "ZTCoreKit.ZTDateFormatterTransform" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0.Object]]?", + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDFUState", + "printedName": "ZTDFUState", + "children": [ + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:SD" + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO7startedyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO7startedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "startedLeft", + "printedName": "startedLeft", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySDySSSay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11startedLeftyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0.Object]]?", + "kind": "Var", + "name": "completedLeft", + "printedName": "completedLeft", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0.Object]]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:SD" + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO13completedLeftyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "startedRight", + "printedName": "startedRight", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySDySSSay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO12startedRightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "completedRight", + "printedName": "completedRight", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO14completedRightyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "completed", + "printedName": "completed", "children": [ { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO9completedyA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO9completedyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "Var", + "name": "error", + "printedName": "error", "children": [ { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTDFUState.Type) -> ZTCoreKit.ZTDFUState", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTDFUState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" + } + ] + } + ] } ], - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit10ZTDFUStateO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO5erroryA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTDFUStateO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTDFUState?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTDFUState", + "printedName": "ZTCoreKit.ZTDFUState", + "usr": "s:9ZTCoreKit10ZTDFUStateO" } ], - "usr": "s:Sa" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueACSgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO8rawValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyySay6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit10ZTDFUStateO", + "mangledName": "$s9ZTCoreKit10ZTDFUStateO", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + "enumRawTypeName": "Int", + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0.Object]?", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] + "usr": "s:SY", + "mangledName": "$sSY" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyySay6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzAA14ZTBaseMappableADRQlF", + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "RawDocComment" + ] }, { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTFirmwareRevision", + "printedName": "ZTFirmwareRevision", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Var", + "name": "fwSystemVersion", + "printedName": "fwSystemVersion", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC15fwSystemVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Var", + "name": "productType", + "printedName": "productType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTProductCodeType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTProductCodeType", + "printedName": "ZTCoreKit.ZTProductCodeType", + "usr": "s:9ZTCoreKit17ZTProductCodeTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC11productTypeAA013ZTProductCodeF0OSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "bmVersion", + "printedName": "bmVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9bmVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGG_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0.Object]]?", + "kind": "Var", + "name": "date", + "printedName": "date", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4date10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3llsoiyySaySay6ObjectQzGGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC9fwVersionSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0.Object]]?", + "kind": "Var", + "name": "versions", + "printedName": "versions", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFwBmVersion?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "ZTFwBmVersion", + "printedName": "ZTCoreKit.ZTFwBmVersion", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTFwBmVersion?", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "ZTFwBmVersion", + "printedName": "ZTCoreKit.ZTFwBmVersion", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC8versionsAA13ZTFwBmVersionVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Constructor", + "name": "init", + "printedName": "init(code:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit3sggoiyySaySay6ObjectQzGGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC4codeACSS_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } ], - "paramValueOwnership": "InOut", - "usr": "s:Sh" + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC1loiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "kind": "Function", + "name": ">=", + "printedName": ">=(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" + }, + { + "kind": "TypeNominal", + "name": "ZTFirmwareRevision", + "printedName": "ZTCoreKit.ZTFirmwareRevision", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" } ], - "usr": "s:Sh" + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC2geoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "fwSystemMajorVersion", + "printedName": "fwSystemMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMajorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzG_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "<<-", - "printedName": "<<-(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0.Object>?", + "kind": "Var", + "name": "fwSystemMinorVersion", + "printedName": "fwSystemMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemMinorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "paramValueOwnership": "InOut", - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "fwSystemBuildVersion", + "printedName": "fwSystemBuildVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC20fwSystemBuildVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3llsoiyyShy6ObjectQzGSgz_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "->>", - "printedName": "->>(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0.Object>?", + "kind": "Var", + "name": "bmMajorVersion", + "printedName": "bmMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0.Object>", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMajorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTMap, τ_0_0)", + "kind": "Var", + "name": "bmMinorVersion", + "printedName": "bmMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC14bmMinorVersionSivg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", - "mangledName": "$s9ZTCoreKit3sggoiyyShy6ObjectQzGSg_AA5ZTMapC_xttAA15ZTTransformTypeRzSHADRQAA14ZTBaseMappableADRQlF", + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC", + "mangledName": "$s9ZTCoreKit18ZTFirmwareRevisionC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType, τ_0_0.Object : Swift.Hashable, τ_0_0.Object : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } ] }, { "kind": "TypeDecl", - "name": "ZTMediaFile", - "printedName": "ZTMediaFile", + "name": "ZTFwBmVersion", + "printedName": "ZTFwBmVersion", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "fwSystemMajorVersion", + "printedName": "fwSystemMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -90245,22 +79543,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90277,22 +79567,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90309,8 +79591,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMajorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90319,30 +79601,21 @@ }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "fwSystemMinorVersion", + "printedName": "fwSystemMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90355,22 +79628,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90387,22 +79652,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90419,8 +79676,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemMinorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90429,30 +79686,21 @@ }, { "kind": "Var", - "name": "mimeType", - "printedName": "mimeType", + "name": "fwSystemBuildVersion", + "printedName": "fwSystemBuildVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90465,22 +79713,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90497,22 +79737,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90529,8 +79761,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV013fwSystemBuildE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90539,30 +79771,21 @@ }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "bmMajorVersion", + "printedName": "bmMajorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90575,22 +79798,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90607,22 +79822,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90639,8 +79846,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMajorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -90649,30 +79856,21 @@ }, { "kind": "Var", - "name": "url", - "printedName": "url", + "name": "bmMinorVersion", + "printedName": "bmMinorVersion", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvp", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", "HasStorage", "AccessControl" ], @@ -90685,22 +79883,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvg", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90717,22 +79907,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvs", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0Sivs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90749,44 +79931,120 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV07bmMinorE0SivM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] - }, + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit13ZTFwBmVersionV", + "mangledName": "$s9ZTCoreKit13ZTFwBmVersionV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCoreDataStack", + "printedName": "ZTCoreDataStack", + "children": [ { "kind": "Var", - "name": "mfableId", - "printedName": "mfableId", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTCoreDataStack", + "printedName": "ZTCoreKit.ZTCoreDataStack", + "usr": "s:9ZTCoreKit0A9DataStackC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit0A9DataStackC6sharedACvpZ", + "mangledName": "$s9ZTCoreKit0A9DataStackC6sharedACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTCoreDataStack", + "printedName": "ZTCoreKit.ZTCoreDataStack", + "usr": "s:9ZTCoreKit0A9DataStackC" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit0A9DataStackC6sharedACvgZ", + "mangledName": "$s9ZTCoreKit0A9DataStackC6sharedACvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvp", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Lazy", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -90795,22 +80053,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvg", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -90827,22 +80077,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvs", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -90859,44 +80101,143 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", + "usr": "s:9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvM", + "mangledName": "$s9ZTCoreKit0A9DataStackC7contextSo22NSManagedObjectContextCvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "oneTimeBackgroundContext", + "printedName": "oneTimeBackgroundContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC24oneTimeBackgroundContextSo015NSManagedObjectH0CyF", + "mangledName": "$s9ZTCoreKit0A9DataStackC24oneTimeBackgroundContextSo015NSManagedObjectH0CyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveOneTimeBackgroundContext", + "printedName": "saveOneTimeBackgroundContext(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC28saveOneTimeBackgroundContextyySo015NSManagedObjectI0CKF", + "mangledName": "$s9ZTCoreKit0A9DataStackC28saveOneTimeBackgroundContextyySo015NSManagedObjectI0CKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveContext", + "printedName": "saveContext()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit0A9DataStackC11saveContextyyKF", + "mangledName": "$s9ZTCoreKit0A9DataStackC11saveContextyyKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit0A9DataStackC", + "mangledName": "$s9ZTCoreKit0A9DataStackC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "children": [ { "kind": "Var", - "name": "mfableType", - "printedName": "mfableType", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -90906,23 +80247,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" }, { @@ -90938,23 +80282,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvs", "moduleName": "ZTCoreKit", - "implicit": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "set" }, { @@ -90969,42 +80316,89 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP03rawD010Foundation0D0VSgvM", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTNotifyDataMessage>", + "sugared_genericSig": "", + "protocolReq": true, "implicit": true, + "reqNewWitnessTableEntry": true, "accessorKind": "_modify" } ] + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMediaFile", + "printedName": "ZTMediaFile", + "children": [ { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -91016,21 +80410,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -91048,21 +80442,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -91079,8 +80473,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC2idSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC2idSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -91089,27 +80483,27 @@ }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -91126,21 +80520,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -91158,21 +80552,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -91189,234 +80583,41 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMediaFile?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMediaFile", - "printedName": "ZTCoreKit.ZTMediaFile", - "usr": "s:9ZTCoreKit11ZTMediaFileC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit11ZTMediaFileC", - "mangledName": "$s9ZTCoreKit11ZTMediaFileC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapContext", - "printedName": "ZTMapContext", - "declKind": "Protocol", - "usr": "s:9ZTCoreKit12ZTMapContextP", - "mangledName": "$s9ZTCoreKit12ZTMapContextP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMap", - "printedName": "ZTMap", - "children": [ - { - "kind": "Var", - "name": "mappingType", - "printedName": "mappingType", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingTypeAA09ZTMappingE0Ovg", + "usr": "s:9ZTCoreKit11ZTMediaFileC4nameSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC4nameSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "JSON", - "printedName": "JSON", + "name": "mimeType", + "printedName": "mimeType", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvp", - "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91428,113 +80629,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC4JSONSDySSypGvg", - "mangledName": "$s9ZTCoreKit5ZTMapC4JSONSDySSypGvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isKeyPresent", - "printedName": "isKeyPresent", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC12isKeyPresentSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC12isKeyPresentSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mimeTypeSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "currentValue", - "printedName": "currentValue", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91547,33 +80740,81 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC12currentValueypSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC12currentValueypSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3keySSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "currentKey", - "printedName": "currentKey", + "name": "url", + "printedName": "url", "children": [ { "kind": "TypeNominal", @@ -91591,14 +80832,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -91624,93 +80863,90 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC10currentKeySSSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC10currentKeySSSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "nestedKeyDelimiter", - "printedName": "nestedKeyDelimiter", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", - "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", - "mangledName": "$s9ZTCoreKit5ZTMapC18nestedKeyDelimiterSSvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "accessorKind": "get" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3urlSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "context", - "printedName": "context", + "name": "mfableId", + "printedName": "mfableId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -91724,26 +80960,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -91759,26 +80992,23 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -91793,36 +81023,40 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", - "mangledName": "$s9ZTCoreKit5ZTMapC7contextAA0C7Context_pSgvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC8mfableIdSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shouldIncludeNilValues", - "printedName": "shouldIncludeNilValues", + "name": "mfableType", + "printedName": "mfableType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -91835,19 +81069,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -91862,19 +81101,24 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvs", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -91889,40 +81133,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", - "mangledName": "$s9ZTCoreKit5ZTMapC22shouldIncludeNilValuesSbvM", + "usr": "s:9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC10mfableTypeSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "toObject", - "printedName": "toObject", + "name": "createdAt", + "printedName": "createdAt", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvp", - "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvp", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -91932,126 +81179,108 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC8toObjectSbvg", - "mangledName": "$s9ZTCoreKit5ZTMapC8toObjectSbvg", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(mappingType:JSON:toObject:context:shouldIncludeNilValues:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" }, { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", - "mangledName": "$s9ZTCoreKit5ZTMapC11mappingType4JSON8toObject7context22shouldIncludeNilValuesAcA09ZTMappingE0O_SDySSypGSbAA0C7Context_pSgSbtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapCyACSScip", - "mangledName": "$s9ZTCoreKit5ZTMapCyACSScip", + "declKind": "Var", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -92060,465 +81289,235 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapCyACSScig", - "mangledName": "$s9ZTCoreKit5ZTMapCyACSScig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:delimiter:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiterACSS_SStcig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvs", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nestedACSS_Sbtcig", + "usr": "s:9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC9updatedAt10Foundation4DateVSgvM", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:delimiter:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMediaFile?", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiterACSS_SbSStcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:ignoreNil:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "ZTMap", "printedName": "ZTCoreKit.ZTMap", "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcip", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl" + "AccessControl", + "Required", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9ignoreNilACSS_Sbtcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:delimiter:ignoreNil:)", + "kind": "Function", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcip", + "declKind": "Func", + "usr": "s:9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_9delimiter9ignoreNilACSS_SSSbtcig", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit11ZTMediaFileC", + "mangledName": "$s9ZTCoreKit11ZTMediaFileC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:ignoreNil:)", + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTPairedSolesCharacteristic", + "printedName": "ZTPairedSolesCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcip", + "declKind": "Var", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", - "AccessControl" + "HasStorage", + "AccessControl", + "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9ignoreNilACSS_S2btcig", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4uuidSSvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "declAttributes": [ "Final" ], @@ -92527,122 +81526,181 @@ ] }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:nested:delimiter:ignoreNil:)", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], - "declKind": "Subscript", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcip", + "declKind": "Var", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", + "SetterAccess", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", "name": "Get", "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", - "mangledName": "$s9ZTCoreKit5ZTMapC_6nested9delimiter9ignoreNilACSS_SbSgSSSbtcig", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC4data10Foundation4DataVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPairedSolesCharacteristic", + "printedName": "ZTCoreKit.ZTPairedSolesCharacteristic", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Required", + "RawDocComment" + ], + "init_kind": "Designated" + }, { "kind": "Function", - "name": "value", - "printedName": "value()", + "name": "valueUpdated", + "printedName": "valueUpdated()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC12valueUpdatedyyF", + "moduleName": "ZTCoreKit", + "overriding": true, + "declAttributes": [ + "AccessControl", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit27ZTPairedSolesCharacteristicC", + "mangledName": "$s9ZTCoreKit27ZTPairedSolesCharacteristicC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTCodableTransform", + "printedName": "ZTCodableTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCodableTransform", + "printedName": "ZTCoreKit.ZTCodableTransform<τ_0_0>", "children": [ { "kind": "TypeNominal", @@ -92650,1656 +81708,1966 @@ "printedName": "τ_0_0" } ], - "usr": "s:Sq" + "usr": "s:9ZTCoreKit18ZTCodableTransformC" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5valuexSgylF", - "mangledName": "$s9ZTCoreKit5ZTMapC5valuexSgylF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit18ZTCodableTransformCACyxGycfc", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformCACyxGycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKlF", + "usr": "s:9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit18ZTCodableTransformC", + "mangledName": "$s9ZTCoreKit18ZTCodableTransformC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] }, { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ + { + "kind": "AssociatedType", + "name": "Object", + "printedName": "Object", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit15ZTTransformTypeP6ObjectQa", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP6ObjectQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "JSON", + "printedName": "JSON", + "declKind": "AssociatedType", + "usr": "s:9ZTCoreKit15ZTTransformTypeP4JSONQa", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP4JSONQa", + "moduleName": "ZTCoreKit", + "protocolReq": true + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4line6ObjectQzSS_SbSgSSxs12StaticStringVAOSutKAA15ZTTransformTypeRzlF", + "usr": "s:9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP17transformFromJSONy6ObjectQzSgypSgF", "moduleName": "ZTCoreKit", "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "τ_0_0.JSON?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DependentMember", + "printedName": "τ_0_0.JSON" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "τ_0_0.Object?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.Object" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP15transformToJSONy0G0QzSg6ObjectQzSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTNSDecimalNumberTransform", + "printedName": "ZTNSDecimalNumberTransform", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "name": "ZTNSDecimalNumberTransform", + "printedName": "ZTCoreKit.ZTNSDecimalNumberTransform", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformCACycfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "Optional", + "printedName": "Foundation.NSDecimalNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKSYRzlF", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC17transformFromJSONySo09NSDecimalD0CSgypSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "Foundation.NSDecimalNumber?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC15transformToJSONySSSgSo09NSDecimalD0CSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit26ZTNSDecimalNumberTransformC", + "mangledName": "$s9ZTCoreKit26ZTNSDecimalNumberTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDecimalNumber", + "printedName": "Foundation.NSDecimalNumber", + "usr": "c:objc(cs)NSDecimalNumber" + } + ] }, { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "DFUUuidType", + "printedName": "DFUUuidType", + "children": [ + { + "kind": "Var", + "name": "legacyService", + "printedName": "legacyService", + "children": [ { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyServiceyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "legacyControlPoint", + "printedName": "legacyControlPoint", + "children": [ { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyControlPoint", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO18legacyControlPointyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "legacyPacket", + "printedName": "legacyPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyPacket", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12legacyPacketyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "legacyVersion", + "printedName": "legacyVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeLegacyVersion", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13legacyVersionyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "secureService", + "printedName": "secureService", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureServiceyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 4 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "secureControl", + "printedName": "secureControl", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecureControl", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO13secureControlyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 5 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "securePacket", + "printedName": "securePacket", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKSYRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeSecurePacket", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO12securePacketyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 6 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessService", + "printedName": "buttonlessService", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSS_SbSgSSs12StaticStringVALSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessService", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO17buttonlessServiceyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 7 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessCharacteristic", + "printedName": "buttonlessCharacteristic", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4linexSgSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessCharacteristic", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO24buttonlessCharacteristicyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 8 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessWithoutBondSharing", + "printedName": "buttonlessWithoutBondSharing", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithoutBondSharing", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO28buttonlessWithoutBondSharingyA2CmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "fixedbinaryorder": 9 }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Var", + "name": "buttonlessWithBondSharing", + "printedName": "buttonlessWithBondSharing", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.DFUUuidType.Type) -> ZTCoreKit.DFUUuidType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.DFUUuidType.Type", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } - ], - "usr": "s:Sa" + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType@DFUUuidTypeButtonlessWithBondSharing", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO25buttonlessWithBondSharingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "ZTCoreKit.DFUUuidType?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSayxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueACSgSi_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO8rawValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType", + "mangledName": "$s9ZTCoreKit11DFUUuidTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUUuid", + "printedName": "DFUUuid", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSay6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)uuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ "Final", + "HasStorage", + "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)uuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC4uuidSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(py)type", + "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)type", + "mangledName": "$s9ZTCoreKit7DFUUuidC4typeAA0C4TypeOvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(withUUID:forType:)", + "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" }, { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" }, { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "DFUUuidType", + "printedName": "ZTCoreKit.DFUUuidType", + "usr": "c:@M@ZTCoreKit@E@DFUUuidType" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSS_SbSgSSs12StaticStringVAMSutKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)initWithUUID:forType:", + "mangledName": "$s9ZTCoreKit7DFUUuidC8withUUID7forTypeACSo6CBUUIDC_AA0cG0Otcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "objc_name": "initWithUUID:forType:", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl", + "ObjC" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + } + ], + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid(im)init", + "mangledName": "$s9ZTCoreKit7DFUUuidCACycfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid", + "mangledName": "$s9ZTCoreKit7DFUUuidC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DFUUuidHelper", + "printedName": "DFUUuidHelper", + "children": [ + { + "kind": "Var", + "name": "legacyDFUService", + "printedName": "legacyDFUService", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUControlPoint", + "printedName": "legacyDFUControlPoint", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSDySSxGSgSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0.Object]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21legacyDFUControlPointSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUPacket", + "printedName": "legacyDFUPacket", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSDySS6ObjectQzGSS_SbSgSSxs12StaticStringVAPSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15legacyDFUPacketSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDFUVersion", + "printedName": "legacyDFUVersion", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)legacyDFUVersion", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)legacyDFUVersion", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16legacyDFUVersionSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUService", + "printedName": "secureDFUService", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSgSS_SbSgSSs12StaticStringVAOSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC16secureDFUServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUControlPoint", + "printedName": "secureDFUControlPoint", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUControlPoint", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC21secureDFUControlPointSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secureDFUPacket", + "printedName": "secureDFUPacket", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter4file8function4lineSaySayxGGSS_SbSgSSs12StaticStringVANSutKAA14ZTBaseMappableRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)secureDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:nested:delimiter:using:file:function:line:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0.Object]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0.Object]", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - } - ], - "usr": "s:Sa" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)secureDFUPacket", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC15secureDFUPacketSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buttonlessExperimentalService", + "printedName": "buttonlessExperimentalService", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "hasDefaultArg": true, - "usr": "s:s12StaticStringV" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalService", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC29buttonlessExperimentalServiceSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buttonlessExperimentalCharacteristic", + "printedName": "buttonlessExperimentalCharacteristic", + "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "hasDefaultArg": true, - "usr": "s:Su" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_6nested9delimiter5using4file8function4lineSaySay6ObjectQzGGSS_SbSgSSxs12StaticStringVAQSutKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessExperimentalCharacteristic", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessExperimentalCharacteristic", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC36buttonlessExperimentalCharacteristicSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:using:)", + "kind": "Var", + "name": "buttonlessWithoutBonds", + "printedName": "buttonlessWithoutBonds", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.Object" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7default5using6ObjectQzSS_AHxtKAA15ZTTransformTypeRzlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithoutBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTTransformType>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithoutBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC22buttonlessWithoutBondsSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", + "kind": "Var", + "name": "buttonlessWithBonds", + "printedName": "buttonlessWithBonds", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKlF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(py)buttonlessWithBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasStorage", + "AccessControl", + "SetterAccess", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)buttonlessWithBonds", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC19buttonlessWithBondsSo6CBUUIDCvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultSayxGSS_AFtAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)init", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperCACycfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "overriding": true, + "objc_name": "init", "declAttributes": [ - "Final", + "Dynamic", + "ObjC", + "Override", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "value", - "printedName": "value(_:default:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(customUuids:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "DFUUuidHelper", + "printedName": "ZTCoreKit.DFUUuidHelper", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Array", + "printedName": "[ZTCoreKit.DFUUuid]", + "children": [ + { + "kind": "TypeNominal", + "name": "DFUUuid", + "printedName": "ZTCoreKit.DFUUuid", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuid" + } + ], + "usr": "s:Sa" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTMapC5value_7defaultxSS_xtKAA14ZTBaseMappableRzlF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper(im)initWithCustomUuids:", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC11customUuidsACSayAA0C0CG_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "objc_name": "initWithCustomUuids:", "declAttributes": [ - "Final", + "Convenience", + "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Convenience" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit5ZTMapC", - "mangledName": "$s9ZTCoreKit5ZTMapC", + "usr": "c:@M@ZTCoreKit@objc(cs)DFUUuidHelper", + "mangledName": "$s9ZTCoreKit13DFUUuidHelperC", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", + "ObjC", "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -94318,310 +83686,305 @@ }, { "kind": "Import", - "name": "CoreFoundation", - "printedName": "CoreFoundation", + "name": "os.log", + "printedName": "os.log", "declKind": "Import", "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTEntry", - "printedName": "ZTEntry", + "name": "ZTLogger", + "printedName": "ZTLogger", "children": [ { - "kind": "TypeDecl", - "name": "EntryType", - "printedName": "EntryType", + "kind": "Var", + "name": "instance", + "printedName": "instance", "children": [ { - "kind": "Var", - "name": "file", - "printedName": "file", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO4fileyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO4fileyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "kind": "TypeNominal", + "name": "ZTLogger", + "printedName": "ZTCoreKit.ZTLogger", + "usr": "s:9ZTCoreKit8ZTLoggerC" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvpZ", + "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "directory", - "printedName": "directory", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTLogger", + "printedName": "ZTCoreKit.ZTLogger", + "usr": "s:9ZTCoreKit8ZTLoggerC" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO9directoryyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO9directoryyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTLoggerC8instanceACvgZ", + "mangledName": "$s9ZTCoreKit8ZTLoggerC8instanceACvgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "ztDebugPrint", + "printedName": "ztDebugPrint(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "symlink", - "printedName": "symlink", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTEntry.EntryType.Type) -> ZTCoreKit.ZTEntry.EntryType", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTEntry.EntryType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO7symlinkyA2EmF", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO7symlinkyA2EmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC12ztDebugPrintyySSF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debug", + "printedName": "debug(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTEntry.EntryType?", - "children": [ - { - "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueAESgSi_tcfc", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueAESgSi_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5debugyys12StaticStringV_s7CVarArg_pdtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "info", + "printedName": "info(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO8rawValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sa" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO", - "mangledName": "$s9ZTCoreKit7ZTEntryV9EntryTypeO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC4infoyys12StaticStringV_s7CVarArg_pdtF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "Int", - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:_:)", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sa" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5erroryys12StaticStringV_s7CVarArg_pdtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "path", - "printedName": "path(using:)", + "name": "fatal", + "printedName": "fatal(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "usr": "s:s12StaticStringV" }, { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTEntryV4path5usingS2S10FoundationE8EncodingV_tF", - "mangledName": "$s9ZTCoreKit7ZTEntryV4path5usingS2S10FoundationE8EncodingV_tF", + "usr": "s:9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", + "mangledName": "$s9ZTCoreKit8ZTLoggerC5fatalyys12StaticStringV_s7CVarArg_pdtF", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit8ZTLoggerC", + "mangledName": "$s9ZTCoreKit8ZTLoggerC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "ZTLoggerLine", + "printedName": "ZTLoggerLine", + "children": [ { "kind": "Var", - "name": "path", - "printedName": "path", + "name": "notification", + "printedName": "notification", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV4pathSSvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV4pathSSvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94630,52 +83993,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV4pathSSvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV4pathSSvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV12notificationSo18NSNotificationNameavgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "fileAttributes", - "printedName": "fileAttributes", + "name": "ble", + "printedName": "ble", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.FileAttributeKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "FileAttributeKey", - "printedName": "Foundation.FileAttributeKey", - "usr": "c:@T@NSFileAttributeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94684,52 +84041,44 @@ "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Foundation.FileAttributeKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "FileAttributeKey", - "printedName": "Foundation.FileAttributeKey", - "usr": "c:@T@NSFileAttributeKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV14fileAttributesSDySo18NSFileAttributeKeyaypGvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV3bleSo18NSNotificationNameavgZ", "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "checksum", - "printedName": "checksum", + "name": "date", + "printedName": "date", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV8checksums6UInt32Vvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV8checksums6UInt32Vvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94738,39 +84087,85 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV8checksums6UInt32Vvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV8checksums6UInt32Vvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4date10Foundation4DateVvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "message", + "printedName": "message", "children": [ { "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvp", - "mangledName": "$s9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94779,39 +84174,43 @@ "children": [ { "kind": "TypeNominal", - "name": "EntryType", - "printedName": "ZTCoreKit.ZTEntry.EntryType", - "usr": "s:9ZTCoreKit7ZTEntryV9EntryTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvg", - "mangledName": "$s9ZTCoreKit7ZTEntryV4typeAC9EntryTypeOvg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV7messageSSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV7messageSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "compressedSize", - "printedName": "compressedSize", + "name": "level", + "printedName": "level", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV14compressedSizeSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV14compressedSizeSivp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94820,39 +84219,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV14compressedSizeSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV14compressedSizeSivg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV5levelSSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV5levelSSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "uncompressedSize", - "printedName": "uncompressedSize", + "name": "category", + "printedName": "category", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit7ZTEntryV16uncompressedSizeSivp", - "mangledName": "$s9ZTCoreKit7ZTEntryV16uncompressedSizeSivp", + "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvp", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasStorage", "AccessControl", "RawDocComment" ], + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -94861,57 +84264,75 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit7ZTEntryV16uncompressedSizeSivg", - "mangledName": "$s9ZTCoreKit7ZTEntryV16uncompressedSizeSivg", + "usr": "s:9ZTCoreKit12ZTLoggerLineV8categorySSvg", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV8categorySSvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTLoggerLine", + "printedName": "ZTCoreKit.ZTLoggerLine", + "usr": "s:9ZTCoreKit12ZTLoggerLineV" }, { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV4fromACs7Decoder_p_tKcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ZTEntry", - "printedName": "ZTCoreKit.ZTEntry", - "usr": "s:9ZTCoreKit7ZTEntryV" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit7ZTEntryV2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit7ZTEntryV2eeoiySbAC_ACtFZ", + "usr": "s:9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], + "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:9ZTCoreKit7ZTEntryV", - "mangledName": "$s9ZTCoreKit7ZTEntryV", + "usr": "s:9ZTCoreKit12ZTLoggerLineV", + "mangledName": "$s9ZTCoreKit12ZTLoggerLineV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -94920,17 +84341,24 @@ "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -94939,456 +84367,540 @@ }, { "kind": "TypeDecl", - "name": "ZTMediaFileTemplate", - "printedName": "ZTMediaFileTemplate", + "name": "DFUPeripheralSelectorDelegate", + "printedName": "DFUPeripheralSelectorDelegate", "children": [ { - "kind": "Var", - "name": "name", - "printedName": "name", + "kind": "Function", + "name": "select", + "printedName": "select(_:advertisementData:RSSI:hint:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : AnyObject]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:SD" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4nameSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)select:advertisementData:RSSI:hint:", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "Function", + "name": "filterBy", + "printedName": "filterBy(hint:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvp", + "declKind": "Func", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate(im)filterByHint:", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP8filterBy4hintSaySo6CBUUIDCGSgAG_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.DFUPeripheralSelectorDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "filterByHint:", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "ObjC", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", + "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTAlgoAcknowledgmentStatus", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO7successyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "busy", + "printedName": "busy", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO4busyyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "invalidParam", + "printedName": "invalidParam", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC11descriptionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidParamyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "mimeType", - "printedName": "mimeType", + "name": "invalidState", + "printedName": "invalidState", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12invalidStateyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "fwResForbidden", + "printedName": "fwResForbidden", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ] + } + ] + } ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14fwResForbiddenyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "notSupported", + "printedName": "notSupported", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO12notSupportedyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknownCommand", + "printedName": "unknownCommand", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC8mimeTypeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14unknownCommandyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "commandInProgress", + "printedName": "commandInProgress", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO17commandInProgressyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "noPeerResponse", + "printedName": "noPeerResponse", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type) -> ZTCoreKit.ZTAlgoAcknowledgmentStatus", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3keySSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO14noPeerResponseyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "url", - "printedName": "url", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } ], - "hasStorage": true, + "declKind": "Var", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -95397,248 +84909,315 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvg", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", + "mangledName": "$s9ZTCoreKit26ZTAlgoAcknowledgmentStatusO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityMode", + "printedName": "ZTActivityMode", + "children": [ + { + "kind": "Var", + "name": "safety", + "printedName": "safety", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3urlSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO6safetyyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "walking", + "printedName": "walking", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7walkingyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7runningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cycling", + "printedName": "cycling", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data10Foundation4DataVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO7cyclingyA2CmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:fileName:mimeType:description:)", + "kind": "Var", + "name": "mobility", + "printedName": "mobility", "children": [ { - "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivityMode.Type) -> ZTCoreKit.ZTActivityMode", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivityMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" + } + ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8mobilityyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvp", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -95647,109 +85226,146 @@ "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTActivityModeO4nameSSvg", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC4data8fileName8mimeType11descriptionAC10Foundation4DataVSg_SSSgA2Ltcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Convenience", - "RawDocComment" - ], - "init_kind": "Convenience" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(map:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTMediaFileTemplate?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC3mapACSgAA5ZTMapC_tcfc", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Convenience", - "Required" - ], - "init_kind": "Convenience" + "implicit": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC7mapping3mapyAA5ZTMapC_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC", - "mangledName": "$s9ZTCoreKit19ZTMediaFileTemplateC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTActivityModeO", + "mangledName": "$s9ZTCoreKit14ZTActivityModeO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true, + "enumRawTypeName": "UInt8", "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -95758,126 +85374,226 @@ "name": "Foundation", "printedName": "Foundation", "declKind": "Import", - "moduleName": "ZTCoreKit" + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "TypeDecl", - "name": "ZTPlisted", - "printedName": "ZTPlisted", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTActivitySummaryStatus", "children": [ { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "started", + "printedName": "started", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV3keySSvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3keySSvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7startedyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "complete", + "printedName": "complete", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV3keySSvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3keySSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8completeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "plist", - "printedName": "plist", + "name": "processing", + "printedName": "processing", "children": [ { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO10processingyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "errored", + "printedName": "errored", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTActivitySummaryStatus.Type) -> ZTCoreKit.ZTActivitySummaryStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ] + } + ] + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO7erroredyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV5plistAA7ZTPlistCvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueACSgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "defaultValue", - "printedName": "defaultValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV12defaultValuexvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12defaultValuexvp", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -95886,86 +85602,97 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12defaultValuexvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12defaultValuexvg", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO8rawValueSSvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO", + "mangledName": "$s9ZTCoreKit23ZTActivitySummaryStatusO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:plist:defaultValue:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "ZTPlisted", - "printedName": "ZTCoreKit.ZTPlisted<τ_0_0>", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "usr": "s:9ZTCoreKit9ZTPlistedV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ZTPlist", - "printedName": "ZTCoreKit.ZTPlist", - "usr": "s:9ZTCoreKit7ZTPlistC" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit9ZTPlistedV3key5plist12defaultValueACyxGSS_AA7ZTPlistCxtcfc", - "mangledName": "$s9ZTCoreKit9ZTPlistedV3key5plist12defaultValueACyxGSS_AA7ZTPlistCxtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivitySummary", + "printedName": "ZTActivitySummary", + "children": [ { "kind": "Var", - "name": "wrappedValue", - "printedName": "wrappedValue", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvp", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -95974,16 +85701,16 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvg", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "accessorKind": "get" }, { @@ -95998,16 +85725,16 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvs", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "implicit": true, "accessorKind": "set" }, { @@ -96022,66 +85749,29 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit9ZTPlistedV12wrappedValuexvM", - "mangledName": "$s9ZTCoreKit9ZTPlistedV12wrappedValuexvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2idSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2idSSvM", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", "implicit": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit9ZTPlistedV", - "mangledName": "$s9ZTCoreKit9ZTPlistedV", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "PropertyWrapper" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapError", - "printedName": "ZTMapError", - "children": [ + }, { "kind": "Var", - "name": "key", - "printedName": "key", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96097,22 +85787,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96129,22 +85811,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96161,8 +85835,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3keySSSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3keySSSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC12activityTypeSSvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96171,26 +85845,19 @@ }, { "kind": "Var", - "name": "currentValue", - "printedName": "currentValue", + "name": "activityIdentifier", + "printedName": "activityIdentifier", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96206,21 +85873,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96237,21 +85897,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96268,8 +85921,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV12currentValueypSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC18activityIdentifierSSvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96278,8 +85931,8 @@ }, { "kind": "Var", - "name": "reason", - "printedName": "reason", + "name": "start", + "printedName": "start", "children": [ { "kind": "TypeNominal", @@ -96297,8 +85950,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96328,8 +85981,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96360,8 +86013,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96378,8 +86031,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV6reasonSSSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC5startSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96388,27 +86041,27 @@ }, { "kind": "Var", - "name": "file", - "printedName": "file", + "name": "end", + "printedName": "end", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96425,21 +86078,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96457,21 +86110,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96488,8 +86141,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4files12StaticStringVSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3endSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96498,27 +86151,27 @@ }, { "kind": "Var", - "name": "function", - "printedName": "function", + "name": "duration", + "printedName": "duration", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96535,21 +86188,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96567,21 +86220,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.StaticString?", + "printedName": "Swift.Int?", "children": [ { "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96598,8 +86251,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV8functions12StaticStringVSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC8durationSiSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96608,27 +86261,27 @@ }, { "kind": "Var", - "name": "line", - "printedName": "line", + "name": "tz", + "printedName": "tz", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -96645,21 +86298,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -96677,21 +86330,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvs", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvs", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -96708,8 +86361,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV4lineSuSgvM", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV4lineSuSgvM", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC2tzSSSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -96717,132 +86370,35 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:currentValue:reason:file:function:line:)", + "kind": "Var", + "name": "startDate", + "printedName": "startDate", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMapError", - "printedName": "ZTCoreKit.ZTMapError", - "usr": "s:9ZTCoreKit10ZTMapErrorV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.StaticString?", - "children": [ - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.StaticString?", - "children": [ - { - "kind": "TypeNominal", - "name": "StaticString", - "printedName": "Swift.StaticString", - "usr": "s:s12StaticStringV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV3key12currentValue6reason4file8function4lineACSSSg_ypSgAJs12StaticStringVSgANSuSgtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], - "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -96851,533 +86407,108 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTMapErrorV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit10ZTMapErrorV", - "mangledName": "$s9ZTCoreKit10ZTMapErrorV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "zlib", - "printedName": "zlib", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPeriod", - "printedName": "ZTPeriod", - "children": [ - { - "kind": "Var", - "name": "day", - "printedName": "day", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO3dayyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO3dayyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "week", - "printedName": "week", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO4weekyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO4weekyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "month", - "printedName": "month", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO5monthyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO5monthyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "year", - "printedName": "year", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTPeriod.Type) -> ZTCoreKit.ZTPeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTPeriod.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit8ZTPeriodO4yearyA2CmF", - "mangledName": "$s9ZTCoreKit8ZTPeriodO4yearyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTPeriod?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTPeriod", - "printedName": "ZTCoreKit.ZTPeriod", - "usr": "s:9ZTCoreKit8ZTPeriodO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTPeriodO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit8ZTPeriodO8rawValueSSvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit8ZTPeriodO", - "mangledName": "$s9ZTCoreKit8ZTPeriodO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageGeneralState", - "printedName": "ZTMessageGeneralState", - "children": [ - { - "kind": "Var", - "name": "byte0", - "printedName": "byte0", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte0s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC9startDate10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "byte1", - "printedName": "byte1", + "name": "endDate", + "printedName": "endDate", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -97387,111 +86518,107 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte1s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "byte2", - "printedName": "byte2", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt8?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte2s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvs", "moduleName": "ZTCoreKit", - "accessorKind": "get" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7endDate10Foundation0F0VSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "byte3", - "printedName": "byte3", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvp", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -97501,92 +86628,117 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.UInt8?", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5byte3s5UInt8VSgvg", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvg", "moduleName": "ZTCoreKit", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummaryStatus", + "printedName": "ZTCoreKit.ZTActivitySummaryStatus", + "usr": "s:9ZTCoreKit23ZTActivitySummaryStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC6statusAA0cD6StatusOSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(from:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageGeneralState", - "printedName": "ZTCoreKit.ZTMessageGeneralState", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivitySummary?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivitySummary", + "printedName": "ZTCoreKit.ZTActivitySummary", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV4fromACs7Decoder_p_tKcfc", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "declAttributes": [ + "Required", + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", @@ -97595,36 +86747,95 @@ }, { "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV6encode2toys7Encoder_p_tKF", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit17ZTActivitySummaryC", + "mangledName": "$s9ZTCoreKit17ZTActivitySummaryC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCBPeripheralManagerProtocol", + "printedName": "ZTCBPeripheralManagerProtocol", + "children": [ { "kind": "Var", - "name": "activityStartedRight", - "printedName": "activityStartedRight", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97633,76 +86844,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV20activityStartedRightSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "activityStartedLeft", - "printedName": "activityStartedLeft", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralManagerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerDelegate", + "printedName": "any CoreBluetooth.CBPeripheralManagerDelegate", + "usr": "c:objc(pl)CBPeripheralManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvs", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV19activityStartedLeftSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvM", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP8delegateSo012CBPeripheralD8Delegate_pSgvM", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "pairIsConnected", - "printedName": "pairIsConnected", + "name": "state", + "printedName": "state", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97711,24 +86951,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "CBManagerState", + "printedName": "CoreBluetooth.CBManagerState", + "usr": "c:@E@CBManagerState" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV15pairIsConnectedSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP5stateSo14CBManagerStateVvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "memsHasError", - "printedName": "memsHasError", + "name": "isAdvertising", + "printedName": "isAdvertising", "children": [ { "kind": "TypeNominal", @@ -97738,10 +86981,10 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvp", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvp", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvp", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "protocolReq": true, "accessors": [ { "kind": "Accessor", @@ -97756,135 +86999,313 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV12memsHasErrorSbvg", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvg", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP13isAdvertisingSbvg", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "firmwareDifferent", - "printedName": "firmwareDifferent", + "kind": "Function", + "name": "startAdvertising", + "printedName": "startAdvertising(_:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV17firmwareDifferentSbvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP16startAdvertisingyySDySSypGSgF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP16startAdvertisingyySDySSypGSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "actualState", - "printedName": "actualState", + "kind": "Function", + "name": "stopAdvertising", + "printedName": "stopAdvertising()", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovp", + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP15stopAdvertisingyyF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP15stopAdvertisingyyF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDesiredConnectionLatency", + "printedName": "setDesiredConnectionLatency(_:for:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV06actualE0AA014ZTDeviceActualE0Ovg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBPeripheralManagerConnectionLatency", + "printedName": "CoreBluetooth.CBPeripheralManagerConnectionLatency", + "usr": "c:@E@CBPeripheralManagerConnectionLatency" + }, + { + "kind": "TypeNominal", + "name": "CBCentral", + "printedName": "CoreBluetooth.CBCentral", + "usr": "c:objc(cs)CBCentral" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP27setDesiredConnectionLatency_3forySo012CBPeripheraldhI0V_So9CBCentralCtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP27setDesiredConnectionLatency_3forySo012CBPeripheraldhI0V_So9CBCentralCtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "previousState", - "printedName": "previousState", + "kind": "Function", + "name": "add", + "printedName": "add(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBMutableService", + "printedName": "CoreBluetooth.CBMutableService", + "usr": "c:objc(cs)CBMutableService" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovp", + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP3addyySo16CBMutableServiceCF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP3addyySo16CBMutableServiceCF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(_:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBMutableService", + "printedName": "CoreBluetooth.CBMutableService", + "usr": "c:objc(cs)CBMutableService" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP6removeyySo16CBMutableServiceCF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP6removeyySo16CBMutableServiceCF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeAllServices", + "printedName": "removeAllServices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP17removeAllServicesyyF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP17removeAllServicesyyF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "respond", + "printedName": "respond(to:withResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBATTRequest", + "printedName": "CoreBluetooth.CBATTRequest", + "usr": "c:objc(cs)CBATTRequest" + }, + { + "kind": "TypeNominal", + "name": "Code", + "printedName": "CoreBluetooth.CBATTError.Code", + "usr": "c:@E@CBATTError" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP7respond2to10withResultySo12CBATTRequestC_So10CBATTErrorVtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP7respond2to10withResultySo12CBATTRequestC_So10CBATTErrorVtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateValue", + "printedName": "updateValue(_:for:onSubscribedCentrals:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBMutableCharacteristic", + "printedName": "CoreBluetooth.CBMutableCharacteristic", + "usr": "c:objc(cs)CBMutableCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBCentral]?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceActualState", - "printedName": "ZTCoreKit.ZTDeviceActualState", - "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + "name": "Array", + "printedName": "[CoreBluetooth.CBCentral]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBCentral", + "printedName": "CoreBluetooth.CBCentral", + "usr": "c:objc(cs)CBCentral" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV08previousE0AA014ZTDeviceActualE0Ovg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] - }, + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP11updateValue_3for20onSubscribedCentralsSb10Foundation4DataV_So23CBMutableCharacteristicCSaySo9CBCentralCGSgtF", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP11updateValue_3for20onSubscribedCentralsSb10Foundation4DataV_So23CBMutableCharacteristicCSaySo9CBCentralCGSgtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralManagerProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPrimaryService", + "printedName": "ZTPrimaryService", + "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "uuid", + "printedName": "uuid", "children": [ { "kind": "TypeNominal", @@ -97894,13 +87315,15 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvp", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ + "Final", + "AccessControl", "RawDocComment" ], - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -97915,83 +87338,26 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV11descriptionSSvg", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", "moduleName": "ZTCoreKit", - "isFromExtension": true, + "static": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit21ZTMessageGeneralStateV", - "mangledName": "$s9ZTCoreKit21ZTMessageGeneralStateV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" }, { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DFUPeripheralSelector", - "printedName": "DFUPeripheralSelector", - "children": [ - { - "kind": "Function", - "name": "select", - "printedName": "select(_:advertisementData:RSSI:hint:)", + "kind": "Var", + "name": "characteristicTypes", + "printedName": "characteristicTypes", "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - }, { "kind": "TypeNominal", "name": "Dictionary", - "printedName": "[Swift.String : AnyObject]", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", @@ -98001,141 +87367,208 @@ }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] + } + ], + "usr": "s:SD" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)select:advertisementData:RSSI:hint:", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC6select_17advertisementData4RSSI4hintSbSo12CBPeripheralC_SDySSyXlGSo8NSNumberCSSSgtF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "objc_name": "select:advertisementData:RSSI:hint:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "filterBy", - "printedName": "filterBy(hint:)", - "children": [ + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[CoreBluetooth.CBUUID]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTCharacteristic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCharacteristic", + "printedName": "ZTCoreKit.ZTCharacteristic", + "usr": "s:9ZTCoreKit16ZTCharacteristicC" + } + ] } ], - "usr": "s:Sa" + "usr": "s:SD" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)filterByHint:", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC8filterBy4hintSaySo6CBUUIDCGSgAG_tF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "objc_name": "filterByHint:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(device:service:)", "children": [ { "kind": "TypeNominal", - "name": "DFUPeripheralSelector", - "printedName": "ZTCoreKit.DFUPeripheralSelector", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector" + "name": "ZTPrimaryService", + "printedName": "ZTCoreKit.ZTPrimaryService", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC" + }, + { + "kind": "TypeNominal", + "name": "ZTDevice", + "printedName": "ZTCoreKit.ZTDevice", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], "declKind": "Constructor", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector(im)init", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorCACycfc", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", "moduleName": "ZTCoreKit", "overriding": true, "implicit": true, - "objc_name": "init", "declAttributes": [ - "Dynamic", - "ObjC", - "Override" + "Required" ], "init_kind": "Designated" } ], "declKind": "Class", - "usr": "c:@M@ZTCoreKit@objc(cs)DFUPeripheralSelector", - "mangledName": "$s9ZTCoreKit21DFUPeripheralSelectorC", + "usr": "s:9ZTCoreKit16ZTPrimaryServiceC", + "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "s:9ZTCoreKit9ZTServiceC", "inheritsConvenienceInitializers": true, "superclassNames": [ - "ObjectiveC.NSObject" + "ZTCoreKit.ZTService" ], "conformances": [ { "kind": "Conformance", - "name": "DFUPeripheralSelectorDelegate", - "printedName": "DFUPeripheralSelectorDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUPeripheralSelectorDelegate", - "mangledName": "$s9ZTCoreKit29DFUPeripheralSelectorDelegateP" + "name": "ZTServiceProtocol", + "printedName": "ZTServiceProtocol", + "usr": "s:9ZTCoreKit17ZTServiceProtocolP", + "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" }, { "kind": "Conformance", @@ -98143,48 +87576,6 @@ "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -98307,14 +87698,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -98331,14 +87722,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -98355,14 +87746,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16Vvs", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -98379,8 +87770,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts6UInt16VvM", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV10chunkCounts5Int16VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -98394,14 +87785,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -98418,14 +87809,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -98442,14 +87833,14 @@ }, { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16Vvs", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -98466,8 +87857,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds6UInt16VvM", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV12firstChunkIds5Int16VvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -98481,14 +87872,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -98502,14 +87893,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds6UInt16Vvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11lastChunkIds5Int16Vvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } @@ -98565,1008 +87956,165 @@ "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "endTime", - "printedName": "endTime", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTMessageActivityMetadata", - "printedName": "ZTCoreKit.ZTMessageActivityMetadata", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", - "moduleName": "ZTCoreKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV", - "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTCodableTransform", - "printedName": "ZTCodableTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCodableTransform", - "printedName": "ZTCoreKit.ZTCodableTransform<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit18ZTCodableTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit18ZTCodableTransformCACyxGycfc", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformCACyxGycfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC15transformToJSONyypSgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit18ZTCodableTransformC", - "mangledName": "$s9ZTCoreKit18ZTCodableTransformC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTURLTransform", - "printedName": "ZTURLTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(shouldEncodeURLString:allowedCharacterSet:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTURLTransform", - "printedName": "ZTCoreKit.ZTURLTransform", - "usr": "s:9ZTCoreKit14ZTURLTransformC" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CharacterSet", - "printedName": "Foundation.CharacterSet", - "hasDefaultArg": true, - "usr": "s:10Foundation12CharacterSetV" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC21shouldEncodeURLString19allowedCharacterSetACSb_10Foundation0hI0Vtcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC17transformFromJSONy10Foundation3URLVSgypSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC15transformToJSONySSSg10Foundation3URLVSgF", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit14ZTURLTransformC", - "mangledName": "$s9ZTCoreKit14ZTURLTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBleManagerState", - "printedName": "ZTBleManagerState", - "children": [ - { - "kind": "Var", - "name": "off", - "printedName": "off", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO3offyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "on", - "printedName": "on", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2onyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "idle", - "printedName": "idle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4idleyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "scanning", - "printedName": "scanning", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO8scanningyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "unauthorized", - "printedName": "unauthorized", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO12unauthorizedyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "resetting", - "printedName": "resetting", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV9startTimes6UInt32VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9resettingyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "name": "endTime", + "printedName": "endTime", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV7endTimes6UInt32VvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO7unknownyA2CmF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" ] }, { - "kind": "Var", - "name": "unsupported", - "printedName": "unsupported", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTBleManagerState.Type) -> ZTCoreKit.ZTBleManagerState", + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTBleManagerState.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ] + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "usr": "s:Sa" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11unsupportedyA2CmF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV5bytesACSays5UInt8VG_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ + "AccessControl", "RawDocComment" - ] + ], + "init_kind": "Designated" }, { "kind": "Var", @@ -99581,11 +88129,12 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvp", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -99601,88 +88150,43 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO11descriptionSSvg", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" }, { "kind": "TypeNominal", - "name": "ZTBleManagerState", - "printedName": "ZTCoreKit.ZTBleManagerState", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO9hashValueSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "throwing": true, + "init_kind": "Designated" }, { "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -99691,23 +88195,23 @@ }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO4hash4intoys6HasherVz_tF", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV6encode2toys7Encoder_p_tKF", "moduleName": "ZTCoreKit", "implicit": true, + "throwing": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTBleManagerStateO", - "mangledName": "$s9ZTCoreKit17ZTBleManagerStateO", + "declKind": "Struct", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV", + "mangledName": "$s9ZTCoreKit25ZTMessageActivityMetadataV", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", @@ -99716,17 +88220,17 @@ "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", @@ -99739,144 +88243,98 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "moduleName": "ZTCoreKit" }, { "kind": "TypeDecl", - "name": "ZTUserShoe", - "printedName": "ZTUserShoe", + "name": "ZTHexColorTransform", + "printedName": "ZTHexColorTransform", "children": [ { - "kind": "Var", - "name": "id", - "printedName": "id", + "kind": "Constructor", + "name": "init", + "printedName": "init(prefixToJSON:alphaToJSON:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "ZTHexColorTransform", + "printedName": "ZTCoreKit.ZTHexColorTransform", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvp", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC12prefixToJSON05alphagH0ACSb_Sbtcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "transformFromJSON", + "printedName": "transformFromJSON(_:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ProtocolComposition", + "printedName": "Any" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC2idSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC2idSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC17transformFromJSONySo7UIColorCSgypSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "code", - "printedName": "code", + "kind": "Function", + "name": "transformToJSON", + "printedName": "transformToJSON(_:)", "children": [ { "kind": "TypeNominal", @@ -99891,134 +88349,123 @@ } ], "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC15transformToJSONySSSgSo7UIColorCSgF", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit19ZTHexColorTransformC", + "mangledName": "$s9ZTCoreKit19ZTHexColorTransformC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTTransformType", + "printedName": "ZTTransformType", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Object", + "printedName": "Object", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "JSON", + "printedName": "JSON", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC4codeSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC4codeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] - }, + ], + "usr": "s:9ZTCoreKit15ZTTransformTypeP", + "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" + } + ] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTReachability", + "printedName": "ZTReachability", + "children": [ { "kind": "Var", - "name": "attributes", - "printedName": "attributes", + "name": "currentAdapterMode", + "printedName": "currentAdapterMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100034,35 +88481,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100079,35 +88505,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100124,8 +88529,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC10attributesSDySSypGSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100134,27 +88539,19 @@ }, { "kind": "Var", - "name": "firmware", - "printedName": "firmware", + "name": "currentConnectionStatus", + "printedName": "currentConnectionStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100170,22 +88567,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100202,22 +88591,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100234,8 +88615,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8firmwareAC8FirmwareCSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100244,27 +88625,39 @@ }, { "kind": "Var", - "name": "organizationId", - "printedName": "organizationId", + "name": "onConnectionReachable", + "printedName": "onConnectionReachable", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100281,21 +88674,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100313,21 +88718,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100344,8 +88761,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC14organizationIdSSSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100354,27 +88771,39 @@ }, { "kind": "Var", - "name": "createdAt", - "printedName": "createdAt", + "name": "onConnectionUnReachable", + "printedName": "onConnectionUnReachable", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100391,21 +88820,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100423,21 +88864,33 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "((ZTCoreKit.ZTReachability) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + } + ] } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100454,8 +88907,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9createdAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -100464,27 +88917,19 @@ }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "managerStarted", + "printedName": "managerStarted", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", @@ -100500,22 +88945,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" @@ -100532,22 +88969,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvs", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "set" @@ -100564,333 +88993,356 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC9updatedAt10Foundation4DateVSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTUserShoe", - "printedName": "ZTCoreKit.ZTUserShoe", - "usr": "s:9ZTCoreKit10ZTUserShoeC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC3mapACSgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC7mapping3mapyAA5ZTMapC_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, { "kind": "TypeDecl", - "name": "Firmware", - "printedName": "Firmware", + "name": "Adapter", + "printedName": "Adapter", "children": [ { "kind": "Var", - "name": "type", - "printedName": "type", + "name": "all", + "printedName": "all", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wiredEthernet", + "printedName": "wiredEthernet", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4typeSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "arch", - "printedName": "arch", + "name": "loopback", + "printedName": "loopback", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC4archSSSgvM", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "version", - "printedName": "version", + "kind": "Function", + "name": "getInterfaceType", + "printedName": "getInterfaceType()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "InterfaceType", + "printedName": "Network.NWInterface.InterfaceType", + "usr": "s:7Network11NWInterfaceV13InterfaceTypeO" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -100899,108 +89351,227 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "online", + "printedName": "online", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> (ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(adapter: ZTCoreKit.ZTReachability.Adapter)", + "children": [ + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Connection.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "offline", + "printedName": "offline", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> ZTCoreKit.ZTReachability.Connection", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTReachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7versionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "updatedAt", - "printedName": "updatedAt", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvp", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -101009,144 +89580,57 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvg", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC9updatedAt10Foundation4DateVSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware?", - "children": [ - { - "kind": "TypeNominal", - "name": "Firmware", - "printedName": "ZTCoreKit.ZTUserShoe.Firmware", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC3mapAESgAA5ZTMapC_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Connection", + "printedName": "ZTCoreKit.ZTReachability.Connection", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "AccessControl" ], "funcSelfKind": "NonMutating" } ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTUserShoeC8FirmwareC", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC8FirmwareC", + "declKind": "Enum", + "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -101154,44 +89638,95 @@ "conformances": [ { "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(adapter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTReachability", + "printedName": "ZTCoreKit.ZTReachability", + "usr": "s:9ZTCoreKit14ZTReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "Adapter", + "printedName": "ZTCoreKit.ZTReachability.Adapter", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startManager", + "printedName": "startManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC12startManageryyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC12startManageryyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopManager", + "printedName": "stopManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTUserShoeC", - "mangledName": "$s9ZTCoreKit10ZTUserShoeC", + "usr": "s:9ZTCoreKit14ZTReachabilityC", + "mangledName": "$s9ZTCoreKit14ZTReachabilityC", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTMappable", - "printedName": "ZTMappable", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP" - }, - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } + "AccessControl" ] }, { @@ -101206,204 +89741,330 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" + ] + }, + { + "kind": "Var", + "name": "ztActivityKey", + "printedName": "ztActivityKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit13ztActivityKeySSvp", + "mangledName": "$s9ZTCoreKit13ztActivityKeySSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ztActivityKeySSvg", + "mangledName": "$s9ZTCoreKit13ztActivityKeySSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] }, { "kind": "TypeDecl", - "name": "ZTLoggerComponent", - "printedName": "ZTLoggerComponent", + "name": "ZTActivity", + "printedName": "ZTActivity", "children": [ { "kind": "Var", - "name": "api", - "printedName": "api", + "name": "id", + "printedName": "id", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)id", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)id", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC2idSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3apiyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "app", - "printedName": "app", + "name": "activityIdentifier", + "printedName": "activityIdentifier", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)activityIdentifier", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)activityIdentifier", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setActivityIdentifier:", + "mangledName": "$s9ZTCoreKit10ZTActivityC18activityIdentifierSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3appyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "sdk", - "printedName": "sdk", + "name": "appId", + "printedName": "appId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)appId", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO3sdkyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "firmware", - "printedName": "firmware", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)appId", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerComponent.Type) -> ZTCoreKit.ZTLoggerComponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerComponent.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8firmwareyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLoggerComponent?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setAppId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC5appIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", @@ -101413,10 +90074,16 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)activityType", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], "accessors": [ { "kind": "Accessor", @@ -101431,265 +90098,348 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO8rawValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)activityType", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit17ZTLoggerComponentO", - "mangledName": "$s9ZTCoreKit17ZTLoggerComponentO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setActivityType:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12activityTypeSSvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTLoggerSeverity", - "printedName": "ZTLoggerSeverity", - "children": [ + ] + }, { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "startDate", + "printedName": "startDate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)startDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5debugyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)startDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStartDate:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9startDate10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO5erroryA2CmF", - "moduleName": "ZTCoreKit" + ] }, { "kind": "Var", - "name": "info", - "printedName": "info", + "name": "endDate", + "printedName": "endDate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)endDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4infoyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "warn", - "printedName": "warn", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)endDate", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTLoggerSeverity.Type) -> ZTCoreKit.ZTLoggerSeverity", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTLoggerSeverity.Type", + "name": "Optional", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setEndDate:", + "mangledName": "$s9ZTCoreKit10ZTActivityC7endDate10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO4warnyA2CmF", - "moduleName": "ZTCoreKit" + ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Var", + "name": "startTimestamp", + "printedName": "startTimestamp", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTLoggerSeverity?", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)startTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)startTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStartTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC14startTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueACSgSS_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "endTimestamp", + "printedName": "endTimestamp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)endTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "implicit": true, + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], "accessors": [ { "kind": "Accessor", @@ -101698,53 +90448,61 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO8rawValueSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)endTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setEndTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12endTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO", - "mangledName": "$s9ZTCoreKit16ZTLoggerSeverityO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "tz", + "printedName": "tz", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -101752,260 +90510,122 @@ "printedName": "Swift.String", "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappingType", - "printedName": "ZTMappingType", - "children": [ - { - "kind": "Var", - "name": "fromJSON", - "printedName": "fromJSON", - "children": [ + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)tz", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMappingType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO8fromJSONyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "toJSON", - "printedName": "toJSON", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)tz", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMappingType.Type) -> ZTCoreKit.ZTMappingType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMappingType.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO6toJSONyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - }, - { - "kind": "TypeNominal", - "name": "ZTMappingType", - "printedName": "ZTCoreKit.ZTMappingType", - "usr": "s:9ZTCoreKit13ZTMappingTypeO" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO2eeoiySbAC_ACtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivp", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit13ZTMappingTypeO9hashValueSivg", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO9hashValueSivg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setTz:", + "mangledName": "$s9ZTCoreKit10ZTActivityC2tzSSSgvs", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit13ZTMappingTypeO", - "mangledName": "$s9ZTCoreKit13ZTMappingTypeO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMapper", - "printedName": "ZTMapper", - "children": [ { "kind": "Var", - "name": "context", - "printedName": "context", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)status", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -102015,27 +90635,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)status", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" }, @@ -102052,78 +90671,62 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvs", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStatus:", + "mangledName": "$s9ZTCoreKit10ZTActivityC6statusSSSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", - "mangledName": "$s9ZTCoreKit8ZTMapperC7contextAA12ZTMapContext_pSgvM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shouldIncludeNilValues", - "printedName": "shouldIncludeNilValues", + "name": "packets", + "printedName": "packets", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)packets", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -102132,20 +90735,27 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)packets", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvg", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" }, @@ -102161,1853 +90771,2030 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.NSMutableOrderedSet?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableOrderedSet", + "printedName": "Foundation.NSMutableOrderedSet", + "usr": "c:objc(cs)NSMutableOrderedSet" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvs", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setPackets:", + "mangledName": "$s9ZTCoreKit10ZTActivityC7packetsSo19NSMutableOrderedSetCSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "metaDataRawValue", + "printedName": "metaDataRawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)metaDataRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)metaDataRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", - "mangledName": "$s9ZTCoreKit8ZTMapperC22shouldIncludeNilValuesSbvM", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setMetaDataRawValue:", + "mangledName": "$s9ZTCoreKit10ZTActivityC16metaDataRawValue10Foundation0E0VSgvs", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], - "accessorKind": "_modify" + "accessorKind": "set" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(context:shouldIncludeNilValues:)", + "kind": "Var", + "name": "metaData", + "printedName": "metaData", "children": [ - { - "kind": "TypeNominal", - "name": "ZTMapper", - "printedName": "ZTCoreKit.ZTMapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit8ZTMapperC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", - "mangledName": "$s9ZTCoreKit8ZTMapperC7context22shouldIncludeNilValuesACyxGAA12ZTMapContext_pSg_Sbtcfc", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDataAA25ZTMessageActivityMetadataVSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:toObject:)", + "name": "metaData", + "printedName": "metaData(_:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTMessageActivityMetadata", + "printedName": "ZTCoreKit.ZTMessageActivityMetadata", + "usr": "s:9ZTCoreKit25ZTMessageActivityMetadataV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObject8toObjectxypSg_xtF", + "usr": "s:9ZTCoreKit10ZTActivityC8metaDatayyAA25ZTMessageActivityMetadataVSgF", + "mangledName": "$s9ZTCoreKit10ZTActivityC8metaDatayyAA25ZTMessageActivityMetadataVSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:toObject:)", + "kind": "Var", + "name": "stopReasonRawValue", + "printedName": "stopReasonRawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONString8toObjectxSS_xtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)stopReasonRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:toObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)stopReasonRawValue", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setStopReasonRawValue:", + "mangledName": "$s9ZTCoreKit10ZTActivityC18stopReasonRawValue10Foundation4DataVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSON8toObjectxSDySSypG_xtF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:)", + "kind": "Var", + "name": "stopReason", + "printedName": "stopReason", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONStringxSgSS_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonAA0c8LastStopE0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "stopReason", + "printedName": "stopReason(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTActivityLastStopReason?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivityLastStopReason", + "printedName": "ZTCoreKit.ZTActivityLastStopReason", + "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" } ], "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map10JSONObjectxSgypSg_tF", + "usr": "s:9ZTCoreKit10ZTActivityC10stopReasonyyAA0c8LastStopE0OSgF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10stopReasonyyAA0c8LastStopE0OSgF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:)", + "kind": "Var", + "name": "isRawDataMode", + "printedName": "isRawDataMode", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isRawDataMode", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isRawDataMode", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsRawDataMode:", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isRawDataModeSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAutomatic", + "printedName": "isAutomatic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map4JSONxSgSDySSypG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isAutomatic", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isAutomatic", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsAutomatic:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11isAutomaticSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "forceStop", + "printedName": "forceStop", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONStringSayxGSgSS_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)forceStop", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)forceStop", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setForceStop:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9forceStopSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isInterrupted", + "printedName": "isInterrupted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray10JSONObjectSayxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)isInterrupted", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONArray:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)isInterrupted", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setIsInterrupted:", + "mangledName": "$s9ZTCoreKit10ZTActivityC13isInterruptedSbvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "firstChunkId", + "printedName": "firstChunkId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray9JSONArraySayxGSaySDySSypGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)firstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)firstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setFirstChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC12firstChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "lastChunkId", + "printedName": "lastChunkId", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONStringSDySSxGSgSS_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)lastChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)lastChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setLastChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11lastChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "chunkCount", + "printedName": "chunkCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObjectSDySSxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)chunkCount", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : τ_0_0]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)chunkCount", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setChunkCount:", + "mangledName": "$s9ZTCoreKit10ZTActivityC10chunkCounts5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "anchorTimestamp", + "printedName": "anchorTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSONSDySSxGSgSDySSSDySSypGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)anchorTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:toDictionary:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)anchorTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setAnchorTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC15anchorTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "customActivityStartTimestamp", + "printedName": "customActivityStartTimestamp", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)customActivityStartTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)customActivityStartTimestamp", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setCustomActivityStartTimestamp:", + "mangledName": "$s9ZTCoreKit10ZTActivityC28customActivityStartTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "customActivityFirstChunkId", + "printedName": "customActivityFirstChunkId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary10JSONObject02toE0SDySSxGypSg_AGtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)customActivityFirstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:toDictionary:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)customActivityFirstChunkId", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setCustomActivityFirstChunkId:", + "mangledName": "$s9ZTCoreKit10ZTActivityC26customActivityFirstChunkIds5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC13mapDictionary4JSON02toE0SDySSxGSDySSSDySSypGG_AGtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)fwVersion", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)fwVersion", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays10JSONObjectSDySSSayxGGSgypSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSON:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : [τ_0_0]]?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setFwVersion:", + "mangledName": "$s9ZTCoreKit10ZTActivityC9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shoesSerial", + "printedName": "shoesSerial", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC21mapDictionaryOfArrays4JSONSDySSSayxGGSgSDySSSaySDySSypGGG_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(py)shoesSerial", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArrayOfArrays", - "printedName": "mapArrayOfArrays(JSONObject:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[τ_0_0]]?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)shoesSerial", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC16mapArrayOfArrays10JSONObjectSaySayxGGSgypSg_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "parseJSONStringIntoDictionary", - "printedName": "parseJSONStringIntoDictionary(JSONString:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)setShoesSerial:", + "mangledName": "$s9ZTCoreKit10ZTActivityC11shoesSerialSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC29parseJSONStringIntoDictionary0E0SDySSypGSgSS_tFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "parseJSONString", - "printedName": "parseJSONString(JSONString:)", + "kind": "Var", + "name": "duration", + "printedName": "duration", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC15parseJSONString0E0ypSgSS_tFZ", + "declKind": "Var", + "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvp", + "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSON:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit10ZTActivityC8durationSdvg", + "mangledName": "$s9ZTCoreKit10ZTActivityC8durationSdvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map4JSONxSDySSypG_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "map", - "printedName": "map(JSONString:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(entity:insertInto:)", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONStringxSS_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "map", - "printedName": "map(JSONObject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "NSEntityDescription", + "printedName": "CoreData.NSEntityDescription", + "usr": "c:objc(cs)NSEntityDescription" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "CoreData.NSManagedObjectContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE3map10JSONObjectxyp_tKF", + "declKind": "Constructor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity(im)initWithEntity:insertIntoManagedObjectContext:", + "mangledName": "$s9ZTCoreKit10ZTActivityC6entity10insertIntoACSo19NSEntityDescriptionC_So22NSManagedObjectContextCSgtcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", + "overriding": true, + "objc_name": "initWithEntity:insertIntoManagedObjectContext:", "declAttributes": [ - "Final" + "Dynamic", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONArray:)", + "name": "loadAll", + "printedName": "loadAll(firstChunkId:lastChunkId:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[τ_0_0]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray9JSONArraySayxGSaySDySSypGG_tKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONString:)", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONStringSayxGSS_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA8ZTPacketCGs5Int16VSg_ALtF", + "mangledName": "$s9ZTCoreKit10ZTActivityC7loadAll12firstChunkId04lastgH0SayAA8ZTPacketCGs5Int16VSg_ALtF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONObject:)", + "name": "lastSavedChunkId", + "printedName": "lastSavedChunkId(startId:lastId:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sa" + "hasDefaultArg": true, + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE8mapArray10JSONObjectSayxGyp_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s5Int16VAHSg_AItF", + "mangledName": "$s9ZTCoreKit10ZTActivityC16lastSavedChunkId05startG00dG0s5Int16VAHSg_AItF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONString:)", + "name": "addToCache", + "printedName": "addToCache(_:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONStringSDySSxGSS_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC10addToCacheyyAA8ZTPacketCF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10addToCacheyyAA8ZTPacketCF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSONObject:)", + "name": "uploadCache", + "printedName": "uploadCache(completion:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Void", + "printedName": "()" } - ], - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC11uploadCache10completionyyyc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveCachedPackets", + "printedName": "saveCachedPackets()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary10JSONObjectSDySSxGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC17saveCachedPacketsyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionary", - "printedName": "mapDictionary(JSON:)", + "name": "upload", + "printedName": "upload(_:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "name": "Array", + "printedName": "[τ_0_0]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE13mapDictionary4JSONSDySSxGSDySSSDySSypGG_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC6uploadyySayxGYaKAA16ZTPacketCachableRzlF", + "mangledName": "$s9ZTCoreKit10ZTActivityC6uploadyySayxGYaKAA16ZTPacketCachableRzlF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacketCachable>", + "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final" + "AccessControl" ], - "isFromExtension": true, "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSONObject:)", + "name": "fetchRequest", + "printedName": "fetchRequest()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "NSFetchRequest", + "printedName": "CoreData.NSFetchRequest", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" - }, + "usr": "c:objc(cs)NSFetchRequest" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC12fetchRequestSo07NSFetchE0CyACGyFZ", + "mangledName": "$s9ZTCoreKit10ZTActivityC12fetchRequestSo07NSFetchE0CyACGyFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl", + "NonObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPacketIds", + "printedName": "getPacketIds()", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays10JSONObjectSDySSSayxGGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC12getPacketIdsSays5Int16VGyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC12getPacketIdsSays5Int16VGyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapDictionaryOfArrays", - "printedName": "mapDictionaryOfArrays(JSON:)", + "name": "setPackets", + "printedName": "setPackets(ids:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE21mapDictionaryOfArrays4JSONSDySSSayxGGSDySSSaySDySSypGGG_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC10setPackets3idsSays5Int16VGAH_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC10setPackets3idsSays5Int16VGAH_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final" + "AccessControl", + "DiscardableResult" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "mapArrayOfArrays", - "printedName": "mapArrayOfArrays(JSONObject:)", + "name": "addPacket", + "printedName": "addPacket(id:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[[τ_0_0]]", + "printedName": "[Swift.Int16]", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", - "mangledName": "$s9ZTCoreKit8ZTMapperCA2A19ZTImmutableMappableRzrlE16mapArrayOfArrays10JSONObjectSaySayxGGypSg_tKF", + "usr": "s:9ZTCoreKit10ZTActivityC9addPacket2idSays5Int16VGAG_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC9addPacket2idSays5Int16VGAG_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTImmutableMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "RawDocComment" + "AccessControl", + "DiscardableResult" ], "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "map", - "printedName": "map(JSONfile:)", + "name": "getActulState", + "printedName": "getActulState()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit10ZTActivityC13getActulStateAA014ZTDeviceActualF0OyF", + "mangledName": "$s9ZTCoreKit10ZTActivityC13getActulStateAA014ZTDeviceActualF0OyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(actualState:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDeviceActualState", + "printedName": "ZTCoreKit.ZTDeviceActualState", + "usr": "s:9ZTCoreKit19ZTDeviceActualStateO" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC3map8JSONfilexSgSS_tF", + "usr": "s:9ZTCoreKit10ZTActivityC6update11actualStateyAA014ZTDeviceActualF0O_tF", + "mangledName": "$s9ZTCoreKit10ZTActivityC6update11actualStateyAA014ZTDeviceActualF0O_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity", + "mangledName": "$s9ZTCoreKit10ZTActivityC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "objc_name": "ZTActivity", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSManagedObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreData.NSManagedObject", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTActivityCachable", + "printedName": "ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP", + "mangledName": "$s9ZTCoreKit18ZTActivityCachableP" }, { - "kind": "Function", - "name": "mapArray", - "printedName": "mapArray(JSONfile:)", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ObservableObject", + "printedName": "ObservableObject", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", + "kind": "TypeWitness", + "name": "ObjectWillChangePublisher", + "printedName": "ObjectWillChangePublisher", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "ObservableObjectPublisher", + "printedName": "Combine.ObservableObjectPublisher", + "usr": "s:7Combine25ObservableObjectPublisherC" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:7Combine16ObservableObjectP", + "mangledName": "$s7Combine16ObservableObjectP" + } + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTManufacturerNameCharacteristic", + "children": [ + { + "kind": "Var", + "name": "uuid", + "printedName": "uuid", + "children": [ { "kind": "TypeNominal", "name": "String", @@ -104015,434 +92802,767 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperC8mapArray8JSONfileSayxGSgSS_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvpZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvsZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4uuidSSvMZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", - "mangledName": "$s9ZTCoreKit8ZTMapperC6toJSONySDySSypGxF", + "declKind": "Var", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONArray", - "printedName": "toJSONArray(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC4data10Foundation4DataVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "valueUpdated", + "printedName": "valueUpdated()", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC11toJSONArrayySaySDySSypGGSayxGF", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC12valueUpdatedyyF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "overriding": true, + "isOpen": true, "declAttributes": [ - "Final", "AccessControl", - "RawDocComment" + "Override" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "toJSONDictionary", - "printedName": "toJSONDictionary(_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [Swift.String : Any]]", + "name": "ZTManufacturerNameCharacteristic", + "printedName": "ZTCoreKit.ZTManufacturerNameCharacteristic", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC" + }, + { + "kind": "TypeNominal", + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "moduleName": "ZTCoreKit", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "mangledName": "$s9ZTCoreKit32ZTManufacturerNameCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTTextCharacteristic", + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Import", + "name": "Plister", + "printedName": "Plister", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTPacket", + "printedName": "ZTPacket", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC3keySSvpZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC3keySSvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC3keySSvgZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC3keySSvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)id", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)id", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setId:", + "mangledName": "$s9ZTCoreKit8ZTPacketC2ids5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC16toJSONDictionaryySDySSSDySSypGGSDySSxGF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)createdAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONDictionaryOfArrays", - "printedName": "toJSONDictionaryOfArrays(_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [[Swift.String : Any]]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)createdAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : [τ_0_0]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setCreatedAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9createdAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "fulfilledAt", + "printedName": "fulfilledAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", - "mangledName": "$s9ZTCoreKit8ZTMapperC24toJSONDictionaryOfArraysySDySSSaySDySSypGGGSDySSSayxGGF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)fulfilledAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)fulfilledAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setFulfilledAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC11fulfilledAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] }, { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", + "kind": "Var", + "name": "scheduledDeleted", + "printedName": "scheduledDeleted", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgx_SbtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)scheduledDeleted", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)scheduledDeleted", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setScheduledDeleted:", + "mangledName": "$s9ZTCoreKit8ZTPacketC16scheduledDeleted10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sentAt", + "printedName": "sentAt", + "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgSayxG_SbtF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)sentAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)sentAt", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setSentAt:", + "mangledName": "$s9ZTCoreKit8ZTPacketC6sentAt10Foundation4DateVvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC12toJSONString_11prettyPrintSSSgyp_SbtFZ", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "toJSONData", - "printedName": "toJSONData(_:options:)", + "kind": "Var", + "name": "rawData", + "printedName": "rawData", "children": [ { "kind": "TypeNominal", @@ -104457,730 +93577,634 @@ } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - }, - { - "kind": "TypeNominal", - "name": "WritingOptions", - "printedName": "Foundation.JSONSerialization.WritingOptions", - "usr": "c:@E@NSJSONWritingOptions" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", - "mangledName": "$s9ZTCoreKit8ZTMapperC10toJSONData_7options10Foundation4DataVSgyp_So20NSJSONWritingOptionsVtFZ", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)rawData", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "static": true, "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONString:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)rawData", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONStringShyxGSgSS_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONObject:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Set<τ_0_0>?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setRawData:", + "mangledName": "$s9ZTCoreKit8ZTPacketC7rawData10Foundation0E0VSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "activity", + "printedName": "activity", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet10JSONObjectShyxGSgypSg_tF", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)activity", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "mapSet", - "printedName": "mapSet(JSONArray:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE6mapSet9JSONArrayShyxGSaySDySSypGG_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "toJSONSet", - "printedName": "toJSONSet(_:)", - "children": [ + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)activity", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setActivity:", + "mangledName": "$s9ZTCoreKit8ZTPacketC8activityAA10ZTActivityCSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" ], - "usr": "s:Sh" + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE9toJSONSetySaySDySSypGGShyxGF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(_:prettyPrint:)", + "kind": "Var", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", - "mangledName": "$s9ZTCoreKit8ZTMapperCAASHRzrlE12toJSONString_11prettyPrintSSSgShyxG_SbtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvp", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable, τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit8ZTMapperC", - "mangledName": "$s9ZTCoreKit8ZTMapperC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTMessageChunkSendStatus", - "children": [ - { - "kind": "TypeDecl", - "name": "Status", - "printedName": "Status", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "success", - "printedName": "success", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7successyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "errorOutOfRange", - "printedName": "errorOutOfRange", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityMode?", "children": [ { "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] + "name": "ZTActivityMode", + "printedName": "ZTCoreKit.ZTActivityMode", + "usr": "s:9ZTCoreKit14ZTActivityModeO" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorOutOfRangeyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvs", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvs", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "errorSendFailed", - "printedName": "errorSendFailed", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O05errorE6FailedyA2EmF", + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC12activityTypeAA14ZTActivityModeOSgvM", "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { - "kind": "Var", - "name": "errorUnexpected", - "printedName": "errorUnexpected", + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)timestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O15errorUnexpectedyA2EmF", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)timestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvg", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "Var", - "name": "errorNotFound", - "printedName": "errorNotFound", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O13errorNotFoundyA2EmF", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setTimestamp:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9timestamps5Int64Vvs", "moduleName": "ZTCoreKit", + "implicit": true, "declAttributes": [ - "RawDocComment" - ] - }, + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)duration", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTMessageChunkSendStatus.Status.Type) -> ZTCoreKit.ZTMessageChunkSendStatus.Status", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O7unknownyA2EmF", - "moduleName": "ZTCoreKit" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)duration", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValueAESgs5UInt8V_tcfc", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setDuration:", + "mangledName": "$s9ZTCoreKit8ZTPacketC8durations5Int16Vvs", "moduleName": "ZTCoreKit", "implicit": true, - "init_kind": "Designated" - }, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "statusRawValue", + "printedName": "statusRawValue", + "children": [ { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)statusRawValue", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvp", + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)statusRawValue", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "accessors": [ + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O8rawValues5UInt8Vvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setStatusRawValue:", + "mangledName": "$s9ZTCoreKit8ZTPacketC14statusRawValues5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV0F0O", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvs", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvs", + "moduleName": "ZTCoreKit", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6statusAC6StatusOvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC6statusAC6StatusOvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "bytes", - "printedName": "bytes", + "name": "timestampType", + "printedName": "timestampType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvp", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105189,59 +94213,80 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesSays5UInt8VGvg", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0Ovs", + "moduleName": "ZTCoreKit", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC13timestampTypeAC09TimestampE0OvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "status", - "printedName": "status", + "name": "bmTimestampType", + "printedName": "bmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvp", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105250,24 +94295,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvg", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -105282,24 +94318,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status?", - "children": [ - { - "kind": "TypeNominal", - "name": "Status", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus.Status", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV0F0O" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvs", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0Ovs", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "set" }, { @@ -105314,8 +94341,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV6statusAC0F0OSgvM", + "usr": "s:9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC15bmTimestampTypeAC02BmeF0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -105324,35 +94351,24 @@ }, { "kind": "Var", - "name": "chunkId", - "printedName": "chunkId", + "name": "packetType", + "printedName": "packetType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvp", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105361,24 +94377,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvg", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovg", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "get" }, { @@ -105393,24 +94400,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.UInt16?", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ], - "usr": "s:Sq" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvs", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovs", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0Ovs", "moduleName": "ZTCoreKit", - "implicit": true, "accessorKind": "set" }, { @@ -105425,8 +94423,8 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV7chunkIds6UInt16VSgvM", + "usr": "s:9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0OvM", + "mangledName": "$s9ZTCoreKit8ZTPacketC10packetTypeAC06PacketE0OvM", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "_modify" @@ -105434,60 +94432,104 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(bytes:)", + "kind": "Var", + "name": "originalTimestamp", + "printedName": "originalTimestamp", "children": [ { "kind": "TypeNominal", - "name": "ZTMessageChunkSendStatus", - "printedName": "ZTCoreKit.ZTMessageChunkSendStatus", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)originalTimestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)originalTimestamp", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setOriginalTimestamp:", + "mangledName": "$s9ZTCoreKit8ZTPacketC17originalTimestamps5Int64Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV5bytesACSays5UInt8VG_tcfc", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "packetsNumber", + "printedName": "packetsNumber", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)packetsNumber", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvp", "moduleName": "ZTCoreKit", "declAttributes": [ + "Dynamic", "AccessControl", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], "accessors": [ { @@ -105497,100 +94539,56 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV11descriptionSSvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)packetsNumber", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvg", "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setPacketsNumber:", + "mangledName": "$s9ZTCoreKit8ZTPacketC13packetsNumbers5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] - } - ], - "declKind": "Struct", - "usr": "s:9ZTCoreKit24ZTMessageChunkSendStatusV", - "mangledName": "$s9ZTCoreKit24ZTMessageChunkSendStatusV", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTButtonlessDfuCharacteristic", - "printedName": "ZTButtonlessDfuCharacteristic", - "children": [ + }, { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "rawDescription", + "printedName": "rawDescription", "children": [ { "kind": "TypeNominal", @@ -105600,19 +94598,13 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit8ZTPacketC14rawDescriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC14rawDescriptionSSvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105627,49 +94619,44 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit8ZTPacketC14rawDescriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC14rawDescriptionSSvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "fwVersion", + "printedName": "fwVersion", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)fwVersion", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" + "Dynamic", + "AccessControl", + "NSManaged", + "RawDocComment", + "ObjC" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -105679,561 +94666,1012 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)fwVersion", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvg", "moduleName": "ZTCoreKit", "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setFwVersion:", + "mangledName": "$s9ZTCoreKit8ZTPacketC9fwVersionSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(service:characteristic:)", + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", "children": [ { "kind": "TypeNominal", - "name": "ZTButtonlessDfuCharacteristic", - "printedName": "ZTCoreKit.ZTButtonlessDfuCharacteristic", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "declKind": "Var", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(py)retryCount", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvp", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ + "Dynamic", "AccessControl", - "Required", - "RawDocComment" + "NSManaged", + "RawDocComment", + "ObjC" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)retryCount", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)setRetryCount:", + "mangledName": "$s9ZTCoreKit8ZTPacketC10retryCounts5Int16Vvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC12valueUpdatedyyF", - "moduleName": "ZTCoreKit", - "overriding": true, - "declAttributes": [ - "AccessControl", - "Override", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit29ZTButtonlessDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit29ZTButtonlessDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTActivityLastStopReason", - "printedName": "ZTActivityLastStopReason", - "children": [ + ] + }, { - "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO2idyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO2idyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activityId", + "printedName": "activityId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10activityIdyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10activityIdyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "rawData", + "printedName": "rawData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO7rawDatayA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO7rawDatayA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9timestampyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9timestampyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8durationyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8durationyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO6statusyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO6statusyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "packetType", + "printedName": "packetType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10packetTypeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10packetTypeyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timestampType", + "printedName": "timestampType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO13timestampTypeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO13timestampTypeyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "originalTimestamp", + "printedName": "originalTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO17originalTimestampyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO17originalTimestampyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "packetsNumber", + "printedName": "packetsNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO13packetsNumberyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO13packetsNumberyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "fwVersion", + "printedName": "fwVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9fwVersionyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9fwVersionyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.CodingKeys.Type) -> ZTCoreKit.ZTPacket.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO10retryCountyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO10retryCountyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ] + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO9undefinedyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "userRequest", - "printedName": "userRequest", - "children": [ + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO2eeoiySbAE_AEtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO2eeoiySbAE_AEtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO11userRequestyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "memoryFull", - "printedName": "memoryFull", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - } - ] + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10memoryFullyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Var", - "name": "inactivity", - "printedName": "inactivity", - "children": [ + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityLastStopReason.Type) -> ZTCoreKit.ZTActivityLastStopReason", + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTActivityLastStopReason.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueSSvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO10inactivityyA2CmF", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityLastStopReason?", + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", "children": [ { "kind": "TypeNominal", - "name": "ZTActivityLastStopReason", - "printedName": "ZTCoreKit.ZTActivityLastStopReason", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValueACSgs5UInt8V_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "intValue", + "printedName": "intValue", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO8rawValues5UInt8Vvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit24ZTActivityLastStopReasonO", - "mangledName": "$s9ZTCoreKit24ZTActivityLastStopReasonO", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt8", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueSiSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "ZTCoreKit.ZTPacket.CodingKeys", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC10CodingKeysO", + "mangledName": "$s9ZTCoreKit8ZTPacketC10CodingKeysO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTISO8601DateTransform", - "printedName": "ZTISO8601DateTransform", - "children": [ { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "ZTISO8601DateTransform", - "printedName": "ZTCoreKit.ZTISO8601DateTransform", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformCACycfc", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformCACycfc", + "usr": "s:9ZTCoreKit8ZTPacketC4dataAC10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4dataAC10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "init_kind": "Designated" }, { "kind": "Constructor", "name": "init", - "printedName": "init(dateFormatter:)", + "printedName": "init(entity:insertInto:)", "children": [ { "kind": "TypeNominal", - "name": "ZTISO8601DateTransform", - "printedName": "ZTCoreKit.ZTISO8601DateTransform", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" }, { "kind": "TypeNominal", - "name": "DateFormatter", - "printedName": "Foundation.DateFormatter", - "usr": "c:objc(cs)NSDateFormatter" + "name": "NSEntityDescription", + "printedName": "CoreData.NSEntityDescription", + "usr": "c:objc(cs)NSEntityDescription" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreData.NSManagedObjectContext?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + } + ], + "usr": "s:Sq" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC13dateFormatterACSo06NSDateG0C_tcfc", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket(im)initWithEntity:insertIntoManagedObjectContext:", + "mangledName": "$s9ZTCoreKit8ZTPacketC6entity10insertIntoACSo19NSEntityDescriptionC_So22NSManagedObjectContextCSgtcfc", "moduleName": "ZTCoreKit", "overriding": true, - "implicit": true, + "objc_name": "initWithEntity:insertIntoManagedObjectContext:", "declAttributes": [ - "Override" + "Dynamic", + "ObjC", + "Override", + "AccessControl" ], "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTISO8601DateTransformC", - "mangledName": "$s9ZTCoreKit22ZTISO8601DateTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "superclassUsr": "s:9ZTCoreKit24ZTDateFormatterTransformC", - "superclassNames": [ - "ZTCoreKit.ZTDateFormatterTransform" - ], - "conformances": [ + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:activity:fwVersion:context:name:)", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTActivityCachable)?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "ZTActivityCachable", + "printedName": "any ZTCoreKit.ZTActivityCachable", + "usr": "s:9ZTCoreKit18ZTActivityCachableP" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -106241,34 +95679,16 @@ "printedName": "Swift.String", "usr": "s:SS" } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTPrimaryService", - "printedName": "ZTPrimaryService", - "children": [ - { - "kind": "Var", - "name": "uuid", - "printedName": "uuid", - "children": [ + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSManagedObjectContext", + "printedName": "CoreData.NSManagedObjectContext", + "usr": "c:objc(cs)NSManagedObjectContext" + }, { "kind": "TypeNominal", "name": "String", @@ -106276,358 +95696,227 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC4data8activity9fwVersion7context4nameAC10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgSo22NSManagedObjectContextCSStcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4data8activity9fwVersion7context4nameAC10Foundation4DataV_AA18ZTActivityCachable_pSgSSSgSo22NSManagedObjectContextCSStcfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "Final", "AccessControl", + "Required", "RawDocComment" ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC4uuidSSvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] + "init_kind": "Designated" }, { - "kind": "Var", - "name": "characteristicTypes", - "printedName": "characteristicTypes", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvpZ", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC4fromACs7Decoder_p_tKcfc", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", + "Required", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : ZTCoreKit.ZTCharacteristic.Type]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTCharacteristic.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCharacteristic", - "printedName": "ZTCoreKit.ZTCharacteristic", - "usr": "s:9ZTCoreKit16ZTCharacteristicC" - } - ] - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvsZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC19characteristicTypesSDySSAA16ZTCharacteristicCmGvMZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC6encode2toys7Encoder_p_tKF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6encode2toys7Encoder_p_tKF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(device:service:)", + "kind": "Function", + "name": "saveWithResult", + "printedName": "saveWithResult(_:)", "children": [ { "kind": "TypeNominal", - "name": "ZTPrimaryService", - "printedName": "ZTCoreKit.ZTPrimaryService", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC" - }, - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CBService", - "printedName": "CoreBluetooth.CBService", - "usr": "c:objc(cs)CBService" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC6device7serviceAcA8ZTDeviceC_So9CBServiceCtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14saveWithResultyS2bF", + "mangledName": "$s9ZTCoreKit8ZTPacketC14saveWithResultyS2bF", "moduleName": "ZTCoreKit", - "overriding": true, - "implicit": true, + "isOpen": true, "declAttributes": [ - "Required" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit16ZTPrimaryServiceC", - "mangledName": "$s9ZTCoreKit16ZTPrimaryServiceC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit9ZTServiceC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTService" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTServiceProtocol", - "printedName": "ZTServiceProtocol", - "usr": "s:9ZTCoreKit17ZTServiceProtocolP", - "mangledName": "$s9ZTCoreKit17ZTServiceProtocolP" + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappableResponseSerializer", - "printedName": "ZTMappableResponseSerializer", - "children": [ - { - "kind": "Var", - "name": "emptyResponseCodes", - "printedName": "emptyResponseCodes", + "kind": "Function", + "name": "updateSegmentsTimestamp", + "printedName": "updateSegmentsTimestamp(activityId:startId:anchorTime:)", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], - "usr": "s:Sh" + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC23updateSegmentsTimestamp10activityId05startH010anchorTimeySS_s5Int16Vs5Int64VSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC23updateSegmentsTimestamp10activityId05startH010anchorTimeySS_s5Int16Vs5Int64VSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ "Final", - "HasStorage", "AccessControl", - "RawDocComment" + "Available" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateSegment", + "printedName": "updateSegment(_:segment:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sh" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC05emptyD5CodesShySiGvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13updateSegment_7segmentySSSg_ACtF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13updateSegment_7segmentySSSg_ACtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "keyPath", - "printedName": "keyPath", + "kind": "Function", + "name": "updateSegments", + "printedName": "updateSegments(ids:status:activityId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, { "kind": "TypeNominal", "name": "Optional", @@ -106643,1764 +95932,1768 @@ "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvp", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14updateSegments3ids6status10activityIdySays5Int16VG_AC6StatusOSSSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14updateSegments3ids6status10activityIdySays5Int16VG_AC6StatusOSSSgtFZ", "moduleName": "ZTCoreKit", + "static": true, "declAttributes": [ "Final", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "new", + "printedName": "new", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7keyPathSSSgvg", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO3newyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO3newyA2EmF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, "declAttributes": [ - "Final" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readyToSend", + "printedName": "readyToSend", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "context", - "printedName": "context", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO11readyToSendyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO11readyToSendyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Var", + "name": "sending", + "printedName": "sending", "children": [ { - "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO7sendingyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO7sendingyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "sent", + "printedName": "sent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO4sentyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO4sentyA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.Status.Type) -> ZTCoreKit.ZTPacket.Status", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.Status.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO5erroryA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO5erroryA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "ZTCoreKit.ZTPacket.Status?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Status", + "printedName": "ZTCoreKit.ZTPacket.Status", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC7contextAA12ZTMapContext_pSgvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValueAESgs5Int16V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValueAESgs5Int16V_tcfc", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "object", - "printedName": "object", - "children": [ + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO8rawValues5Int16Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC6StatusO", + "mangledName": "$s9ZTCoreKit8ZTPacketC6StatusO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "Int16", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC6objectxSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { - "kind": "Var", - "name": "serializeCallback", - "printedName": "serializeCallback", + "kind": "TypeDecl", + "name": "TimestampType", + "printedName": "TimestampType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> τ_0_0", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO5startyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO5startyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stop", + "printedName": "stop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4stopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4stopyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "pause", + "printedName": "pause", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvp", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO5pauseyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO5pauseyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "resume", + "printedName": "resume", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> τ_0_0", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" } ] } ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvg", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC17serializeCallbackyx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAE4DataVSgs5Error_pSgtKcvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "serialize", - "printedName": "serialize(request:response:data:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO6resumeyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO6resumeyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Var", + "name": "reboot", + "printedName": "reboot", "children": [ { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.TimestampType.Type) -> ZTCoreKit.ZTPacket.TimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.TimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO6rebootyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO6rebootyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.TimestampType?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimestampType", + "printedName": "ZTCoreKit.ZTPacket.TimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC9serialize7request8response4data5errorx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAI4DataVSgs5Error_pSgtKF", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC9serialize7request8response4data5errorx10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAI4DataVSgs5Error_pSgtKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit28ZTMappableResponseSerializerC", - "mangledName": "$s9ZTCoreKit28ZTMappableResponseSerializerC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTMappableArrayResponseSerializer", - "printedName": "ZTMappableArrayResponseSerializer", - "children": [ - { - "kind": "Var", - "name": "emptyResponseCodes", - "printedName": "emptyResponseCodes", - "children": [ + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sh" + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC13TimestampTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC13TimestampTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sh" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC05emptyE5CodesShySiGvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { - "kind": "Var", - "name": "keyPath", - "printedName": "keyPath", + "kind": "TypeDecl", + "name": "BmTimestampType", + "printedName": "BmTimestampType", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "shoeWearOn", + "printedName": "shoeWearOn", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7keyPathSSSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "context", - "printedName": "context", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO10shoeWearOnyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO10shoeWearOnyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "Var", + "name": "shoeWearOff", + "printedName": "shoeWearOff", "children": [ { - "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11shoeWearOffyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11shoeWearOffyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "walkingStart", + "printedName": "walkingStart", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC7contextAA12ZTMapContext_pSgvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "serializeCallback", - "printedName": "serializeCallback", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12walkingStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12walkingStartyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [τ_0_0]", + "kind": "Var", + "name": "walkingStop", + "printedName": "walkingStop", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] } - ], - "usr": "s:Sa" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11walkingStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11walkingStopyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "runningStart", + "printedName": "runningStart", + "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } - ], - "usr": "s:Sq" - }, + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12runningStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12runningStartyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "runningStop", + "printedName": "runningStop", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvp", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11runningStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11runningStopyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "cyclingStart", + "printedName": "cyclingStart", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [τ_0_0]", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" } ] } ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvg", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC17serializeCallbackySayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAF4DataVSgs5Error_pSgtKcvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "serialize", - "printedName": "serialize(request:response:data:error:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO12cyclingStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO12cyclingStartyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", + "kind": "Var", + "name": "cyclingStop", + "printedName": "cyclingStop", "children": [ { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11cyclingStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11cyclingStopyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.HTTPURLResponse?", + "kind": "Var", + "name": "transportStart", + "printedName": "transportStart", "children": [ { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO14transportStartyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO14transportStartyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "transportStop", + "printedName": "transportStop", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.BmTimestampType.Type) -> ZTCoreKit.ZTPacket.BmTimestampType", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO13transportStopyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO13transportStopyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC9serialize7request8response4data5errorSayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAJ4DataVSgs5Error_pSgtKF", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC9serialize7request8response4data5errorSayxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAJ4DataVSgs5Error_pSgtKF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit33ZTMappableArrayResponseSerializerC", - "mangledName": "$s9ZTCoreKit33ZTMappableArrayResponseSerializerC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTEnumTransform", - "printedName": "ZTEnumTransform", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTEnumTransform", - "printedName": "ZTCoreKit.ZTEnumTransform<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ], - "usr": "s:9ZTCoreKit15ZTEnumTransformC" - } - ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit15ZTEnumTransformCACyxGycfc", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformCACyxGycfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC17transformFromJSONyxSgypSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0.RawValue?", + "kind": "Var", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.RawValue" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC15transformToJSONy8RawValueQzSgxSgF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit15ZTEnumTransformC", - "mangledName": "$s9ZTCoreKit15ZTEnumTransformC", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RawRepresentable>", - "sugared_genericSig": "", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", - "children": [ - { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO4nameSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } ] }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.RawValue" - } - ] - } - ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTReachability", - "printedName": "ZTReachability", - "children": [ - { - "kind": "Var", - "name": "currentAdapterMode", - "printedName": "currentAdapterMode", - "children": [ - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType?", + "children": [ + { + "kind": "TypeNominal", + "name": "BmTimestampType", + "printedName": "ZTCoreKit.ZTPacket.BmTimestampType", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "get" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0Ovs", + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC18currentAdapterModeAC0E0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentConnectionStatus", - "printedName": "currentConnectionStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovp", + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC15BmTimestampTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC15BmTimestampTypeO", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23currentConnectionStatusAC0E0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, { - "kind": "Var", - "name": "onConnectionReachable", - "printedName": "onConnectionReachable", + "kind": "TypeDecl", + "name": "PacketType", + "printedName": "PacketType", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Var", + "name": "maxDataValue", + "printedName": "maxDataValue", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvpZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvpZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvgZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12maxDataValues5UInt8VvgZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO7unknownyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO7unknownyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC21onConnectionReachableyACcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "onConnectionUnReachable", - "printedName": "onConnectionUnReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "Var", + "name": "quantification", + "printedName": "quantification", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14quantificationyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14quantificationyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "walkAnalysis", + "printedName": "walkAnalysis", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTReachability) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability) -> ()", + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO12walkAnalysisyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO12walkAnalysisyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "runAnalysis", + "printedName": "runAnalysis", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC23onConnectionUnReachableyACcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "managerStarted", - "printedName": "managerStarted", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11runAnalysisyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11runAnalysisyA2EmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "stairs", + "printedName": "stairs", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO6stairsyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO6stairsyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "cycling", + "printedName": "cycling", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO7cyclingyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO7cyclingyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "jump", + "printedName": "jump", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC14managerStartedSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Adapter", - "printedName": "Adapter", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO4jumpyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO4jumpyA2EmF", + "moduleName": "ZTCoreKit" + }, { "kind": "Var", - "name": "all", - "printedName": "all", + "name": "safety", + "printedName": "safety", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108408,36 +97701,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO3allyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO6safetyyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO6safetyyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "wifi", - "printedName": "wifi", + "name": "staticActivity", + "printedName": "staticActivity", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108445,36 +97738,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4wifiyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14staticActivityyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14staticActivityyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "cellular", - "printedName": "cellular", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108482,36 +97775,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8cellularyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO5debugyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO5debugyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "wiredEthernet", - "printedName": "wiredEthernet", + "name": "debugTelemetry", + "printedName": "debugTelemetry", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108519,36 +97812,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO13wiredEthernetyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO14debugTelemetryyA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO14debugTelemetryyA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "loopback", - "printedName": "loopback", + "name": "debugProba", + "printedName": "debugProba", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108556,36 +97849,36 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO8loopbackyA2EmF", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO10debugProbayA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO10debugProbayA2EmF", "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "other", - "printedName": "other", + "name": "bmTimestampPacket", + "printedName": "bmTimestampPacket", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108593,36 +97886,39 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO5otheryA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO011bmTimestampD0yA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO011bmTimestampD0yA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", - "name": "none", - "printedName": "none", + "name": "fwTimestampPacket", + "printedName": "fwTimestampPacket", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter.Type) -> ZTCoreKit.ZTReachability.Adapter", + "printedName": "(ZTCoreKit.ZTPacket.PacketType.Type) -> ZTCoreKit.ZTPacket.PacketType", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Adapter.Type", + "printedName": "ZTCoreKit.ZTPacket.PacketType.Type", "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" } ] } @@ -108630,9 +97926,12 @@ } ], "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4noneyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO011fwTimestampD0yA2EmF", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO011fwTimestampD0yA2EmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { "kind": "Var", @@ -108647,8 +97946,8 @@ } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvp", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -108667,49 +97966,61 @@ } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO11descriptionSSvg", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO11descriptionSSvg", "moduleName": "ZTCoreKit", "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "getInterfaceType", - "printedName": "getInterfaceType()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "InterfaceType", - "printedName": "Network.NWInterface.InterfaceType", - "usr": "s:7Network11NWInterfaceV13InterfaceTypeO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket.PacketType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PacketType", + "printedName": "ZTCoreKit.ZTPacket.PacketType", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO16getInterfaceType7Network11NWInterfaceV0fG0OyF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValueAESgs5UInt8V_tcfc", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivp", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", "implicit": true, "accessors": [ @@ -108720,212 +98031,481 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO9hashValueSivg", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit8ZTPacketC10PacketTypeO", + "mangledName": "$s9ZTCoreKit8ZTPacketC10PacketTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "lastSegmentId", + "printedName": "lastSegmentId(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13lastSegmentId08activityF0SiSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13lastSegmentId08activityF0SiSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "segmentsCount", + "printedName": "segmentsCount(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC13segmentsCount10activityIdSiSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13segmentsCount10activityIdSiSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadUnsent", + "printedName": "loadUnsent(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadUnsent10activityIdSayACGSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadUnsent10activityIdSayACGSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO4hash4intoys6HasherVz_tF", - "moduleName": "ZTCoreKit", - "implicit": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sa" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityIdSayACGSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityIdSayACGSS_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:startId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId05startG0SayACGSS_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId05startG0SayACGSS_s5Int16VtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAllPackets", + "printedName": "loadAllPackets(activityId:startId:lastId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7AdapterO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14loadAllPackets10activityId05startH004lastH0SayACGSS_s5Int16VSgAKtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14loadAllPackets10activityId05startH004lastH0SayACGSS_s5Int16VSgAKtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadAllIds", + "printedName": "loadAllIds(activityId:startId:endId:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadAllIds10activityId05startH003endH0SaySiGSS_s5Int16VAJSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadAllIds10activityId05startH003endH0SaySiGSS_s5Int16VAJSgtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", + "kind": "Function", + "name": "loadAllPacketsIds", + "printedName": "loadAllPacketsIds(activityId:startId:endId:)", "children": [ { - "kind": "Var", - "name": "online", - "printedName": "online", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int16]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> (ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Adapter) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(adapter: ZTCoreKit.ZTReachability.Adapter)", - "children": [ - { - "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO6onlineyAeC7AdapterO_tcAEmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sa" }, { - "kind": "Var", - "name": "offline", - "printedName": "offline", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTReachability.Connection.Type) -> ZTCoreKit.ZTReachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTReachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO7offlineyA2EmF", - "moduleName": "ZTCoreKit" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC17loadAllPacketsIds10activityId05startI003endI0Says5Int16VGSS_A2ISgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17loadAllPacketsIds10activityId05startI003endI0Says5Int16VGSS_A2ISgtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadPrevious", + "printedName": "loadPrevious(activityId:chunkId:originalTimestamp:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" }, { - "kind": "Var", - "name": "description", - "printedName": "description", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -108934,624 +98514,701 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "ZTCoreKit", - "accessorKind": "get" - } - ] + "usr": "s:Sq" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC12loadPrevious10activityId05chunkG017originalTimestampACSgSSSg_s5Int16Vs5Int64VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12loadPrevious10activityId05chunkG017originalTimestampACSgSSSg_s5Int16Vs5Int64VtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadPacket", + "printedName": "loadPacket(activityId:id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" - }, + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Connection", - "printedName": "ZTCoreKit.ZTReachability.Connection", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit14ZTReachabilityC10ConnectionO", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC10ConnectionO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC10loadPacket10activityId2idACSgSSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC10loadPacket10activityId2idACSgSSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "conformances": [ + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadLastFwVersionEvent", + "printedName": "loadLastFwVersionEvent(activityId:chunkId:startId:)", + "children": [ { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTPacket?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(adapter:)", - "children": [ { "kind": "TypeNominal", - "name": "ZTReachability", - "printedName": "ZTCoreKit.ZTReachability", - "usr": "s:9ZTCoreKit14ZTReachabilityC" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" }, { "kind": "TypeNominal", - "name": "Adapter", - "printedName": "ZTCoreKit.ZTReachability.Adapter", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], "hasDefaultArg": true, - "usr": "s:9ZTCoreKit14ZTReachabilityC7AdapterO" + "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC7adapterA2C7AdapterO_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC22loadLastFwVersionEvent10activityId05chunkJ005startJ0ACSgSSSg_s5Int16VAKSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC22loadLastFwVersionEvent10activityId05chunkJ005startJ0ACSgSSSg_s5Int16VAKSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "startManager", - "printedName": "startManager()", + "name": "loadAllChunks", + "printedName": "loadAllChunks(activityId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC12startManageryyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC12startManageryyF", + "usr": "s:9ZTCoreKit8ZTPacketC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC13loadAllChunks10activityIdSayxGSS_tACRbzlFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTPacket>", + "sugared_genericSig": "", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "stopManager", - "printedName": "stopManager()", + "name": "loadAll", + "printedName": "loadAll(activityId:lastChunkId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTReachabilityC11stopManageryyF", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC11stopManageryyF", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId09lastChunkG0SayACGSS_s5Int16VSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId09lastChunkG0SayACGSS_s5Int16VSgtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit14ZTReachabilityC", - "mangledName": "$s9ZTCoreKit14ZTReachabilityC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTDateDefaultTransform", - "printedName": "ZTDateDefaultTransform", - "children": [ + }, { - "kind": "TypeDecl", - "name": "Unit", - "printedName": "Unit", + "kind": "Function", + "name": "loadAll", + "printedName": "loadAll(activityId:firstChunkId:lastChunkId:)", "children": [ { - "kind": "Var", - "name": "seconds", - "printedName": "seconds", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO7secondsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sa" }, { - "kind": "Var", - "name": "milliseconds", - "printedName": "milliseconds", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDateDefaultTransform.Unit.Type) -> ZTCoreKit.ZTDateDefaultTransform.Unit", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "EnumElement", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO12millisecondsyA2EmF", - "moduleName": "ZTCoreKit" + "usr": "s:Sq" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit?", - "children": [ - { - "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueAESgSd_tcfc", - "moduleName": "ZTCoreKit", - "implicit": true, - "init_kind": "Designated" + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7loadAll10activityId010firstChunkG004lastiG0SayACGSS_s5Int16VSgAKtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7loadAll10activityId010firstChunkG004lastiG0SayACGSS_s5Int16VSgAKtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(activityId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvp", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO8rawValueSdvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "accessorKind": "get" - } - ] + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4UnitO", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC5clear10activityIdySSSg_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC5clear10activityIdySSSg_tFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "enumRawTypeName": "Double", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMissedChunk", + "printedName": "getMissedChunk(activity:)", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivity?", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] + "kind": "TypeNominal", + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" } ], - "usr": "s:SY", - "mangledName": "$sSY" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC14getMissedChunk8activitys5Int16VSgAA10ZTActivityCSg_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC14getMissedChunk8activitys5Int16VSgAA10ZTActivityCSg_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(unit:)", + "kind": "Function", + "name": "getMaxMissedChunk", + "printedName": "getMaxMissedChunk(activityId:chunkId:)", "children": [ { "kind": "TypeNominal", - "name": "ZTDateDefaultTransform", - "printedName": "ZTCoreKit.ZTDateDefaultTransform", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC" + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Unit", - "printedName": "ZTCoreKit.ZTDateDefaultTransform.Unit", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4UnitO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC4unitA2C4UnitO_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC17getMaxMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17getMaxMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "transformFromJSON", - "printedName": "transformFromJSON(_:)", + "name": "getMissedPackets", + "printedName": "getMissedPackets(activityId:startId:endId:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "[Swift.Int16]?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Array", + "printedName": "[Swift.Int16]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC17transformFromJSONy10Foundation4DateVSgypSgF", + "usr": "s:9ZTCoreKit8ZTPacketC16getMissedPackets10activityId05startH003endH0Says5Int16VGSgSS_A2ISgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC16getMissedPackets10activityId05startH003endH0Says5Int16VGSgSS_A2ISgtFZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "transformToJSON", - "printedName": "transformToJSON(_:)", + "name": "getMinMissedChunk", + "printedName": "getMinMissedChunk(activityId:chunkId:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Double?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC15transformToJSONySdSg10Foundation4DateVSgF", + "usr": "s:9ZTCoreKit8ZTPacketC17getMinMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17getMinMissedChunk10activityId05chunkI0s5Int16VSgSS_AHtFZ", "moduleName": "ZTCoreKit", - "isOpen": true, + "static": true, + "deprecated": true, "declAttributes": [ - "AccessControl" + "Final", + "Available" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTDateDefaultTransformC", - "mangledName": "$s9ZTCoreKit22ZTDateDefaultTransformC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "conformances": [ + }, { - "kind": "Conformance", - "name": "ZTTransformType", - "printedName": "ZTTransformType", + "kind": "Function", + "name": "getMinMissedPacketId", + "printedName": "getMinMissedPacketId(activityId:startId:lastId:)", "children": [ { - "kind": "TypeWitness", - "name": "Object", - "printedName": "Object", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "JSON", - "printedName": "JSON", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit15ZTTransformTypeP", - "mangledName": "$s9ZTCoreKit15ZTTransformTypeP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "children": [ + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC20getMinMissedPacketId08activityH005startH004lastH0s5Int16VSgSS_AiJtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC20getMinMissedPacketId08activityH005startH004lastH0s5Int16VSgSS_AiJtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", - "name": "mapping", - "printedName": "mapping(map:)", + "name": "checkMissedChunks", + "printedName": "checkMissedChunks(activityId:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "usr": "s:9ZTCoreKit8ZTPacketC17checkMissedChunks10activityIdSbSS_tFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC17checkMissedChunks10activityIdSbSS_tFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ - "Mutating", + "Final", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "Mutating" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "name": "hasMissedChunks", + "printedName": "hasMissedChunks(activityId:startIndex:endIndex:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", + "usr": "s:9ZTCoreKit8ZTPacketC15hasMissedChunks10activityId10startIndex03endJ0SbSS_s5Int16VSgAJtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC15hasMissedChunks10activityId10startIndex03endJ0SbSS_s5Int16VSgAJtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], "isFromExtension": true, @@ -109559,9 +99216,14 @@ }, { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(prettyPrint:)", + "name": "checkPacketToRemove", + "printedName": "checkPacketToRemove(activityId:packetId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Optional", @@ -109578,276 +99240,363 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", - "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", + "usr": "s:9ZTCoreKit8ZTPacketC19checkPacketToRemove10activityId06packetI0ySSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC19checkPacketToRemove10activityId06packetI0ySSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTMappable", - "printedName": "ZTMappable", - "children": [ + }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(map:)", + "kind": "Function", + "name": "hasPreviousChunk", + "printedName": "hasPreviousChunk(activityId:currentIndex:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", - "mangledName": "$s9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC16hasPreviousChunk10activityId12currentIndexSbSS_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC16hasPreviousChunk10activityId12currentIndexSbSS_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", - "protocolReq": true, + "static": true, "declAttributes": [ + "Final", "RawDocComment" ], - "reqNewWitnessTableEntry": true, - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", + "kind": "Function", + "name": "isChunkSaved", + "printedName": "isChunkSaved(activityId:chunkId:startId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC12isChunkSaved10activityId05chunkH005startH0SbSSSg_s5Int16VAJSgtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12isChunkSaved10activityId05chunkH005startH0SbSSSg_s5Int16VAJSgtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "Final" ], "isFromExtension": true, - "init_kind": "Convenience" + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSON:context:)", + "kind": "Function", + "name": "isSaved", + "printedName": "isSaved(activityId:chunkId:startId:endId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "usr": "s:SD" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Constructor", - "usr": "s:9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", - "mangledName": "$s9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", + "declKind": "Func", + "usr": "s:9ZTCoreKit8ZTPacketC7isSaved10activityId05chunkG005startG003endG0SbSSSg_s5Int16VAKSgALtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC7isSaved10activityId05chunkG005startG003endG0SbSSSg_s5Int16VAKSgALtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "RawDocComment" + "Final" ], "isFromExtension": true, - "init_kind": "Convenience" - } - ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit10ZTMappableP", - "mangledName": "$s9ZTCoreKit10ZTMappableP", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ZTStaticMappable", - "printedName": "ZTStaticMappable", - "children": [ + "funcSelfKind": "NonMutating" + }, { "kind": "Function", - "name": "objectForMapping", - "printedName": "objectForMapping(map:)", + "name": "isChunkEmpty", + "printedName": "isChunkEmpty(activityId:chunkId:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTBaseMappable)?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTBaseMappable", - "printedName": "any ZTCoreKit.ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTMap", - "printedName": "ZTCoreKit.ZTMap", - "usr": "s:9ZTCoreKit5ZTMapC" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", - "mangledName": "$s9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", + "usr": "s:9ZTCoreKit8ZTPacketC12isChunkEmpty10activityId05chunkH0SbSSSg_s5Int16VtFZ", + "mangledName": "$s9ZTCoreKit8ZTPacketC12isChunkEmpty10activityId05chunkH0SbSSSg_s5Int16VtFZ", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTStaticMappable>", - "sugared_genericSig": "", "static": true, - "protocolReq": true, "declAttributes": [ - "RawDocComment" + "Final" ], - "reqNewWitnessTableEntry": true, + "isFromExtension": true, "funcSelfKind": "NonMutating" } ], - "declKind": "Protocol", - "usr": "s:9ZTCoreKit16ZTStaticMappableP", - "mangledName": "$s9ZTCoreKit16ZTStaticMappableP", + "declKind": "Class", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket", + "mangledName": "$s9ZTCoreKit8ZTPacketC", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", + "isOpen": true, + "objc_name": "ZTPacket", "declAttributes": [ - "AccessControl" + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSManagedObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreData.NSManagedObject", + "ObjectiveC.NSObject" ], "conformances": [ { "kind": "Conformance", - "name": "ZTBaseMappable", - "printedName": "ZTBaseMappable", - "usr": "s:9ZTCoreKit14ZTBaseMappableP", - "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + "name": "ZTNotifyDataMessage", + "printedName": "ZTNotifyDataMessage", + "usr": "s:9ZTCoreKit19ZTNotifyDataMessageP", + "mangledName": "$s9ZTCoreKit19ZTNotifyDataMessageP" + }, + { + "kind": "Conformance", + "name": "ZTPacketCachable", + "printedName": "ZTPacketCachable", + "children": [ + { + "kind": "TypeWitness", + "name": "Activity", + "printedName": "Activity", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivity", + "printedName": "ZTCoreKit.ZTActivity", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTActivity" + } + ] + } + ], + "usr": "s:9ZTCoreKit16ZTPacketCachableP", + "mangledName": "$s9ZTCoreKit16ZTPacketCachableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ObservableObject", + "printedName": "ObservableObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectWillChangePublisher", + "printedName": "ObjectWillChangePublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "ObservableObjectPublisher", + "printedName": "Combine.ObservableObjectPublisher", + "usr": "s:7Combine25ObservableObjectPublisherC" + } + ] + } + ], + "usr": "s:7Combine16ObservableObjectP", + "mangledName": "$s7Combine16ObservableObjectP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } ] }, @@ -109863,12 +99612,12 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "Alamofire", + "printedName": "Alamofire", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ - "RawDocComment" + "ImplementationOnly" ] }, { @@ -111622,13 +101371,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Int?", + "printedName": "Swift.Int16?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } ], "hasDefaultArg": true, @@ -111637,18 +101386,18 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTSegmentData]?", + "printedName": "[ZTCoreKit.ZTPacket]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -111693,8 +101442,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_SiSgSayAA13ZTSegmentDataCGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_SiSgSayAA13ZTSegmentDataCGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_s5Int16VSgSayAA8ZTPacketCGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC19addActivitySegments10activityId8duration8segments10completionySS_s5Int16VSgSayAA8ZTPacketCGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -111721,9 +101470,9 @@ }, { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" }, { "kind": "TypeNominal", @@ -111790,8 +101539,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA13ZTSegmentDataCSDySSypGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA13ZTSegmentDataCSDySSypGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA8ZTPacketCSDySSypGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC8addChunk4code5chunk10attributes10completionySS_AA8ZTPacketCSDySSypGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -111819,13 +101568,13 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -111895,8 +101644,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA13ZTSegmentDataCGSDySSypGSgys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA13ZTSegmentDataCGSDySSypGSgys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA8ZTPacketCGSDySSypGSgys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC17addActivityChunks4code6chunks10attributes10completionySS_SayAA8ZTPacketCGSDySSypGSgys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112139,18 +101888,18 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTSegmentData]?", + "printedName": "[ZTCoreKit.ZTPacket]?", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[ZTCoreKit.ZTSegmentData]", + "printedName": "[ZTCoreKit.ZTPacket]", "children": [ { "kind": "TypeNominal", - "name": "ZTSegmentData", - "printedName": "ZTCoreKit.ZTSegmentData", - "usr": "s:9ZTCoreKit13ZTSegmentDataC" + "name": "ZTPacket", + "printedName": "ZTCoreKit.ZTPacket", + "usr": "c:@M@ZTCoreKit@objc(cs)ZTPacket" } ], "usr": "s:Sa" @@ -112207,19 +101956,801 @@ } ] } - ] + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA8ZTPacketCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA8ZTPacketCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((τ_0_0?, (any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getData", + "printedName": "getData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAppAttributes", + "printedName": "getAppAttributes(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDataArray", + "printedName": "getDataArray(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postData", + "printedName": "postData(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA13ZTSegmentDataCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC12stopActivity2id8duration9timestamp8segments10completionySS_SiSgs5Int64VSgSayAA13ZTSegmentDataCGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", @@ -112229,8 +102760,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postData", + "printedName": "postData(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112272,64 +102803,55 @@ "usr": "s:Sq" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((τ_0_0?, (any Swift.Error)?) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(τ_0_0?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtcSgtAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", + "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", "moduleName": "ZTCoreKit", "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", "sugared_genericSig": "", @@ -112342,8 +102864,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postDataGenericResult", + "printedName": "postDataGenericResult(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112358,36 +102880,120 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postDataResult", + "printedName": "postDataResult(path:parameters:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> ()", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112397,7 +103003,7 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?)", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", @@ -112426,20 +103032,6 @@ ], "usr": "s:Sq" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -112460,8 +103052,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgyAI_10Foundation0E0VSgs5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112472,8 +103064,8 @@ }, { "kind": "Function", - "name": "getData", - "printedName": "getData(path:parameters:completion:)", + "name": "postDataResultArray", + "printedName": "postDataResultArray(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", @@ -112488,31 +103080,22 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeFunc", @@ -112584,8 +103167,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC7getData4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112596,18 +103179,52 @@ }, { "kind": "Function", - "name": "getAppAttributes", - "printedName": "getAppAttributes(completion:)", + "name": "deleteData", + "printedName": "deleteData(path:parameters:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112616,58 +103233,24 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC16getAppAttributes10completionyySDySSypGSg_s5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112678,18 +103261,43 @@ }, { "kind": "Function", - "name": "checkFirmwareUpdate", - "printedName": "checkFirmwareUpdate(completion:)", + "name": "addActivityData", + "printedName": "addActivityData(activityId:timestamp:data:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112698,37 +103306,24 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_s5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112739,18 +103334,43 @@ }, { "kind": "Function", - "name": "checkFirmwareUpdate", - "printedName": "checkFirmwareUpdate(completion:)", + "name": "updateActivityAttributes", + "printedName": "updateActivityAttributes(activityId:attributes:completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112759,28 +103379,62 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, Swift.String?, (any Swift.Error)?)", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updatePushNotificationToken", + "printedName": "updatePushNotificationToken(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(((any Swift.Error)?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", @@ -112798,12 +103452,14 @@ } ] } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC19checkFirmwareUpdate10completionyySb_SSSgs5Error_pSgtc_tF", + "usr": "s:9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", + "mangledName": "$s9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112814,8 +103470,8 @@ }, { "kind": "Function", - "name": "getDataArray", - "printedName": "getDataArray(path:parameters:completion:)", + "name": "deleteUser", + "printedName": "deleteUser(completion:)", "children": [ { "kind": "TypeNominal", @@ -112823,43 +103479,69 @@ "printedName": "()" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], - "usr": "s:SD" + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "existUser", + "printedName": "existUser(attribute:value:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "printedName": "((any Swift.Error)?, Swift.Bool?) -> ()", "children": [ { "kind": "TypeNominal", @@ -112869,39 +103551,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "printedName": "((any Swift.Error)?, Swift.Bool?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.String : Any]]?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" @@ -112909,13 +103570,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Swift.Bool?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "usr": "s:Sq" @@ -112926,8 +103587,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC12getDataArray4path10parameters10completionySS_SDySSypGSgySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -112938,8 +103599,8 @@ }, { "kind": "Function", - "name": "postData", - "printedName": "postData(path:parameters:completion:)", + "name": "suborgExist", + "printedName": "suborgExist(code:completion:)", "children": [ { "kind": "TypeNominal", @@ -112952,29 +103613,10 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", @@ -112983,24 +103625,16 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", + "mangledName": "$s9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113011,8 +103645,8 @@ }, { "kind": "Function", - "name": "postData", - "printedName": "postData(path:parameters:completion:)", + "name": "trackEvent", + "printedName": "trackEvent(name:data:timestamp:attributes:)", "children": [ { "kind": "TypeNominal", @@ -113053,10 +103687,151 @@ "hasDefaultArg": true, "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "mangledName": "$s9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "log", + "printedName": "log(severity:component:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTLoggerSeverity", + "printedName": "ZTCoreKit.ZTLoggerSeverity", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" + }, + { + "kind": "TypeNominal", + "name": "ZTLoggerComponent", + "printedName": "ZTCoreKit.ZTLoggerComponent", + "hasDefaultArg": true, + "usr": "s:9ZTCoreKit17ZTLoggerComponentO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "mangledName": "$s9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addActivityComment", + "printedName": "addActivityComment(activityId:text:mediaFileTemplates:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[ZTCoreKit.ZTMediaFileTemplate]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFileTemplate]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(τ_0_0?, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113066,17 +103841,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(τ_0_0?, (any Swift.Error)?)", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "τ_0_0?", + "printedName": "ZTCoreKit.ZTActivityComment?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" } ], "usr": "s:Sq" @@ -113101,11 +103877,9 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", - "mangledName": "$s9ZTCoreKit5ZTApiC8postData4path10parameters10completionySS_SDySSypGSgyxSg_s5Error_pSgtctAA10ZTMappableRzlF", + "usr": "s:9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", - "sugared_genericSig": "", "declAttributes": [ "Final", "AccessControl", @@ -113115,8 +103889,8 @@ }, { "kind": "Function", - "name": "postDataGenericResult", - "printedName": "postDataGenericResult(path:parameters:completion:)", + "name": "saveActivityComment", + "printedName": "saveActivityComment(commentId:text:completion:)", "children": [ { "kind": "TypeNominal", @@ -113131,27 +103905,68 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:SD" + ] + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getActivityComments", + "printedName": "getActivityComments(activityId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Any?, (any Swift.Error)?) -> ()", + "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113161,17 +103976,26 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(Any?, (any Swift.Error)?)", + "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Any?", + "printedName": "[ZTCoreKit.ZTActivityComment]?", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Array", + "printedName": "[ZTCoreKit.ZTActivityComment]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" @@ -113196,8 +104020,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21postDataGenericResult4path10parameters10completionySS_SDySSypGyypSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113208,8 +104032,8 @@ }, { "kind": "Function", - "name": "postDataResult", - "printedName": "postDataResult(path:parameters:completion:)", + "name": "getActivityComment", + "printedName": "getActivityComment(commentId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113222,29 +104046,10 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113254,31 +104059,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", + "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "ZTCoreKit.ZTActivityComment?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" } ], "usr": "s:Sq" @@ -113303,8 +104095,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC14postDataResult4path10parameters10completionySS_SDySSypGyAHSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113315,8 +104107,8 @@ }, { "kind": "Function", - "name": "postDataResultArray", - "printedName": "postDataResultArray(path:parameters:completion:)", + "name": "getActivityRealtimeData", + "printedName": "getActivityRealtimeData(activityId:fields:completion:)", "children": [ { "kind": "TypeNominal", @@ -113331,27 +104123,22 @@ }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" } ], - "usr": "s:SD" + "usr": "s:Sa" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?) -> ()", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113361,39 +104148,31 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "([[Swift.String : Any]]?, (any Swift.Error)?)", + "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.String : Any]]?", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" } ], - "usr": "s:Sa" + "usr": "s:SD" } ], "usr": "s:Sq" @@ -113418,8 +104197,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19postDataResultArray4path10parameters10completionySS_SDySSypGySayAHGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113430,8 +104209,8 @@ }, { "kind": "Function", - "name": "deleteData", - "printedName": "deleteData(path:parameters:completion:)", + "name": "addMediaFileToActivityComment", + "printedName": "addMediaFileToActivityComment(commentId:mediaFileTemplate:completion:)", "children": [ { "kind": "TypeNominal", @@ -113446,31 +104225,9 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "ZTMediaFileTemplate", + "printedName": "ZTCoreKit.ZTMediaFileTemplate", + "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" }, { "kind": "TypeFunc", @@ -113500,8 +104257,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC10deleteData4path10parameters10completionySS_SDySSypGSgys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113512,8 +104269,8 @@ }, { "kind": "Function", - "name": "addActivityData", - "printedName": "addActivityData(activityId:timestamp:data:completion:)", + "name": "deleteActivityComment", + "printedName": "deleteActivityComment(commentId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113526,25 +104283,6 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - }, { "kind": "TypeFunc", "name": "Function", @@ -113573,8 +104311,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC15addActivityData10activityId9timestamp4data10completionySS_SdSayypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113585,8 +104323,8 @@ }, { "kind": "Function", - "name": "updateActivityAttributes", - "printedName": "updateActivityAttributes(activityId:attributes:completion:)", + "name": "deleteMediaFile", + "printedName": "deleteMediaFile(mediaFileId:completion:)", "children": [ { "kind": "TypeNominal", @@ -113599,25 +104337,6 @@ "printedName": "Swift.String", "usr": "s:SS" }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, { "kind": "TypeFunc", "name": "Function", @@ -113646,8 +104365,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC24updateActivityAttributes10activityId10attributes10completionySS_SDySSypGys5Error_pSgctF", + "usr": "s:9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113658,8 +104377,8 @@ }, { "kind": "Function", - "name": "updatePushNotificationToken", - "printedName": "updatePushNotificationToken(_:completion:)", + "name": "uploadActivityRawData", + "printedName": "uploadActivityRawData(activityId:filePath:completion:)", "children": [ { "kind": "TypeNominal", @@ -113674,55 +104393,51 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "((any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:Sq" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit5ZTApiC27updatePushNotificationToken_10completionySS_ys5Error_pSgcSgtF", + "usr": "s:9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "deleteUser", - "printedName": "deleteUser(completion:)", + "name": "getAchievements", + "printedName": "getAchievements(completion:)", "children": [ { "kind": "TypeNominal", @@ -113732,7 +104447,7 @@ { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113741,24 +104456,53 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Tuple", + "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Optional", + "printedName": "[ZTCoreKit.ZTAchievement]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTAchievement]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAchievement", + "printedName": "ZTCoreKit.ZTAchievement", + "usr": "s:9ZTCoreKit13ZTAchievementC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC10deleteUser10completionyys5Error_pSgc_tF", + "usr": "s:9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113769,8 +104513,8 @@ }, { "kind": "Function", - "name": "existUser", - "printedName": "existUser(attribute:value:completion:)", + "name": "complianceTestRetry", + "printedName": "complianceTestRetry(timeout:attempts:statusCode:completion:)", "children": [ { "kind": "TypeNominal", @@ -113779,20 +104523,26 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" }, { "kind": "TypeFunc", "name": "Function", - "printedName": "((any Swift.Error)?, Swift.Bool?) -> ()", + "printedName": "(Foundation.Data?, (any Swift.Error)?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113802,18 +104552,18 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "((any Swift.Error)?, Swift.Bool?)", + "printedName": "(Foundation.Data?, (any Swift.Error)?)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sq" @@ -113821,13 +104571,13 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Bool?", + "printedName": "(any Swift.Error)?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" @@ -113838,8 +104588,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC9existUser9attribute5value10completionySS_SSys5Error_pSg_SbSgtctF", + "usr": "s:9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113850,8 +104600,8 @@ }, { "kind": "Function", - "name": "suborgExist", - "printedName": "suborgExist(code:completion:)", + "name": "startListenMessages", + "printedName": "startListenMessages(onMessageReceived:onDataReceived:)", "children": [ { "kind": "TypeNominal", @@ -113859,15 +104609,35 @@ "printedName": "()" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "printedName": "(Foundation.Data?) -> ()", "children": [ { "kind": "TypeNominal", @@ -113876,16 +104646,24 @@ }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", - "mangledName": "$s9ZTCoreKit5ZTApiC11suborgExist4code10completionySS_ySbctF", + "usr": "s:9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", + "mangledName": "$s9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113896,86 +104674,63 @@ }, { "kind": "Function", - "name": "trackEvent", - "printedName": "trackEvent(name:data:timestamp:attributes:)", + "name": "stopListenMessages", + "printedName": "stopListenMessages()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "mangledName": "$s9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getLogFilesList", + "printedName": "getLogFilesList(date:)", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "[Foundation.URL]?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Array", + "printedName": "[Foundation.URL]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:SD" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int64?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "usr": "s:Sa" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.String : Any]?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "hasDefaultArg": true, @@ -113983,8 +104738,8 @@ } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", - "mangledName": "$s9ZTCoreKit5ZTApiC10trackEvent4name4data9timestamp10attributesySS_SDySSypGSgs5Int64VSgAJtF", + "usr": "s:9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", + "mangledName": "$s9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -113995,38 +104750,18 @@ }, { "kind": "Function", - "name": "log", - "printedName": "log(severity:component:message:)", + "name": "resendSavedRequests", + "printedName": "resendSavedRequests()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTLoggerSeverity", - "printedName": "ZTCoreKit.ZTLoggerSeverity", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit16ZTLoggerSeverityO" - }, - { - "kind": "TypeNominal", - "name": "ZTLoggerComponent", - "printedName": "ZTCoreKit.ZTLoggerComponent", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit17ZTLoggerComponentO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", - "mangledName": "$s9ZTCoreKit5ZTApiC3log8severity9component7messageyAA16ZTLoggerSeverityO_AA0H9ComponentOSStF", + "usr": "s:9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", + "mangledName": "$s9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", @@ -114034,114 +104769,434 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit5ZTApiC", + "mangledName": "$s9ZTCoreKit5ZTApiC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTCBPeripheralProtocol", + "printedName": "ZTCBPeripheralProtocol", + "children": [ { - "kind": "Function", - "name": "addActivityComment", - "printedName": "addActivityComment(activityId:text:mediaFileTemplates:completion:)", + "kind": "Var", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any CoreBluetooth.CBPeripheralDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralDelegate", + "printedName": "any CoreBluetooth.CBPeripheralDelegate", + "usr": "c:objc(pl)CBPeripheralDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvs", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8delegateSo20CBPeripheralDelegate_pSgvM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[ZTCoreKit.ZTMediaFileTemplate]?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTMediaFileTemplate]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4nameSSSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rssi", + "printedName": "rssi", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } ], "usr": "s:Sq" - }, + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Optional", + "printedName": "Foundation.NSNumber?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP4rssiSo8NSNumberCSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "CBPeripheralState", + "printedName": "CoreBluetooth.CBPeripheralState", + "usr": "c:@E@CBPeripheralState" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", + "name": "CBPeripheralState", + "printedName": "CoreBluetooth.CBPeripheralState", + "usr": "c:@E@CBPeripheralState" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP5stateSo17CBPeripheralStateVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "services", + "printedName": "services", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBService]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" - }, + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvp", + "moduleName": "ZTCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBService]?", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Array", + "printedName": "[CoreBluetooth.CBService]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" } ], - "usr": "s:Sq" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP8servicesSaySo9CBServiceCGSgvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC18addActivityComment10activityId4text18mediaFileTemplates10completionySS_SSSayAA07ZTMediaK8TemplateCGSgyAA010ZTActivityF0CSg_s5Error_pSgtctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10identifier10Foundation4UUIDVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "saveActivityComment", - "printedName": "saveActivityComment(commentId:text:completion:)", + "name": "discoverServices", + "printedName": "discoverServices(_:)", "children": [ { "kind": "TypeNominal", @@ -114150,58 +105205,156 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP16discoverServicesyySaySo6CBUUIDCGSgF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "discoverCharacteristics", + "printedName": "discoverCharacteristics(_:for:)", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreBluetooth.CBUUID]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" } ], - "usr": "s:Sq" + "usr": "s:Sa" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CBService", + "printedName": "CoreBluetooth.CBService", + "usr": "c:objc(cs)CBService" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP23discoverCharacteristics_3forySaySo6CBUUIDCGSg_So9CBServiceCtF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP9readValue3forySo16CBCharacteristicC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "writeValue", + "printedName": "writeValue(_:for:type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristicWriteType", + "printedName": "CoreBluetooth.CBCharacteristicWriteType", + "usr": "c:@E@CBCharacteristicWriteType" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19saveActivityComment9commentId4text10completionySS_SSys5Error_pSgctF", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP10writeValue_3for4typey10Foundation4DataV_So16CBCharacteristicCSo0K9WriteTypeVtF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "getActivityComments", - "printedName": "getActivityComments(activityId:completion:)", + "name": "setNotifyValue", + "printedName": "setNotifyValue(_:for:)", "children": [ { "kind": "TypeNominal", @@ -114210,81 +105363,55 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([ZTCoreKit.ZTActivityComment]?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTActivityComment]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTActivityComment]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19getActivityComments10activityId10completionySS_ySayAA17ZTActivityCommentCGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP14setNotifyValue_3forySb_So16CBCharacteristicCtF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTCBPeripheralProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "children": [ { "kind": "Function", - "name": "getActivityComment", - "printedName": "getActivityComment(commentId:completion:)", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", @@ -114293,89 +105420,71 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP7mapping3mapyAA5ZTMapC_tF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON()", + "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTActivityComment?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTActivityComment?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTActivityComment", - "printedName": "ZTCoreKit.ZTActivityComment", - "usr": "s:9ZTCoreKit17ZTActivityCommentC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC18getActivityComment9commentId10completionySS_yAA010ZTActivityF0CSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE6toJSONSDySSypGyF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "getActivityRealtimeData", - "printedName": "getActivityRealtimeData(activityId:fields:completion:)", + "name": "toJSONString", + "printedName": "toJSONString(prettyPrint:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", @@ -114384,149 +105493,98 @@ "usr": "s:SS" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([Swift.String : Any]?, (any Swift.Error)?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC23getActivityRealtimeData10activityId6fields10completionySS_SaySSGySDySSypGSg_s5Error_pSgtctF", + "usr": "s:9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", + "mangledName": "$s9ZTCoreKit14ZTBaseMappablePAAE12toJSONString11prettyPrintSSSgSb_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTMappable", + "printedName": "ZTMappable", + "children": [ { - "kind": "Function", - "name": "addMediaFileToActivityComment", - "printedName": "addMediaFileToActivityComment(commentId:mediaFileTemplate:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ZTMediaFileTemplate", - "printedName": "ZTCoreKit.ZTMediaFileTemplate", - "usr": "s:9ZTCoreKit19ZTMediaFileTemplateC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC29addMediaFileToActivityComment9commentId05mediaF8Template10completionySS_AA07ZTMediafM0Cys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit10ZTMappableP3mapxSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", + "protocolReq": true, "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" }, { - "kind": "Function", - "name": "deleteActivityComment", - "printedName": "deleteActivityComment(commentId:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -114535,579 +105593,541 @@ "usr": "s:SS" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" } - ] + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21deleteActivityComment9commentId10completionySS_ys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMappablePAAE10JSONString7contextxSgSS_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "init_kind": "Convenience" }, { - "kind": "Function", - "name": "deleteMediaFile", - "printedName": "deleteMediaFile(mediaFileId:completion:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSON:context:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC15deleteMediaFile05mediaF2Id10completionySS_ys5Error_pSgctF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", + "mangledName": "$s9ZTCoreKit10ZTMappablePAAE4JSON7contextxSgSDySSypG_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTMappable>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, + "isFromExtension": true, + "init_kind": "Convenience" + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ZTStaticMappable", + "printedName": "ZTStaticMappable", + "children": [ { "kind": "Function", - "name": "uploadActivityRawData", - "printedName": "uploadActivityRawData(activityId:filePath:completion:)", + "name": "objectForMapping", + "printedName": "objectForMapping(map:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTBaseMappable)?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ZTBaseMappable", + "printedName": "any ZTCoreKit.ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC21uploadActivityRawData10activityId8filePath10completionySS_10Foundation3URLVys5Error_pSgctF", + "usr": "s:9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", + "mangledName": "$s9ZTCoreKit16ZTStaticMappableP16objectForMapping3mapAA06ZTBaseD0_pSgAA5ZTMapC_tFZ", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTStaticMappable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, "declAttributes": [ - "Final", - "AccessControl" + "RawDocComment" ], + "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" - }, + } + ], + "declKind": "Protocol", + "usr": "s:9ZTCoreKit16ZTStaticMappableP", + "mangledName": "$s9ZTCoreKit16ZTStaticMappableP", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ { - "kind": "Function", - "name": "getAchievements", - "printedName": "getAchievements(completion:)", + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTRealtimeMessage", + "printedName": "ZTRealtimeMessage", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Side", + "printedName": "Side", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "([ZTCoreKit.ZTAchievement]?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[ZTCoreKit.ZTAchievement]?", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTAchievement]", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTAchievement", - "printedName": "ZTCoreKit.ZTAchievement", - "usr": "s:9ZTCoreKit13ZTAchievementC" - } - ], - "usr": "s:Sa" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4noneyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "left", + "printedName": "left", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC15getAchievements10completionyySayAA13ZTAchievementCGSg_s5Error_pSgtc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "complianceTestRetry", - "printedName": "complianceTestRetry(timeout:attempts:statusCode:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4leftyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "right", + "printedName": "right", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.Data?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO5rightyA2EmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "both", + "printedName": "both", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Side.Type) -> ZTCoreKit.ZTRealtimeMessage.Side", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19complianceTestRetry7timeout8attempts10statusCode10completionySi_S2iy10Foundation4DataVSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startListenMessages", - "printedName": "startListenMessages(onMessageReceived:onDataReceived:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO4bothyA2EmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> ()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } ], "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValueAESgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data?) -> ()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", - "mangledName": "$s9ZTCoreKit5ZTApiC19startListenMessages17onMessageReceived0g4DataI0yySSSgc_y10Foundation0J0VSgctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopListenMessages", - "printedName": "stopListenMessages()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC18stopListenMessagesyyF", - "mangledName": "$s9ZTCoreKit5ZTApiC18stopListenMessagesyyF", + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV4SideO", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLogFilesList", - "printedName": "getLogFilesList(date:)", - "children": [ + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sa" + ] } ], - "usr": "s:Sq" - }, + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "senderSide", + "printedName": "senderSide", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Date?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" } ], - "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", - "mangledName": "$s9ZTCoreKit5ZTApiC15getLogFilesList4dateSay10Foundation3URLVGSgAF4DateVSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resendSavedRequests", - "printedName": "resendSavedRequests()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", - "mangledName": "$s9ZTCoreKit5ZTApiC19resendSavedRequestsyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit5ZTApiC", - "mangledName": "$s9ZTCoreKit5ZTApiC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTCore", - "printedName": "ZTCore", - "children": [ - { - "kind": "Var", - "name": "version", - "printedName": "version", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C7versionSSvpZ", - "mangledName": "$s9ZTCoreKit0A0C7versionSSvpZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115116,48 +106136,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C7versionSSvgZ", - "mangledName": "$s9ZTCoreKit0A0C7versionSSvgZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV10senderSideAC0F0OSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "zcVersion", - "printedName": "zcVersion", + "name": "concernedSide", + "printedName": "concernedSide", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvp", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115166,97 +106193,55 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side?", + "children": [ + { + "kind": "TypeNominal", + "name": "Side", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Side", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV4SideO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvg", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13concernedSideAC0F0OSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvs", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9zcVersionSSvM", - "mangledName": "$s9ZTCoreKit0A0C9zcVersionSSvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "shared", - "printedName": "shared", + "name": "eventType", + "printedName": "eventType", "children": [ { "kind": "TypeNominal", - "name": "ZTCore", - "printedName": "ZTCoreKit.ZTCore", - "usr": "s:9ZTCoreKit0A0C" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C6sharedACvpZ", - "mangledName": "$s9ZTCoreKit0A0C6sharedACvpZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115265,49 +106250,55 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTCore", - "printedName": "ZTCoreKit.ZTCore", - "usr": "s:9ZTCoreKit0A0C" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C6sharedACvgZ", - "mangledName": "$s9ZTCoreKit0A0C6sharedACvgZ", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV9eventTypeAA0cd5EventF0OSgvg", "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "bleManager", - "printedName": "bleManager", + "name": "content", + "printedName": "content", "children": [ { "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", - "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115316,99 +106307,88 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTBleManager", - "printedName": "ZTCoreKit.ZTBleManager", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTBleManager" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", - "mangledName": "$s9ZTCoreKit0A0C10bleManagerAA05ZTBleD0Cvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7contentSays5UInt8VGvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "settings", - "printedName": "settings", + "kind": "Constructor", + "name": "init", + "printedName": "init(bytes:)", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", - "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "name": "ZTRealtimeMessage", + "printedName": "ZTCoreKit.ZTRealtimeMessage", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", - "mangledName": "$s9ZTCoreKit0A0C8settingsAA10ZTSettingsCvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sa" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5bytesACSays5UInt8VG_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { "kind": "Var", - "name": "appUserId", - "printedName": "appUserId", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], @@ -115421,61 +106401,54 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C9appUserIdSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C9appUserIdSSSgvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6statusAC6StatusVSgvg", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastCommand", - "printedName": "lastCommand", + "name": "acknowledgment", + "printedName": "acknowledgment", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115485,118 +106458,111 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14acknowledgmentAC14AcknowledgmentVSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "realtimeEvent", + "printedName": "realtimeEvent", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTCommand?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommand", - "printedName": "ZTCoreKit.ZTCommand", - "usr": "s:9ZTCoreKit9ZTCommandO" + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", - "mangledName": "$s9ZTCoreKit0A0C11lastCommandAA9ZTCommandOSgvM", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV13realtimeEventAC0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "lastCommandResponses", - "printedName": "lastCommandResponses", + "name": "realtimeMetrics", + "printedName": "realtimeMetrics", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvp", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -115605,269 +106571,321 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvg", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV15realtimeMetricsAC0F0VSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "TypeDecl", + "name": "Status", + "printedName": "Status", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "code", + "printedName": "code", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[ZTCoreKit.ZTCommandResponse]", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoStatus?", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandResponse", - "printedName": "ZTCoreKit.ZTCommandResponse", - "usr": "s:9ZTCoreKit17ZTCommandResponseC" + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" } ], - "usr": "s:Sa" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoStatus", + "printedName": "ZTCoreKit.ZTAlgoStatus", + "usr": "s:9ZTCoreKit12ZTAlgoStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4codeAA06ZTAlgoE0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", - "mangledName": "$s9ZTCoreKit0A0C20lastCommandResponsesSayAA17ZTCommandResponseCGvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "lastActivityId", - "printedName": "lastActivityId", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV9timestamps6UInt32VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "algoMode", + "printedName": "algoMode", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoMode?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C14lastActivityIdSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C14lastActivityIdSSSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "leftModuleCommandStatus", - "printedName": "leftModuleCommandStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", - "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoMode", + "printedName": "ZTCoreKit.ZTAlgoMode", + "usr": "s:9ZTCoreKit10ZTAlgoModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV8algoModeAA06ZTAlgoG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "precisionMode", + "printedName": "precisionMode", "children": [ { "kind": "TypeNominal", - "name": "ZTCommandStatus", - "printedName": "ZTCoreKit.ZTCommandStatus", - "usr": "s:9ZTCoreKit15ZTCommandStatusO" + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", - "mangledName": "$s9ZTCoreKit0A0C23leftModuleCommandStatusAA09ZTCommandF0Ovg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connectedDevice", - "printedName": "connectedDevice", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoPrecisionMode", + "printedName": "ZTCoreKit.ZTAlgoPrecisionMode", + "usr": "s:9ZTCoreKit19ZTAlgoPrecisionModeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV13precisionModeAA015ZTAlgoPrecisionG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", - "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "consecutiveSteps", + "printedName": "consecutiveSteps", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV16consecutiveStepss5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", - "mangledName": "$s9ZTCoreKit0A0C15connectedDeviceAA8ZTDeviceCSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastDeviceSerialNumber", - "printedName": "lastDeviceSerialNumber", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -115876,29 +106894,19 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -115907,91 +106915,181 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Status", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Status", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C22lastDeviceSerialNumberSSSgvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV6StatusV", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "lastDeviceQRCode", - "printedName": "lastDeviceQRCode", + "kind": "TypeDecl", + "name": "Acknowledgment", + "printedName": "Acknowledgment", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "command", + "printedName": "command", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV7commandAA13ZTAlgoCommandOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "status", + "printedName": "status", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C16lastDeviceQRCodeSSSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastQRCode", - "printedName": "lastQRCode", - "children": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoAcknowledgmentStatus", + "printedName": "ZTCoreKit.ZTAlgoAcknowledgmentStatus", + "usr": "s:9ZTCoreKit26ZTAlgoAcknowledgmentStatusO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV6statusAA06ZTAlgoE6StatusOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -116000,29 +107098,19 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvp", - "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -116031,916 +107119,702 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C10lastQRCodeSSSgvg", - "mangledName": "$s9ZTCoreKit0A0C10lastQRCodeSSSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDfuInProgress", - "printedName": "isDfuInProgress", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvp", - "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Acknowledgment", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Acknowledgment", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15isDfuInProgressSbvg", - "mangledName": "$s9ZTCoreKit0A0C15isDfuInProgressSbvg", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV14AcknowledgmentV", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "dfuDelegate", - "printedName": "dfuDelegate", + "kind": "TypeDecl", + "name": "Metrics", + "printedName": "Metrics", "children": [ { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "activityType", + "printedName": "activityType", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "printedName": "ZTCoreKit.ZTActivityType?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuDelegate", - "printedName": "any ZTCoreKit.ZTDfuDelegate", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityType", + "printedName": "ZTCoreKit.ZTActivityType", + "usr": "s:9ZTCoreKit14ZTActivityTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV12activityTypeAA010ZTActivityG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "metricId", + "printedName": "metricId", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any ZTCoreKit.ZTDfuDelegate)?", + "printedName": "Swift.UInt8?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuDelegate", - "printedName": "any ZTCoreKit.ZTDfuDelegate", - "usr": "s:9ZTCoreKit13ZTDfuDelegateP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UInt8?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV8metricIds5UInt8VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "metric", + "printedName": "metric", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", - "mangledName": "$s9ZTCoreKit0A0C11dfuDelegateAA05ZTDfuD0_pSgvM", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "firmwareDfuState", - "printedName": "firmwareDfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMetric?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMetric", + "printedName": "ZTCoreKit.ZTRealtimeMetric", + "usr": "s:9ZTCoreKit16ZTRealtimeMetricO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV6metricAA0C6MetricOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", - "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "SetterAccess", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.DFUState?", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", - "mangledName": "$s9ZTCoreKit0A0C16firmwareDfuStateAA8DFUStateOSgvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentDfuState", - "printedName": "currentDfuState", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.UInt8]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV5valueSays5UInt8VGSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0Ovs", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "set" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metrics", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Metrics", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", - "mangledName": "$s9ZTCoreKit0A0C15currentDfuStateAA23ZTMessageBootloaderInfoV0dE0OvM", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV4dataAE10Foundation4DataV_tcfc", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "onDfuStateUpdated", - "printedName": "onDfuStateUpdated", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } + "AccessControl", + "RawDocComment" ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "init_kind": "Designated" } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", - "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvp", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV7MetricsV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV7MetricsV", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "DfuState", - "printedName": "ZTCoreKit.ZTMessageBootloaderInfo.DfuState", - "usr": "s:9ZTCoreKit23ZTMessageBootloaderInfoV8DfuStateO" - } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", - "mangledName": "$s9ZTCoreKit0A0C17onDfuStateUpdatedAA8ZTSignalCyAA23ZTMessageBootloaderInfoV0dE0OGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" } ] }, { - "kind": "Var", - "name": "onDfuUploadProgress", - "printedName": "onDfuUploadProgress", + "kind": "TypeDecl", + "name": "Event", + "printedName": "Event", "children": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Float?", + "printedName": "Swift.UInt32?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", - "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.Float?", + "printedName": "Swift.UInt32?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", - "mangledName": "$s9ZTCoreKit0A0C19onDfuUploadProgressAA8ZTSignalCySfSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinishedLeft", - "printedName": "onDfuFinishedLeft", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9timestamps6UInt32VSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "eventType", + "printedName": "eventType", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9eventTypeAE0eG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C17onDfuFinishedLeftAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinishedRight", - "printedName": "onDfuFinishedRight", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "motionId", + "printedName": "motionId", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8motionIdAE06MotionG0OSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C18onDfuFinishedRightAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuFinished", - "printedName": "onDfuFinished", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Var", + "name": "intensity", + "printedName": "intensity", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", - "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", - "mangledName": "$s9ZTCoreKit0A0C13onDfuFinishedAA8ZTSignalCyAA7ZTErrorOSgGvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "onDfuCopied", - "printedName": "onDfuCopied", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9intensityAE15MotionIntensityOSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "usr": "s:9ZTCoreKit8ZTSignalC" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", - "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "arguments", + "printedName": "arguments", "children": [ { "kind": "TypeNominal", - "name": "ZTSignal", - "printedName": "ZTCoreKit.ZTSignal<()>", + "name": "Optional", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], - "usr": "s:9ZTCoreKit8ZTSignalC" + "usr": "s:Sq" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", - "mangledName": "$s9ZTCoreKit0A0C11onDfuCopiedAA8ZTSignalCyytGvg", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvp", "moduleName": "ZTCoreKit", - "implicit": true, "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setup", - "printedName": "setup(apiKey:secret:appId:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "(any Swift.Error)?", + "printedName": "[Swift.UInt8]?", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV9argumentsSays5UInt8VGSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", - "mangledName": "$s9ZTCoreKit0A0C5setup6apiKey6secret5appId10completionySS_S2Sys5Error_pSgcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearUser", - "printedName": "clearUser()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C9clearUseryyF", - "mangledName": "$s9ZTCoreKit0A0C9clearUseryyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateOrganization", - "printedName": "updateOrganization(code:appType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -116949,1352 +107823,1812 @@ "usr": "s:SS" } ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV11descriptionSSvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", - "mangledName": "$s9ZTCoreKit0A0C18updateOrganization4code7appTypeySSSg_AGtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(for:timeout:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", "children": [ { "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "name": "Event", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV4dataAE10Foundation4DataV_tcfc", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "EventType", + "printedName": "EventType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "motion", + "printedName": "motion", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } - ], - "usr": "s:Sq" + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO6motionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "transition", + "printedName": "transition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" } - ], - "usr": "s:Sq" + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO10transitionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "EventType", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.EventType", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgtF", - "moduleName": "ZTCoreKit", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(for:timeout:deviceDiscovered:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTProductType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTProductType", - "printedName": "ZTCoreKit.ZTProductType", - "usr": "s:9ZTCoreKit13ZTProductTypeO" - } + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV0E4TypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "MotionId", + "printedName": "MotionId", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "undefined", + "printedName": "undefined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO9undefinedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepForward", + "printedName": "stepForward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO11stepForwardyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepBackward", + "printedName": "stepBackward", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepBackwardyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSideLeft", + "printedName": "stepSideLeft", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO12stepSideLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepSideRight", + "printedName": "stepSideRight", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO13stepSideRightyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepUp", + "printedName": "stepUp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO6stepUpyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "stepDown", + "printedName": "stepDown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionId", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8stepDownyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId?", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionId", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionId", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan3for7timeout16deviceDiscovered10completionyAA13ZTProductTypeOSg_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyAQcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scan", - "printedName": "scan(macAddress:timeout:deviceDiscovered:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV8MotionIdO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", + "kind": "TypeDecl", + "name": "MotionIntensity", + "printedName": "MotionIntensity", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "undefined", + "printedName": "undefined", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(((any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO9undefinedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "((any Swift.Error)?) -> ()", + "kind": "Var", + "name": "low", + "printedName": "low", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", - "mangledName": "$s9ZTCoreKit0A0C4scan10macAddress7timeout16deviceDiscovered10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtcSgyANcSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopScan", - "printedName": "stopScan()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C8stopScanyyF", - "mangledName": "$s9ZTCoreKit0A0C8stopScanyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connectWithDevice", - "printedName": "connectWithDevice(_:timeout:isDfu:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO3lowyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Var", + "name": "medium", + "printedName": "medium", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C17connectWithDevice_7timeout5isDfu10completionyAA8ZTDeviceCSg_SdSgSbyAJ_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(withCode:timeout:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", - "mangledName": "$s9ZTCoreKit0A0C7connect8withCode7timeoutAA8ZTDeviceCSS_SdSgtYaKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connectWithCode", - "printedName": "connectWithCode(_:timeout:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO6mediumyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Var", + "name": "high", + "printedName": "high", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type) -> ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", "children": [ { "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" + } + ] } - ], - "usr": "s:Sq" + ] } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C15connectWithCode_7timeout10completionySS_SdSgyAA8ZTDeviceCSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceInfo", - "printedName": "getDeviceInfo(code:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO4highyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDeviceInfo?", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity?", "children": [ { "kind": "TypeNominal", - "name": "ZTDeviceInfo", - "printedName": "ZTCoreKit.ZTDeviceInfo", - "usr": "s:9ZTCoreKit12ZTDeviceInfoC" + "name": "MotionIntensity", + "printedName": "ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] - } - ] - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", - "mangledName": "$s9ZTCoreKit0A0C13getDeviceInfo4code10completionySS_yAA08ZTDeviceE0CSg_s5Error_pSgtctF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "tryReconnect", - "printedName": "tryReconnect(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", - "children": [ + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValueAGSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO8rawValues5UInt8Vvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "mangledName": "$s9ZTCoreKit0A0C12tryReconnect10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "checkConnectedDevice", - "printedName": "checkConnectedDevice(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV15MotionIntensityO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "enumRawTypeName": "UInt8", + "conformances": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> ()", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ZTCoreKit.ZTDevice?, (any Swift.Error)?)", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTDevice?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTDevice", - "printedName": "ZTCoreKit.ZTDevice", - "usr": "c:@M@ZTCoreKit@objc(cs)ZTDevice" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", - "mangledName": "$s9ZTCoreKit0A0C20checkConnectedDevice10completionyyAA8ZTDeviceCSg_s5Error_pSgtcSg_tF", + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV5EventV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV5EventV", "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:9ZTCoreKit17ZTRealtimeMessageV", + "mangledName": "$s9ZTCoreKit17ZTRealtimeMessageV", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "Function", - "name": "setDeepSleepMode", - "printedName": "setDeepSleepMode()", + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTDefaults", + "printedName": "ZTDefaults", + "declKind": "Class", + "usr": "s:9ZTCoreKit10ZTDefaultsC", + "mangledName": "$s9ZTCoreKit10ZTDefaultsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "ZTDefaultsKey", + "printedName": "ZTDefaultsKey", + "children": [ + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C16setDeepSleepModeyyKF", - "mangledName": "$s9ZTCoreKit0A0C16setDeepSleepModeyyKF", + "declKind": "Var", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvp", "moduleName": "ZTCoreKit", "declAttributes": [ "Final", - "AccessControl", - "RawDocComment" + "HasStorage", + "AccessControl" ], - "throwing": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC11stringValueSSvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "initiateBackgroundDFU", - "printedName": "initiateBackgroundDFU(isRestartRequired:isManualMode:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", - "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU17isRestartRequired0F10ManualModeySb_SbtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyCyACyxGSScfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC", + "mangledName": "$s9ZTCoreKit13ZTDefaultsKeyC", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "superclassUsr": "s:9ZTCoreKit10ZTDefaultsC", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTDefaults" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "ZTCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ZTTextCharacteristic", + "printedName": "ZTTextCharacteristic", + "children": [ { - "kind": "Function", - "name": "initiateBackgroundDFU", - "printedName": "initiateBackgroundDFU(path:isManualMode:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(service:characteristic:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTTextCharacteristic", + "printedName": "ZTCoreKit.ZTTextCharacteristic", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTService", + "printedName": "ZTCoreKit.ZTService", + "usr": "s:9ZTCoreKit9ZTServiceC" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "CBCharacteristic", + "printedName": "CoreBluetooth.CBCharacteristic", + "usr": "c:objc(cs)CBCharacteristic" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", - "mangledName": "$s9ZTCoreKit0A0C21initiateBackgroundDFU4path12isManualModeySS_SbtF", + "declKind": "Constructor", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", "moduleName": "ZTCoreKit", + "overriding": true, "declAttributes": [ - "Final", "AccessControl", + "Required", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "isFirmwareUpdateRequired", - "printedName": "isFirmwareUpdateRequired(firmwareRevision:completion:)", + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTFirmwareRevision", - "printedName": "ZTCoreKit.ZTFirmwareRevision", - "usr": "s:9ZTCoreKit18ZTFirmwareRevisionC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", - "mangledName": "$s9ZTCoreKit0A0C24isFirmwareUpdateRequired16firmwareRevision10completionyAA010ZTFirmwareH0C_ySb_AA7ZTErrorOSgtctF", + "declKind": "Var", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC11stringValueSSSgvg", + "moduleName": "ZTCoreKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit20ZTTextCharacteristicC", + "mangledName": "$s9ZTCoreKit20ZTTextCharacteristicC", + "moduleName": "ZTCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ZTCoreKit.ZTCharacteristic" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTActivityComment", + "printedName": "ZTActivityComment", + "children": [ { - "kind": "Function", - "name": "updateFirmware", - "printedName": "updateFirmware(packageType:isButtonless:)", + "kind": "Var", + "name": "id", + "printedName": "id", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTDfuPackageType?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ZTDfuPackageType", - "printedName": "ZTCoreKit.ZTDfuPackageType", - "usr": "s:9ZTCoreKit16ZTDfuPackageTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "hasDefaultArg": true, "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", - "mangledName": "$s9ZTCoreKit0A0C14updateFirmware11packageType12isButtonlessyAA012ZTDfuPackageF0OSg_SbtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateFirmware", - "printedName": "updateFirmware(path:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC2idSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC2idSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C14updateFirmware4pathySS_tF", - "mangledName": "$s9ZTCoreKit0A0C14updateFirmware4pathySS_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "dfuStateDidChange", - "printedName": "dfuStateDidChange(to:)", + "kind": "Var", + "name": "timeZone", + "printedName": "timeZone", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DFUState", - "printedName": "ZTCoreKit.DFUState", - "usr": "c:@M@ZTCoreKit@E@DFUState" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", - "mangledName": "$s9ZTCoreKit0A0C17dfuStateDidChange2toyAA8DFUStateO_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuStateDidChangeTo:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuError", - "printedName": "dfuError(_:didOccurWithMessage:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "DFUError", - "printedName": "ZTCoreKit.DFUError", - "usr": "c:@M@ZTCoreKit@E@DFUError" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC8timeZoneSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", - "mangledName": "$s9ZTCoreKit0A0C8dfuError_19didOccurWithMessageyAA8DFUErrorO_SStF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuError:didOccurWithMessage:", "declAttributes": [ - "Final", - "ObjC", + "HasInitialValue", + "HasStorage", "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dfuProgressDidChange", - "printedName": "dfuProgressDidChange(for:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9timestamp10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", - "mangledName": "$s9ZTCoreKit0A0C20dfuProgressDidChange3for5outOf2to26currentSpeedBytesPerSecond03avglmnO0ySi_S2iS2dtF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvp", "moduleName": "ZTCoreKit", - "objc_name": "dfuProgressDidChangeFor:outOf:to:currentSpeedBytesPerSecond:avgSpeedBytesPerSecond:", "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logWith", - "printedName": "logWith(_:message:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ZTCoreKit.LogLevel", - "usr": "c:@M@ZTCoreKit@E@LogLevel" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC4textSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC4textSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", - "mangledName": "$s9ZTCoreKit0A0C7logWith_7messageyAA8LogLevelO_SStF", - "moduleName": "ZTCoreKit", - "objc_name": "logWith:message:", - "declAttributes": [ - "Final", - "ObjC", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "checkDfuState", - "printedName": "checkDfuState()", + "kind": "Var", + "name": "activityId", + "printedName": "activityId", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C13checkDfuStateyyF", - "mangledName": "$s9ZTCoreKit0A0C13checkDfuStateyyF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isPendingEmbeddedActivity", - "printedName": "isPendingEmbeddedActivity(completion:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -118303,60 +109637,108 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, ZTCoreKit.ZTError?)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10activityIdSSSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", - "mangledName": "$s9ZTCoreKit0A0C25isPendingEmbeddedActivity10completionyySb_AA7ZTErrorOSgtc_tF", + "declKind": "Var", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "pushPendingEmbeddedActivities", - "printedName": "pushPendingEmbeddedActivities(completion:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ZTCoreKit.ZTError?) -> ()", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -118366,161 +109748,74 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "ZTCoreKit.ZTError?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "ZTError", - "printedName": "ZTCoreKit.ZTError", - "usr": "s:9ZTCoreKit7ZTErrorO" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9createdAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", - "mangledName": "$s9ZTCoreKit0A0C29pushPendingEmbeddedActivities10completionyyAA7ZTErrorOSgc_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit0A0C", - "mangledName": "$s9ZTCoreKit0A0C", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DFUServiceDelegate", - "printedName": "DFUServiceDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUServiceDelegate", - "mangledName": "$s9ZTCoreKit18DFUServiceDelegateP" - }, - { - "kind": "Conformance", - "name": "DFUProgressDelegate", - "printedName": "DFUProgressDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)DFUProgressDelegate", - "mangledName": "$s9ZTCoreKit19DFUProgressDelegateP" + ] }, - { - "kind": "Conformance", - "name": "LoggerDelegate", - "printedName": "LoggerDelegate", - "usr": "c:@M@ZTCoreKit@objc(pl)LoggerDelegate", - "mangledName": "$s9ZTCoreKit14LoggerDelegateP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "TypeDecl", - "name": "ZTControlPointDfuCharacteristic", - "printedName": "ZTControlPointDfuCharacteristic", - "children": [ { "kind": "Var", - "name": "uuid", - "printedName": "uuid", + "name": "updatedAt", + "printedName": "updatedAt", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvpZ", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvp", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -118530,52 +109825,113 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4uuidSSvgZ", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvg", "moduleName": "ZTCoreKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC9updatedAt10Foundation4DateVSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "mediaFiles", + "printedName": "mediaFiles", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "[ZTCoreKit.ZTMediaFile]?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvp", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvp", "moduleName": "ZTCoreKit", "declAttributes": [ "HasInitialValue", "HasStorage", - "SetterAccess", "AccessControl" ], "hasStorage": true, @@ -118588,56 +109944,123 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Data?", + "printedName": "[ZTCoreKit.ZTMediaFile]?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC4data10Foundation4DataVSgvg", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvg", "moduleName": "ZTCoreKit", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[ZTCoreKit.ZTMediaFile]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ZTCoreKit.ZTMediaFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMediaFile", + "printedName": "ZTCoreKit.ZTMediaFile", + "usr": "s:9ZTCoreKit11ZTMediaFileC" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvs", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC10mediaFilesSayAA11ZTMediaFileCGSgvM", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(service:characteristic:)", + "printedName": "init(map:)", "children": [ { "kind": "TypeNominal", - "name": "ZTControlPointDfuCharacteristic", - "printedName": "ZTCoreKit.ZTControlPointDfuCharacteristic", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC" - }, - { - "kind": "TypeNominal", - "name": "ZTService", - "printedName": "ZTCoreKit.ZTService", - "usr": "s:9ZTCoreKit9ZTServiceC" + "name": "Optional", + "printedName": "ZTCoreKit.ZTActivityComment?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTActivityComment", + "printedName": "ZTCoreKit.ZTActivityComment", + "usr": "s:9ZTCoreKit17ZTActivityCommentC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "CBCharacteristic", - "printedName": "CoreBluetooth.CBCharacteristic", - "usr": "c:objc(cs)CBCharacteristic" + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Constructor", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC7service14characteristicAcA9ZTServiceC_So16CBCharacteristicCtcfc", + "usr": "s:9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC3mapACSgAA5ZTMapC_tcfc", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", "Required", @@ -118647,90 +110070,55 @@ }, { "kind": "Function", - "name": "valueUpdated", - "printedName": "valueUpdated()", + "name": "mapping", + "printedName": "mapping(map:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTMap", + "printedName": "ZTCoreKit.ZTMap", + "usr": "s:9ZTCoreKit5ZTMapC" } ], "declKind": "Func", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC12valueUpdatedyyF", + "usr": "s:9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC7mapping3mapyAA5ZTMapC_tF", "moduleName": "ZTCoreKit", - "overriding": true, "declAttributes": [ "AccessControl", - "Override", "RawDocComment" ], "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "s:9ZTCoreKit31ZTControlPointDfuCharacteristicC", - "mangledName": "$s9ZTCoreKit31ZTControlPointDfuCharacteristicC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "superclassUsr": "s:9ZTCoreKit16ZTCharacteristicC", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ZTCoreKit.ZTCharacteristic" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTJSONParameterEncoder", - "printedName": "ZTJSONParameterEncoder", - "declKind": "Class", - "usr": "s:9ZTCoreKit22ZTJSONParameterEncoderC", - "mangledName": "$s9ZTCoreKit22ZTJSONParameterEncoderC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "ZTURLEncodedFormParameterEncoder", - "printedName": "ZTURLEncodedFormParameterEncoder", - "declKind": "Class", - "usr": "s:9ZTCoreKit32ZTURLEncodedFormParameterEncoderC", - "mangledName": "$s9ZTCoreKit32ZTURLEncodedFormParameterEncoderC", + "usr": "s:9ZTCoreKit17ZTActivityCommentC", + "mangledName": "$s9ZTCoreKit17ZTActivityCommentC", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" + "conformances": [ + { + "kind": "Conformance", + "name": "ZTMappable", + "printedName": "ZTMappable", + "usr": "s:9ZTCoreKit10ZTMappableP", + "mangledName": "$s9ZTCoreKit10ZTMappableP" + }, + { + "kind": "Conformance", + "name": "ZTBaseMappable", + "printedName": "ZTBaseMappable", + "usr": "s:9ZTCoreKit14ZTBaseMappableP", + "mangledName": "$s9ZTCoreKit14ZTBaseMappableP" + } ] }, { @@ -118745,8 +110133,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", "declKind": "Import", "moduleName": "ZTCoreKit", "declAttributes": [ @@ -118765,302 +110153,619 @@ }, { "kind": "TypeDecl", - "name": "ZTSettings", - "printedName": "ZTSettings", + "name": "ZTAlgoCommand", + "printedName": "ZTAlgoCommand", "children": [ { "kind": "Var", - "name": "shared", - "printedName": "shared", + "name": "getStatus", + "printedName": "getStatus", "children": [ { - "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvpZ", - "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvpZ", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO9getStatusyA2CmF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "startNewChunk", + "printedName": "startNewChunk", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO13startNewChunkyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "changeProductMode", + "printedName": "changeProductMode", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "ZTSettings", - "printedName": "ZTCoreKit.ZTSettings", - "usr": "s:9ZTCoreKit10ZTSettingsC" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC6sharedACvgZ", - "mangledName": "$s9ZTCoreKit10ZTSettingsC6sharedACvgZ", - "moduleName": "ZTCoreKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17changeProductModeyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "version", - "printedName": "version", + "name": "setPrecisionMode", + "printedName": "setPrecisionMode", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16setPrecisionModeyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setMinimumNumberOfStrides", + "printedName": "setMinimumNumberOfStrides", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO25setMinimumNumberOfStridesyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enableStreamingOfValues", + "printedName": "enableStreamingOfValues", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO23enableStreamingOfValuesyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setDisconnectionDelay", + "printedName": "setDisconnectionDelay", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21setDisconnectionDelayyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setUserInfo", + "printedName": "setUserInfo", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO11setUserInfoyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "setDailyTimestamp", + "printedName": "setDailyTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17setDailyTimestampyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "getPositionOfPods", + "printedName": "getPositionOfPods", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO17getPositionOfPodsyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "enableSpecificPacket", + "printedName": "enableSpecificPacket", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20enableSpecificPacketyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "holdRealtimeStreaming", + "printedName": "holdRealtimeStreaming", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC7versionSSSgvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC7versionSSSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO21holdRealtimeStreamingyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "getSingleTimeMetrics", + "printedName": "getSingleTimeMetrics", "children": [ { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovp", + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO20getSingleTimeMetricsyA2CmF", "moduleName": "ZTCoreKit", "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + }, + { + "kind": "Var", + "name": "calibrateGravity", + "printedName": "calibrateGravity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTAlgoCommand.Type) -> ZTCoreKit.ZTAlgoCommand", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" }, { "kind": "TypeNominal", - "name": "ZTLogLevel", - "printedName": "ZTCoreKit.ZTLogLevel", - "usr": "s:9ZTCoreKit10ZTLogLevelO" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTAlgoCommand.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0Ovs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO16calibrateGravityyA2CmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTAlgoCommand?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTAlgoCommand", + "printedName": "ZTCoreKit.ZTAlgoCommand", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC8logLevelAA05ZTLogE0OvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "environment", - "printedName": "environment", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvp", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -119069,289 +110774,356 @@ "children": [ { "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvg", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit13ZTAlgoCommandO", + "mangledName": "$s9ZTCoreKit13ZTAlgoCommandO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTEnvironment", - "printedName": "ZTCoreKit.ZTEnvironment", - "usr": "s:9ZTCoreKit13ZTEnvironmentO" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTRealtimeMessageEventType", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11environmentAA13ZTEnvironmentOvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO6statusyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "autoConnect", - "printedName": "autoConnect", + "name": "acknowledgment", + "printedName": "acknowledgment", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO14acknowledgmentyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "realTimeEvent", + "printedName": "realTimeEvent", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO08realTimeE0yA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "realTimeMetrics", + "printedName": "realTimeMetrics", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC11autoConnectSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC11autoConnectSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO15realTimeMetricsyA2CmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "enableEventLogging", - "printedName": "enableEventLogging", + "name": "warning", + "printedName": "warning", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO7warningyA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTRealtimeMessageEventType.Type) -> ZTCoreKit.ZTRealtimeMessageEventType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO5erroryA2CmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ZTRealtimeMessageEventType", + "printedName": "ZTCoreKit.ZTRealtimeMessageEventType", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO" } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableEventLoggingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ] + ], + "declKind": "Constructor", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValueACSgs5UInt8V_tcfc", + "moduleName": "ZTCoreKit", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "shouldObtaineMissedChunks", - "printedName": "shouldObtaineMissedChunks", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvp", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -119360,1759 +111132,2720 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvg", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO8rawValues5UInt8Vvg", "moduleName": "ZTCoreKit", "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit26ZTRealtimeMessageEventTypeO", + "mangledName": "$s9ZTCoreKit26ZTRealtimeMessageEventTypeO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25shouldObtaineMissedChunksSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ZTEnum", + "printedName": "ZTEnum", + "usr": "s:9ZTCoreKit6ZTEnumP", + "mangledName": "$s9ZTCoreKit6ZTEnumP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ZTError", + "printedName": "ZTError", + "children": [ { "kind": "Var", - "name": "enableRawDataCheck", - "printedName": "enableRawDataCheck", + "name": "scanning", + "printedName": "scanning", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.ScanningError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8scanningyA2C5EnumsC13ScanningErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "ble", + "printedName": "ble", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.BleError)", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO3bleyA2C5EnumsC8BleErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "network", + "printedName": "network", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.NetworkError)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC18enableRawDataCheckSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO7networkyA2C5EnumsC12NetworkErrorO_tcACmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "shouldAutoResendData", - "printedName": "shouldAutoResendData", + "name": "store", + "printedName": "store", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.StoreError)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5storeyA2C5EnumsC10StoreErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?, (any Swift.Error)?) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(errorDescription: Swift.String?, error: (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC20shouldAutoResendDataSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO6customyACSSSg_s5Error_pSgtcACmF", + "moduleName": "ZTCoreKit" }, { "kind": "Var", - "name": "activityDataSyncThreshold", - "printedName": "activityDataSyncThreshold", + "name": "decoding", + "printedName": "decoding", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.DecodableError)", + "children": [ + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8decodingyA2C5EnumsC14DecodableErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "activity", + "printedName": "activity", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.ActivityError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO8activityyA2C5EnumsC13ActivityErrorO_tcACmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Type) -> (ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError) -> ZTCoreKit.ZTError", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: ZTCoreKit.ZTError.Enums.DfuError)", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25activityDataSyncThresholdSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO3dfuyA2C5EnumsC8DfuErrorO_tcACmF", + "moduleName": "ZTCoreKit" }, { - "kind": "Var", - "name": "enableBackgroundDFU", - "printedName": "enableBackgroundDFU", + "kind": "TypeDecl", + "name": "Enums", + "printedName": "Enums", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "ScanningError", + "printedName": "ScanningError", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "cameraPermission", + "printedName": "cameraPermission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16cameraPermissionyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrongCode", + "printedName": "wrongCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9wrongCodeyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "notLinkedUser", + "printedName": "notLinkedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ScanningError.Type) -> ZTCoreKit.ZTError.Enums.ScanningError", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO13notLinkedUseryA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + }, + { + "kind": "TypeNominal", + "name": "ScanningError", + "printedName": "ZTCoreKit.ZTError.Enums.ScanningError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvg", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ScanningErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "BleError", + "printedName": "BleError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "invalidState", + "printedName": "invalidState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12invalidStateyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "resetting", + "printedName": "resetting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9resettingyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "poweredOff", + "printedName": "poweredOff", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO10poweredOffyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO7timeoutyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12unauthorizedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "notConnected", + "printedName": "notConnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO12notConnectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableBackgroundDFUSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableBackgroundDataStreaming", - "printedName": "enableBackgroundDataStreaming", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "notConnectedLeft", + "printedName": "notConnectedLeft", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16notConnectedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "activityIsRunning", + "printedName": "activityIsRunning", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO17activityIsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "busy", + "printedName": "busy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4busyyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "dfu", + "printedName": "dfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO3dfuyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC29enableBackgroundDataStreamingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityChunkStoreForFreeMemory", - "printedName": "activityChunkStoreForFreeMemory", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "commandError", + "printedName": "commandError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.BleError.Type) -> ZTCoreKit.ZTError.Enums.BleError", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.BleError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO07commandF0yA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + }, + { + "kind": "TypeNominal", + "name": "BleError", + "printedName": "ZTCoreKit.ZTError.Enums.BleError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC31activityChunkStoreForFreeMemorySivM", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8BleErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "activityChunkRetryLimit", - "printedName": "activityChunkRetryLimit", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC23activityChunkRetryLimitSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "checkFirmwareUpdatePeriod", - "printedName": "checkFirmwareUpdatePeriod", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "FirmwareError", + "printedName": "FirmwareError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "differentFirmware", + "printedName": "differentFirmware", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO09differentE0yA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "memsError", + "printedName": "memsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO04memsF0yA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC25checkFirmwareUpdatePeriodSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enableAnalyticsData", - "printedName": "enableAnalyticsData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "leftNoConnected", + "printedName": "leftNoConnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15leftNoConnectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "restartRequired", + "printedName": "restartRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO15restartRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "recoverFromDfu", + "printedName": "recoverFromDfu", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14recoverFromDfuyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "minimumFwVersion", + "printedName": "minimumFwVersion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16minimumFwVersionyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC19enableAnalyticsDataSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "autorestartBackgroundDfu", - "printedName": "autorestartBackgroundDfu", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "updateRequired", + "printedName": "updateRequired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO14updateRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "wrongProductType", + "printedName": "wrongProductType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16wrongProductTypeyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "firstChunkIdIsGreater", + "printedName": "firstChunkIdIsGreater", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO21firstChunkIdIsGreateryA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24autorestartBackgroundDfuSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "getChunksOnApplicationDidBecomeActive", - "printedName": "getChunksOnApplicationDidBecomeActive", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "startTimeZero", + "printedName": "startTimeZero", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.FirmwareError.Type) -> ZTCoreKit.ZTError.Enums.FirmwareError", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO13startTimeZeroyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + }, + { + "kind": "TypeNominal", + "name": "FirmwareError", + "printedName": "ZTCoreKit.ZTError.Enums.FirmwareError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC37getChunksOnApplicationDidBecomeActiveSbvM", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13FirmwareErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "enablePacketsDataLogging", - "printedName": "enablePacketsDataLogging", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC24enablePacketsDataLoggingSbvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cachedPacketsBatchUploadSize", - "printedName": "cachedPacketsBatchUploadSize", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivg", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "DfuError", + "printedName": "DfuError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "noLeftModule", + "printedName": "noLeftModule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12noLeftModuleyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivs", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Var", + "name": "noUpdate", + "printedName": "noUpdate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO8noUpdateyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC28cachedPacketsBatchUploadSizeSivM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chunkDuration", - "printedName": "chunkDuration", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ + "kind": "Var", + "name": "wrongFile", + "printedName": "wrongFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9wrongFileyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "Var", + "name": "noStart", + "printedName": "noStart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7noStartyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "aborted", + "printedName": "aborted", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvg", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO7abortedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Var", + "name": "abortedRight", + "printedName": "abortedRight", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvs", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", - "mangledName": "$s9ZTCoreKit10ZTSettingsC13chunkDurationSiSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "clear", - "printedName": "clear()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9ZTCoreKit10ZTSettingsC5clearyyF", - "mangledName": "$s9ZTCoreKit10ZTSettingsC5clearyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit10ZTSettingsC", - "mangledName": "$s9ZTCoreKit10ZTSettingsC", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "CoreBluetooth", - "printedName": "CoreBluetooth", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "ZTCoreKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ZTClosureEventMonitor", - "printedName": "ZTClosureEventMonitor", - "children": [ - { - "kind": "Var", - "name": "sessionDidBecomeInvalidWithError", - "printedName": "sessionDidBecomeInvalidWithError", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO12abortedRightyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "abortedLeft", + "printedName": "abortedLeft", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11abortedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "unsupported", + "printedName": "unsupported", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO11unsupportedyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "lowBattery", + "printedName": "lowBattery", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10lowBatteryyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "inProgress", + "printedName": "inProgress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO10inProgressyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "updateRequired", + "printedName": "updateRequired", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO14updateRequiredyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrongProductType", + "printedName": "wrongProductType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DfuError.Type) -> ZTCoreKit.ZTError.Enums.DfuError", + "children": [ + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16wrongProductTypeyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0K0_pSgtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidReceiveChallenge", - "printedName": "taskDidReceiveChallenge", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", - "children": [ + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + }, + { + "kind": "TypeNominal", + "name": "DfuError", + "printedName": "ZTCoreKit.ZTError.Enums.DfuError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { "kind": "TypeNominal", @@ -121121,2419 +113854,2080 @@ }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC8DfuErrorO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "StoreError", + "printedName": "StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", + "kind": "Var", + "name": "missing", + "printedName": "missing", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7missingyAGSScAGmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ())?", + "kind": "Var", + "name": "invalid", + "printedName": "invalid", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Any?) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Any?)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7invalidyAGSS_ypSgtcAGmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "wrong", + "printedName": "wrong", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> (Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ZTCoreKit.ZTError.Enums.StoreError", + "children": [ { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "URLAuthenticationChallenge", - "printedName": "Foundation.URLAuthenticationChallenge", - "usr": "c:objc(cs)NSURLAuthenticationChallenge" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0J4TaskCSo019NSURLAuthenticationI0CtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidSendBodyData", - "printedName": "taskDidSendBodyData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO5wrongyAGSScAGmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.StoreError.Type) -> ZTCoreKit.ZTError.Enums.StoreError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoreError", + "printedName": "ZTCoreKit.ZTError.Enums.StoreError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC10StoreErrorO", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeDecl", + "name": "ActivityError", + "printedName": "ActivityError", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "notStarted", + "printedName": "notStarted", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStartedyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "notStartedLeft", + "printedName": "notStartedLeft", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0K4TaskCs5Int64VA2JtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskNeedNewBodyStream", - "printedName": "taskNeedNewBodyStream", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO14notStartedLeftyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "kind": "Var", + "name": "notStopped", + "printedName": "notStopped", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO10notStoppedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "unknown", + "printedName": "unknown", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO7unknownyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "modeNotSetActivityIsRunning", + "printedName": "modeNotSetActivityIsRunning", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0K4TaskCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskWillPerformHTTPRedirection", - "printedName": "taskWillPerformHTTPRedirection", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO010modeNotSetE9IsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "kind": "Var", + "name": "previousNotStopped", + "printedName": "previousNotStopped", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO18previousNotStoppedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", + "kind": "Var", + "name": "previousRestoring", + "printedName": "previousRestoring", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO17previousRestoringyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ())?", + "kind": "Var", + "name": "noUserParametersSet", + "printedName": "noUserParametersSet", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0J4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidFinishCollectingMetrics", - "printedName": "taskDidFinishCollectingMetrics", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO19noUserParametersSetyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "kind": "Var", + "name": "rawDataFlowIsRunning", + "printedName": "rawDataFlowIsRunning", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO20rawDataFlowIsRunningyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", + "kind": "Var", + "name": "invalidMobilityScanResults", + "printedName": "invalidMobilityScanResults", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO26invalidMobilityScanResultsyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ())?", + "kind": "Var", + "name": "outsideActivityDetected", + "printedName": "outsideActivityDetected", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTaskMetrics", - "printedName": "Foundation.URLSessionTaskMetrics", - "usr": "c:objc(cs)NSURLSessionTaskMetrics" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0K4TaskCSo0klJ0CtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskDidComplete", - "printedName": "taskDidComplete", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO07outsideE8DetectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "kind": "Var", + "name": "anomalyDetected", + "printedName": "anomalyDetected", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } - ], - "usr": "s:Sq" + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO15anomalyDetectedyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "mobility", + "printedName": "mobility", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.ActivityError.Type) -> ZTCoreKit.ZTError.Enums.ActivityError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" } ] } ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO8mobilityyA2GmF", + "moduleName": "ZTCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + }, + { + "kind": "TypeNominal", + "name": "ActivityError", + "printedName": "ZTCoreKit.ZTError.Enums.ActivityError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvg", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC13ActivityErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeDecl", + "name": "NetworkError", + "printedName": "NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ())?", + "kind": "Var", + "name": "userLinkError", + "printedName": "userLinkError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0I4TaskCs5Error_pSgtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "taskIsWaitingForConnectivity", - "printedName": "taskIsWaitingForConnectivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08userLinkF0yA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "kind": "Var", + "name": "inaccessible", + "printedName": "inaccessible", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO12inaccessibleyA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "urlError", + "printedName": "urlError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URLError) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "URLError", + "printedName": "Foundation.URLError", + "usr": "s:10Foundation8URLErrorV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO03urlF0yAG10Foundation8URLErrorVcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionTask) -> ())?", + "kind": "Var", + "name": "generalError", + "printedName": "generalError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionTask)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "dataTaskDidReceiveData", - "printedName": "dataTaskDidReceiveData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO07generalF0yAGs0F0_pcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "kind": "Var", + "name": "noResponse", + "printedName": "noResponse", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO10noResponseyA2GmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", + "kind": "Var", + "name": "invalidResponseType", + "printedName": "invalidResponseType", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO19invalidResponseTypeyAGSo13NSURLResponseCcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ())?", + "kind": "Var", + "name": "noResponseData", + "printedName": "noResponseData", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.HTTPURLResponse) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "HTTPURLResponse", + "printedName": "Foundation.HTTPURLResponse", + "usr": "c:objc(cs)NSHTTPURLResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0kjG0C10Foundation0J0VtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "dataTaskWillCacheResponse", - "printedName": "dataTaskWillCacheResponse", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO14noResponseDatayAGSo17NSHTTPURLResponseCcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "kind": "Var", + "name": "endpointError", + "printedName": "endpointError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?) -> ZTCoreKit.ZTError.Enums.NetworkError", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.HTTPURLResponse, Foundation.Data?)", + "children": [ + { + "kind": "TypeNominal", + "name": "HTTPURLResponse", + "printedName": "Foundation.HTTPURLResponse", + "usr": "c:objc(cs)NSHTTPURLResponse" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ] + } + ] }, { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" + } + ] } ] } + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO08endpointF0yAGSo17NSHTTPURLResponseC_10Foundation4DataVSgtcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", + "kind": "Var", + "name": "custom", + "printedName": "custom", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.NetworkError.Type) -> (Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int?, Swift.String?) -> ZTCoreKit.ZTError.Enums.NetworkError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" }, { "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, + "name": "Tuple", + "printedName": "(errorCode: Swift.Int?, errorDescription: Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError.Type", + "children": [ { "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "NetworkError", + "printedName": "ZTCoreKit.ZTError.Enums.NetworkError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO6customyAGSiSg_SSSgtcAGmF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "RawDocComment" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ())?", + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDataTask", - "printedName": "Foundation.URLSessionDataTask", - "usr": "c:objc(cs)NSURLSessionDataTask" - }, - { - "kind": "TypeNominal", - "name": "CachedURLResponse", - "printedName": "Foundation.CachedURLResponse", - "usr": "c:objc(cs)NSCachedURLResponse" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvs", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC12NetworkErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "downloadTaskDidFinishDownloadingToURL", - "printedName": "downloadTaskDidFinishDownloadingToURL", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "TypeDecl", + "name": "DecodableError", + "printedName": "DecodableError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "kind": "Var", + "name": "invalidKeyPath", + "printedName": "invalidKeyPath", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ] } ] } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO14invalidKeyPathyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "Var", + "name": "emptyKeyPath", + "printedName": "emptyKeyPath", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO12emptyKeyPathyA2GmF", + "moduleName": "ZTCoreKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ())?", + "kind": "Var", + "name": "invalidJSON", + "printedName": "invalidJSON", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> ()", + "printedName": "(ZTCoreKit.ZTError.Enums.DecodableError.Type) -> ZTCoreKit.ZTError.Enums.DecodableError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL)", + "name": "Metatype", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError.Type", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" } ] } ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0m8DownloadG0C10Foundation0L0VtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "downloadTaskDidWriteData", - "printedName": "downloadTaskDidWriteData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", - "children": [ + "declKind": "EnumElement", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO11invalidJSONyA2GmF", + "moduleName": "ZTCoreKit" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + }, + { + "kind": "TypeNominal", + "name": "DecodableError", + "printedName": "ZTCoreKit.ZTError.Enums.DecodableError", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO2eeoiySbAG_AGtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivp", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO9hashValueSivg", + "moduleName": "ZTCoreKit", + "implicit": true, + "accessorKind": "get" } ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvp", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvg", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO4hash4intoys6HasherVz_tF", + "moduleName": "ZTCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ())?", + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64)", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO16errorDescriptionSSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvs", + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC14DecodableErrorO", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "conformances": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0k8DownloadG0Cs5Int64VA2JtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "Class", + "usr": "s:9ZTCoreKit7ZTErrorO5EnumsC", + "mangledName": "$s9ZTCoreKit7ZTErrorO5EnumsC", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + }, + { + "kind": "TypeNominal", + "name": "ZTError", + "printedName": "ZTCoreKit.ZTError", + "usr": "s:9ZTCoreKit7ZTErrorO" + } + ], + "declKind": "Func", + "usr": "s:9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s9ZTCoreKit7ZTErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "downloadTaskDidResumeAtOffset", - "printedName": "downloadTaskDidResumeAtOffset", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", + "printedName": "(any Swift.Error)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvp", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvp", + "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvp", "moduleName": "ZTCoreKit", - "isOpen": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -123543,208 +115937,30 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", + "printedName": "(any Swift.Error)?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvg", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvg", + "usr": "s:9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO5errors5Error_pSgvg", "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionDownloadTask", - "printedName": "Foundation.URLSessionDownloadTask", - "usr": "c:objc(cs)NSURLSessionDownloadTask" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvs", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvs", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvM", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0l8DownloadG0Cs5Int64VAJtcSgvM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "s:9ZTCoreKit21ZTClosureEventMonitorC", - "mangledName": "$s9ZTCoreKit21ZTClosureEventMonitorC", - "moduleName": "ZTCoreKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Function", - "name": "binary", - "printedName": "binary(with:toLength:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE6binary4with8toLengthS2S_SitF", - "mangledName": "$sSS9ZTCoreKitE6binary4with8toLengthS2S_SitF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "fromBase64", - "printedName": "fromBase64", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { "kind": "TypeNominal", @@ -123762,9 +115978,13 @@ } ], "declKind": "Var", - "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvp", - "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvp", + "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", + "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvp", "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "isFromExtension": true, "accessors": [ { @@ -123788,18 +116008,63 @@ } ], "declKind": "Accessor", - "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvg", - "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvg", + "usr": "s:9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", + "mangledName": "$s9ZTCoreKit7ZTErrorO16errorDescriptionSSSgvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:9ZTCoreKit7ZTErrorO", + "mangledName": "$s9ZTCoreKit7ZTErrorO", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ { "kind": "Var", - "name": "toBase64", - "printedName": "toBase64", + "name": "hex", + "printedName": "hex", "children": [ { "kind": "TypeNominal", @@ -123809,8 +116074,8 @@ } ], "declKind": "Var", - "usr": "s:SS9ZTCoreKitE8toBase64SSvp", - "mangledName": "$sSS9ZTCoreKitE8toBase64SSvp", + "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvp", + "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvp", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessors": [ @@ -123827,9 +116092,11 @@ } ], "declKind": "Accessor", - "usr": "s:SS9ZTCoreKitE8toBase64SSvg", - "mangledName": "$sSS9ZTCoreKitE8toBase64SSvg", + "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvg", + "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvg", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 == Swift.UInt8>", + "sugared_genericSig": "", "isFromExtension": true, "accessorKind": "get" } @@ -123837,250 +116104,328 @@ }, { "kind": "Function", - "name": "substring", - "printedName": "substring(from:to:)", + "name": "has", + "printedName": "has(peripheral:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CBPeripheral", + "printedName": "CoreBluetooth.CBPeripheral", + "usr": "c:objc(cs)CBPeripheral" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE9substring4from2toSSSi_SitF", - "mangledName": "$sSS9ZTCoreKitE9substring4from2toSSSi_SitF", + "usr": "s:Sa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", + "mangledName": "$sSa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "substring", - "printedName": "substring(range:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "_NSRange", - "printedName": "Foundation._NSRange", - "usr": "c:@S@_NSRange" - } + "genericSig": "<τ_0_0 where τ_0_0 : CoreBluetooth.CBPeripheral>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", - "mangledName": "$sSS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", - "moduleName": "ZTCoreKit", "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "matches", - "printedName": "matches(regex:)", + "name": "chunked", + "printedName": "chunked(into:)", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[[τ_0_0]]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE7matches5regexSaySSGSS_tF", - "mangledName": "$sSS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "usr": "s:Sa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", + "mangledName": "$sSa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "random", - "printedName": "random(length:)", + "name": "stringify", + "printedName": "stringify()", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE6random6lengthSSSi_tFZ", - "mangledName": "$sSS9ZTCoreKitE6random6lengthSSSi_tFZ", + "usr": "s:Sa9ZTCoreKitSSRszlE9stringifySSyF", + "mangledName": "$sSa9ZTCoreKitSSRszlE9stringifySSyF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 == Swift.String>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "split", - "printedName": "split(usingRegex:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONString:context:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", + "name": "Optional", + "printedName": "[τ_0_0]?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", - "mangledName": "$sSS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "serialNumber", - "printedName": "serialNumber()", - "children": [ + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE12serialNumberSSyF", - "mangledName": "$sSS9ZTCoreKitE12serialNumberSSyF", + "declKind": "Constructor", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "fileName", - "printedName": "fileName()", + "kind": "Constructor", + "name": "init", + "printedName": "init(JSONArray:context:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTMapContext)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTMapContext", + "printedName": "any ZTCoreKit.ZTMapContext", + "usr": "s:9ZTCoreKit12ZTMapContextP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "s:SS9ZTCoreKitE8fileNameSSyF", - "mangledName": "$sSS9ZTCoreKitE8fileNameSSyF", + "declKind": "Constructor", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "incrementedMacAddress", - "printedName": "incrementedMacAddress()", + "name": "toJSON", + "printedName": "toJSON()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE21incrementedMacAddressSSyF", - "mangledName": "$sSS9ZTCoreKitE21incrementedMacAddressSSyF", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "toJSONString", + "printedName": "toJSONString(prettyPrint:)", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Func", - "usr": "s:SS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", - "mangledName": "$sSS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", + "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", "moduleName": "ZTCoreKit", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", + "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", + "usr": "s:Sa", + "mangledName": "$sSa", "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ "EagerMove", "Frozen" @@ -124089,174 +116434,168 @@ "conformances": [ { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" }, { "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", + "name": "_ArrayProtocol", + "printedName": "_ArrayProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", + "name": "_Buffer", + "printedName": "_Buffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" } ] } ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" }, { "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", "children": [ { "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" } ] } ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + "usr": "s:Sk", + "mangledName": "$sSk" }, { "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", + "name": "MutableCollection", + "printedName": "MutableCollection", "children": [ { "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" }, { "kind": "Conformance", @@ -124270,9 +116609,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124283,9 +116621,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] }, @@ -124296,9 +116634,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] }, @@ -124309,17 +116654,17 @@ "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:SI" + "usr": "s:Sn" } ] } @@ -124339,9 +116684,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124352,9 +116696,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] }, @@ -124365,9 +116709,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" } ] }, @@ -124378,9 +116737,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] }, @@ -124391,17 +116757,17 @@ "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:SI" + "usr": "s:Sn" } ] } @@ -124421,9 +116787,8 @@ "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] }, @@ -124434,9 +116799,24 @@ "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" } ] } @@ -124446,158 +116826,477 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" }, { "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" } ] - }, + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" } ] - }, + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ { "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", "children": [ { "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" } ] - }, + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ { "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" } ] } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" }, { "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "name": "DataProtocol", + "printedName": "DataProtocol", "children": [ { "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", + "name": "Regions", + "printedName": "Regions", "children": [ { "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" } ] } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" }, { "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", + "name": "AlamofireExtended", + "printedName": "AlamofireExtended", "children": [ { "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "name": "ExtendedType", + "printedName": "ExtendedType", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" } ] } ], - "usr": "s:Sm", - "mangledName": "$sSm" + "usr": "s:9Alamofire0A8ExtendedP", + "mangledName": "$s9Alamofire0A8ExtendedP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBCentralManager", + "printedName": "CBCentralManager", + "children": [ + { + "kind": "Function", + "name": "retrievePeripheral", + "printedName": "retrievePeripheral(withIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" + "kind": "Function", + "name": "retrieveConnectedPeripherals", + "printedName": "retrieveConnectedPeripherals(withServices:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any ZTCoreKit.ZTCBPeripheralProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreBluetooth.CBUUID]", + "children": [ + { + "kind": "TypeNominal", + "name": "CBUUID", + "printedName": "CoreBluetooth.CBUUID", + "usr": "c:objc(cs)CBUUID" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Function", + "name": "connect", + "printedName": "connect(_:options:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelPeripheralConnection", + "printedName": "cancelPeripheralConnection(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTCBPeripheralProtocol", + "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ], + "declKind": "Func", + "usr": "s:So16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)CBCentralManager", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBCentralManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBManager", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBManager", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", @@ -124608,10 +117307,38 @@ }, { "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ZTCBCentralManagerProtocol", + "printedName": "ZTCBCentralManagerProtocol", + "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", + "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP" } ] }, @@ -124620,6 +117347,84 @@ "name": "Data", "printedName": "Data", "children": [ + { + "kind": "Var", + "name": "hexString", + "printedName": "hexString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvg", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "macAddress", @@ -125072,397 +117877,82 @@ } ], "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Mutating", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "append", - "printedName": "append(unsignedLong:bigEndian:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "Mutating", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "dataObject", - "printedName": "dataObject(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "subdata", - "printedName": "subdata(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeExpression, τ_0_0.Bound == Swift.Int>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "object", - "printedName": "object(at:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "crc32", - "printedName": "crc32(checksum:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE5crc328checksums6UInt32VAH_tF", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE5crc328checksums6UInt32VAH_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "compress", - "printedName": "compress(size:bufferSize:provider:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "typeAttributes": [ - "noescape" - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE8compress4size10bufferSize8provider8consumers6UInt32VSi_SiACSi_SitKXEyACKXEtKFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE8compress4size10bufferSize8provider8consumers6UInt32VSi_SiACSi_SitKXEyACKXEtKFZ", - "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decompress", - "printedName": "decompress(size:bufferSize:skipCRC32:provider:consumer:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int, Swift.Int) throws -> Foundation.Data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Int, Swift.Int)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "typeAttributes": [ - "noescape" - ] - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.Data) throws -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "typeAttributes": [ - "noescape" - ] - } - ], - "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE10decompress4size10bufferSize9skipCRC328provider8consumers6UInt32VSi_SiSbACSi_SitKXEyACKXEtKFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE10decompress4size10bufferSize9skipCRC328provider8consumers6UInt32VSi_SiSbACSi_SitKXEyACKXEtKFZ", + "usr": "s:10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append15unsignedInteger9bigEndianys6UInt32V_SbtF", "moduleName": "ZTCoreKit", - "static": true, "declAttributes": [ - "AccessControl", + "Mutating", "RawDocComment" ], "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "funcSelfKind": "Mutating" }, { - "kind": "Var", - "name": "hexString", - "printedName": "hexString", + "kind": "Function", + "name": "append", + "printedName": "append(unsignedLong:bigEndian:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvp", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvp", + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6append12unsignedLong9bigEndianys6UInt64V_SbtF", "moduleName": "ZTCoreKit", "declAttributes": [ + "Mutating", "RawDocComment" ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "dataObject", + "printedName": "dataObject(at:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10Foundation4DataV9ZTCoreKitE9hexStringSSvg", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE9hexStringSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } - ] + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE10dataObject2atxSi_tlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "+", - "printedName": "+(_:_:)", + "name": "subdata", + "printedName": "subdata(in:)", "children": [ { "kind": "TypeNominal", @@ -125472,25 +117962,42 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE7subdata2inACx_tSXRzSi5BoundRtzlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.RangeExpression, τ_0_0.Bound == Swift.Int>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "object", + "printedName": "object(at:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Func", - "usr": "s:10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", - "mangledName": "$s10Foundation4DataV9ZTCoreKitE1poiyA2C_ACtFZ", + "usr": "s:10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", + "mangledName": "$s10Foundation4DataV9ZTCoreKitE6object2atxSi_tlF", "moduleName": "ZTCoreKit", - "static": true, - "declAttributes": [ - "AccessControl" - ], + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "isFromExtension": true, "funcSelfKind": "NonMutating" } @@ -125782,936 +118289,27 @@ "kind": "TypeNominal", "name": "Int", "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvp", - "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvg", - "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Numeric>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:Sj", - "mangledName": "$sSj", - "moduleName": "Swift", - "genericSig": "<τ_0_0 : Swift.AdditiveArithmetic, τ_0_0 : Swift.ExpressibleByIntegerLiteral, τ_0_0.Magnitude : Swift.Comparable, τ_0_0.Magnitude : Swift.Numeric>", - "sugared_genericSig": "", - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UserDefaults", - "printedName": "UserDefaults", - "children": [ - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", @@ -126719,74 +118317,47 @@ "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Range", + "printedName": "Swift.Range", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sn" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", "children": [ { "kind": "TypeNominal", @@ -126795,106 +118366,166 @@ "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - }, + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt8", + "printedName": "UInt8", + "children": [ + { + "kind": "Var", + "name": "bits", + "printedName": "bits", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sa" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", + "declKind": "Var", + "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvp", + "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvp", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], "isFromExtension": true, "accessors": [ { @@ -126904,1258 +118535,1252 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvg", + "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvg", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "hexValue", + "printedName": "hexValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvp", + "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvg", + "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvg", "moduleName": "ZTCoreKit", "isFromExtension": true, - "accessorKind": "set" - }, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:s5UInt8V", + "mangledName": "$ss5UInt8V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Words", + "printedName": "Swift.UInt8.Words", + "usr": "s:s5UInt8V5WordsV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sz", + "mangledName": "$sSz" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } - ], - "usr": "s:Sq" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + ] } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Int8", + "printedName": "Swift.Int8", + "usr": "s:s4Int8V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD2Storage", + "printedName": "Swift.UInt8.SIMD2Storage", + "usr": "s:s5UInt8V12SIMD2StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD4Storage", + "printedName": "Swift.UInt8.SIMD4Storage", + "usr": "s:s5UInt8V12SIMD4StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" + "name": "SIMD8Storage", + "printedName": "Swift.UInt8.SIMD8Storage", + "usr": "s:s5UInt8V12SIMD8StorageV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" + "name": "SIMD16Storage", + "printedName": "Swift.UInt8.SIMD16Storage", + "usr": "s:s5UInt8V13SIMD16StorageV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD32Storage", + "printedName": "Swift.UInt8.SIMD32Storage", + "usr": "s:s5UInt8V13SIMD32StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, + "name": "SIMD64Storage", + "printedName": "Swift.UInt8.SIMD64Storage", + "usr": "s:s5UInt8V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "MyWSArrayType", + "printedName": "MyWSArrayType", + "usr": "s:10Starscream13MyWSArrayTypeP", + "mangledName": "$s10Starscream13MyWSArrayTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt16", + "printedName": "UInt16", + "children": [ + { + "kind": "Function", + "name": "toByteArray", + "printedName": "toByteArray(size:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "declKind": "Func", + "usr": "s:s6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "mangledName": "$ss6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:s6UInt16V", + "mangledName": "$ss6UInt16V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "Words", + "printedName": "Swift.UInt16.Words", + "usr": "s:s6UInt16V5WordsV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Foundation.URL]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Foundation.URL]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_StringElement", + "printedName": "_StringElement", + "usr": "s:s14_StringElementP", + "mangledName": "$ss14_StringElementP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Int16", + "printedName": "Swift.Int16", + "usr": "s:s5Int16V" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD2Storage", + "printedName": "Swift.UInt16.SIMD2Storage", + "usr": "s:s6UInt16V12SIMD2StorageV" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" - } - ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD4Storage", + "printedName": "Swift.UInt16.SIMD4Storage", + "usr": "s:s6UInt16V12SIMD4StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD8Storage", + "printedName": "Swift.UInt16.SIMD8Storage", + "usr": "s:s6UInt16V12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sq" - }, + "name": "SIMD16Storage", + "printedName": "Swift.UInt16.SIMD16Storage", + "usr": "s:s6UInt16V13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "SIMD32Storage", + "printedName": "Swift.UInt16.SIMD32Storage", + "usr": "s:s6UInt16V13SIMD32StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD64Storage", + "printedName": "Swift.UInt16.SIMD64Storage", + "usr": "s:s6UInt16V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ { "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", - "sugared_genericSig": "", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(_:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UInt32", + "printedName": "UInt32", + "children": [ + { + "kind": "Function", + "name": "toByteArray", + "printedName": "toByteArray(size:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Array", + "printedName": "[Swift.UInt8]", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], - "usr": "s:Sq" + "usr": "s:Sa" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" } ], - "declKind": "Subscript", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScip", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "declKind": "Func", + "usr": "s:s6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "mangledName": "$ss6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], "isFromExtension": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:s6UInt32V", + "mangledName": "$ss6UInt32V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "UnsignedInteger", + "printedName": "UnsignedInteger", + "usr": "s:SU", + "mangledName": "$sSU" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, + "name": "Words", + "printedName": "Swift.UInt32.Words", + "usr": "s:s6UInt32V5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScig", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScig", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SIMD2Storage", + "printedName": "Swift.UInt32.SIMD2Storage", + "usr": "s:s6UInt32V12SIMD2StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScis", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScis", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD4Storage", + "printedName": "Swift.UInt32.SIMD4Storage", + "usr": "s:s6UInt32V12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "SIMD8Storage", + "printedName": "Swift.UInt32.SIMD8Storage", + "usr": "s:s6UInt32V12SIMD8StorageV" } - ], - "declKind": "Accessor", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", - "moduleName": "ZTCoreKit", - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(forKey:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "τ_0_0?", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD16Storage", + "printedName": "Swift.UInt32.SIMD16Storage", + "usr": "s:s6UInt32V13SIMD16StorageV" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clear", - "printedName": "clear(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.UInt32.SIMD32Storage", + "usr": "s:s6UInt32V13SIMD32StorageV" + } + ] }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.UInt32.SIMD64Storage", + "usr": "s:s6UInt32V13SIMD64StorageV" + } + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyySSF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyySSF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Function", - "name": "clear", - "printedName": "clear(_:)", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ZTDefaultsKey", - "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "clearAll", - "printedName": "clearAll()", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] } ], - "declKind": "Func", - "usr": "s:So14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", - "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSUserDefaults", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSUserDefaults", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" } ] }, @@ -128584,191 +120209,279 @@ }, { "kind": "TypeDecl", - "name": "UInt8", - "printedName": "UInt8", - "children": [ + "name": "Float", + "printedName": "Float", + "declKind": "Struct", + "usr": "s:Sf", + "mangledName": "$sSf", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "bits", - "printedName": "bits", + "kind": "Conformance", + "name": "DataConvertible", + "printedName": "DataConvertible", + "usr": "s:9ZTCoreKit15DataConvertibleP", + "mangledName": "$s9ZTCoreKit15DataConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvp", - "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } - ], - "declKind": "Accessor", - "usr": "s:s5UInt8V9ZTCoreKitE4bitsSayABGvg", - "mangledName": "$ss5UInt8V9ZTCoreKitE4bitsSayABGvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { - "kind": "Var", - "name": "hexValue", - "printedName": "hexValue", + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvp", - "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ], - "declKind": "Accessor", - "usr": "s:s5UInt8V9ZTCoreKitE8hexValueSSvg", - "mangledName": "$ss5UInt8V9ZTCoreKitE8hexValueSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" + ] } - ] - } - ], - "declKind": "Struct", - "usr": "s:s5UInt8V", - "mangledName": "$ss5UInt8V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" }, { "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" }, { "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", + "name": "Numeric", + "printedName": "Numeric", "children": [ { "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt8.Words", - "usr": "s:s5UInt8V5WordsV" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ] } ], - "usr": "s:Sz", - "mangledName": "$sSz" + "usr": "s:Sj", + "mangledName": "$sSj" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", "children": [ { "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ] } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -128782,9 +120495,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ] } @@ -128794,40 +120507,211 @@ }, { "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Float.SIMD2Storage", + "usr": "s:Sf12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Float.SIMD4Storage", + "usr": "s:Sf12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Float.SIMD8Storage", + "usr": "s:Sf12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Float.SIMD16Storage", + "usr": "s:Sf13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Float.SIMD32Storage", + "usr": "s:Sf13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Float.SIMD64Storage", + "usr": "s:Sf13SIMD64StorageV" } ] } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Var", + "name": "milliseconds", + "printedName": "milliseconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvp", + "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvg", + "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { "kind": "Conformance", "name": "DataConvertible", @@ -128858,24 +120742,210 @@ }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_StringElement", - "printedName": "_StringElement", - "usr": "s:s14_StringElementP", - "mangledName": "$ss14_StringElementP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" }, { "kind": "Conformance", @@ -128905,6 +120975,35 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, { "kind": "Conformance", "name": "SIMDScalar", @@ -128917,9 +121016,9 @@ "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ] }, @@ -128931,8 +121030,8 @@ { "kind": "TypeNominal", "name": "SIMD2Storage", - "printedName": "Swift.UInt8.SIMD2Storage", - "usr": "s:s5UInt8V12SIMD2StorageV" + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" } ] }, @@ -128944,8 +121043,8 @@ { "kind": "TypeNominal", "name": "SIMD4Storage", - "printedName": "Swift.UInt8.SIMD4Storage", - "usr": "s:s5UInt8V12SIMD4StorageV" + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" } ] }, @@ -128957,8 +121056,8 @@ { "kind": "TypeNominal", "name": "SIMD8Storage", - "printedName": "Swift.UInt8.SIMD8Storage", - "usr": "s:s5UInt8V12SIMD8StorageV" + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" } ] }, @@ -128970,8 +121069,8 @@ { "kind": "TypeNominal", "name": "SIMD16Storage", - "printedName": "Swift.UInt8.SIMD16Storage", - "usr": "s:s5UInt8V13SIMD16StorageV" + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" } ] }, @@ -128983,8 +121082,8 @@ { "kind": "TypeNominal", "name": "SIMD32Storage", - "printedName": "Swift.UInt8.SIMD32Storage", - "usr": "s:s5UInt8V13SIMD32StorageV" + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" } ] }, @@ -128996,8 +121095,8 @@ { "kind": "TypeNominal", "name": "SIMD64Storage", - "printedName": "Swift.UInt8.SIMD64Storage", - "usr": "s:s5UInt8V13SIMD64StorageV" + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" } ] } @@ -129017,9 +121116,9 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ] } @@ -129053,27 +121152,61 @@ }, { "kind": "TypeDecl", - "name": "UInt16", - "printedName": "UInt16", + "name": "String", + "printedName": "String", "children": [ { "kind": "Function", - "name": "toByteArray", - "printedName": "toByteArray(size:)", + "name": "+", + "printedName": "+(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "mangledName": "$sSS9ZTCoreKitE1poiy10Foundation4DataVAE_SStFZ", + "moduleName": "ZTCoreKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "binary", + "printedName": "binary(with:toLength:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" }, { "kind": "TypeNominal", @@ -129084,159 +121217,323 @@ } ], "declKind": "Func", - "usr": "s:s6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "mangledName": "$ss6UInt16V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", + "usr": "s:SS9ZTCoreKitE6binary4with8toLengthS2S_SitF", + "mangledName": "$sSS9ZTCoreKitE6binary4with8toLengthS2S_SitF", "moduleName": "ZTCoreKit", "isFromExtension": true, "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:s6UInt16V", - "mangledName": "$ss6UInt16V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", + "kind": "Var", + "name": "fromBase64", + "printedName": "fromBase64", "children": [ { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt16.Words", - "usr": "s:s6UInt16V5WordsV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "declKind": "Var", + "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvp", + "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:SS9ZTCoreKitE10fromBase64SSSgvg", + "mangledName": "$sSS9ZTCoreKitE10fromBase64SSSgvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "kind": "Var", + "name": "toBase64", + "printedName": "toBase64", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS9ZTCoreKitE8toBase64SSvp", + "mangledName": "$sSS9ZTCoreKitE8toBase64SSvp", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:SS9ZTCoreKitE8toBase64SSvg", + "mangledName": "$sSS9ZTCoreKitE8toBase64SSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "substring", + "printedName": "substring(from:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE9substring4from2toSSSi_SitF", + "mangledName": "$sSS9ZTCoreKitE9substring4from2toSSSi_SitF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Function", + "name": "substring", + "printedName": "substring(range:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_NSRange", + "printedName": "Foundation._NSRange", + "usr": "c:@S@_NSRange" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", + "mangledName": "$sSS9ZTCoreKitE9substring5rangeSSSo8_NSRangeV_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "matches", + "printedName": "matches(regex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sx", - "mangledName": "$sSx" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "mangledName": "$sSS9ZTCoreKitE7matches5regexSaySSGSS_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "kind": "Function", + "name": "random", + "printedName": "random(length:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE6random6lengthSSSi_tFZ", + "mangledName": "$sSS9ZTCoreKitE6random6lengthSSSi_tFZ", + "moduleName": "ZTCoreKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "kind": "Function", + "name": "split", + "printedName": "split(usingRegex:)", "children": [ { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", + "mangledName": "$sSS9ZTCoreKitE5split10usingRegexSaySSGSS_tF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + "kind": "Function", + "name": "serialNumber", + "printedName": "serialNumber()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE12serialNumberSSyF", + "mangledName": "$sSS9ZTCoreKitE12serialNumberSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fileName", + "printedName": "fileName()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE8fileNameSSyF", + "mangledName": "$sSS9ZTCoreKitE8fileNameSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "incrementedMacAddress", + "printedName": "incrementedMacAddress()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS9ZTCoreKitE21incrementedMacAddressSSyF", + "mangledName": "$sSS9ZTCoreKitE21incrementedMacAddressSSyF", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ { "kind": "Conformance", "name": "DataConvertible", @@ -129258,6 +121555,20 @@ "usr": "s:SE", "mangledName": "$sSE" }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, { "kind": "Conformance", "name": "CustomReflectable", @@ -129274,17 +121585,17 @@ }, { "kind": "Conformance", - "name": "_StringElement", - "printedName": "_StringElement", - "usr": "s:s14_StringElementP", - "mangledName": "$ss14_StringElementP" + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" }, { "kind": "Conformance", @@ -129295,541 +121606,430 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" }, { "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", "children": [ { "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int16", - "printedName": "Swift.Int16", - "usr": "s:s5Int16V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.UInt16.SIMD2Storage", - "usr": "s:s6UInt16V12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.UInt16.SIMD4Storage", - "usr": "s:s6UInt16V12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt16.SIMD8Storage", - "usr": "s:s6UInt16V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt16.SIMD16Storage", - "usr": "s:s6UInt16V13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "name": "StringLiteralType", + "printedName": "StringLiteralType", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt16.SIMD32Storage", - "usr": "s:s6UInt16V13SIMD32StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] - }, + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ { "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt16.SIMD64Storage", - "usr": "s:s6UInt16V13SIMD64StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, { "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", "children": [ { "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", "children": [ { "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UInt32", - "printedName": "UInt32", - "children": [ - { - "kind": "Function", - "name": "toByteArray", - "printedName": "toByteArray(size:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } - ], - "usr": "s:Sa" + ] }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:s6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "mangledName": "$ss6UInt32V9ZTCoreKitE11toByteArray4sizeSays5UInt8VGSi_tF", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:s6UInt32V", - "mangledName": "$ss6UInt32V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "UnsignedInteger", - "printedName": "UnsignedInteger", - "usr": "s:SU", - "mangledName": "$sSU" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ { "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.UInt32.Words", - "usr": "s:s6UInt32V5WordsV" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + }, { "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" } ] } ], - "usr": "s:Sj", - "mangledName": "$sSj" + "usr": "s:SK", + "mangledName": "$sSK" }, { "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "name": "Collection", + "printedName": "Collection", "children": [ { "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + }, { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", + "name": "Sequence", + "printedName": "Sequence", "children": [ { "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } ] }, { "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.UInt32.SIMD2Storage", - "usr": "s:s6UInt32V12SIMD2StorageV" + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" } ] - }, + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ { "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "name": "UTF8View", + "printedName": "UTF8View", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.UInt32.SIMD4Storage", - "usr": "s:s6UInt32V12SIMD4StorageV" + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "name": "UTF16View", + "printedName": "UTF16View", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt32.SIMD8Storage", - "usr": "s:s6UInt32V12SIMD8StorageV" + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt32.SIMD16Storage", - "usr": "s:s6UInt32V13SIMD16StorageV" + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" } ] }, { "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt32.SIMD32Storage", - "usr": "s:s6UInt32V13SIMD32StorageV" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] - }, + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ { "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "name": "StringInterpolation", + "printedName": "StringInterpolation", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt32.SIMD64Storage", - "usr": "s:s6UInt32V13SIMD64StorageV" + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" } ] } ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" }, { "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } ] } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" }, { "kind": "Conformance", @@ -129843,9 +122043,9 @@ "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" } ] } @@ -129855,10 +122055,91 @@ }, { "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "URLConvertible", + "printedName": "URLConvertible", + "usr": "s:9Alamofire14URLConvertibleP", + "mangledName": "$s9Alamofire14URLConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBService", + "printedName": "CBService", + "declKind": "Class", + "usr": "c:objc(cs)CBService", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBService", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBAttribute", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBAttribute", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" } ] }, @@ -130169,976 +122450,170 @@ "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.UInt64.SIMD8Storage", - "usr": "s:s6UInt64V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.UInt64.SIMD16Storage", - "usr": "s:s6UInt64V13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.UInt64.SIMD32Storage", - "usr": "s:s6UInt64V13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.UInt64.SIMD64Storage", - "usr": "s:s6UInt64V13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "children": [ - { - "kind": "Var", - "name": "milliseconds", - "printedName": "milliseconds", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvp", - "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:Sd9ZTCoreKitE12millisecondss5Int64Vvg", - "mangledName": "$sSd9ZTCoreKitE12millisecondss5Int64Vvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "children": [ - { - "kind": "Var", - "name": "hex", - "printedName": "hex", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvp", - "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvp", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:Sa9ZTCoreKits5UInt8VRszlE3hexSSvg", - "mangledName": "$sSa9ZTCoreKits5UInt8VRszlE3hexSSvg", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == Swift.UInt8>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "has", - "printedName": "has(peripheral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CBPeripheral", - "printedName": "CoreBluetooth.CBPeripheral", - "usr": "c:objc(cs)CBPeripheral" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", - "mangledName": "$sSa9ZTCoreKitSo12CBPeripheralCRbzlE3has10peripheralSbAC_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : CoreBluetooth.CBPeripheral>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "chunked", - "printedName": "chunked(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[τ_0_0]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", - "mangledName": "$sSa9ZTCoreKitE7chunked4intoSaySayxGGSi_tF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stringify", - "printedName": "stringify()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitSSRszlE9stringifySSyF", - "mangledName": "$sSa9ZTCoreKitSSRszlE9stringifySSyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 == Swift.String>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONString:context:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_0_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" + "name": "SIMD8Storage", + "printedName": "Swift.UInt64.SIMD8Storage", + "usr": "s:s6UInt64V12SIMD8StorageV" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "SIMD16Storage", + "printedName": "Swift.UInt64.SIMD16Storage", + "usr": "s:s6UInt64V13SIMD16StorageV" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE10JSONString7contextSayxGSgSS_AA12ZTMapContext_pSgtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(JSONArray:context:)", - "children": [ + ] + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD32Storage", + "printedName": "Swift.UInt64.SIMD32Storage", + "usr": "s:s6UInt64V13SIMD32StorageV" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "SIMD64Storage", + "printedName": "Swift.UInt64.SIMD64Storage", + "usr": "s:s6UInt64V13SIMD64StorageV" } - ], - "usr": "s:Sa" - }, + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTMapContext)?", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "ZTMapContext", - "printedName": "any ZTCoreKit.ZTMapContext", - "usr": "s:9ZTCoreKit12ZTMapContextP" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Constructor", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE9JSONArray7contextSayxGSaySDySSypGG_AA12ZTMapContext_pSgtcfc", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "init_kind": "Designated" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "toJSON", - "printedName": "toJSON()", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Func", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE6toJSONSaySDySSypGGyF", - "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Dictionary", + "printedName": "Dictionary", + "children": [ { "kind": "Function", - "name": "toJSONString", - "printedName": "toJSONString(prettyPrint:)", + "name": "merge", + "printedName": "merge(dict:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ], - "usr": "s:Sq" + "usr": "s:SD" }, { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], "declKind": "Func", - "usr": "s:Sa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", - "mangledName": "$sSa9ZTCoreKitAA14ZTBaseMappableRzlE12toJSONString11prettyPrintSSSgSb_tF", + "usr": "s:SD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", + "mangledName": "$sSD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0 where τ_0_0 : ZTCoreKit.ZTBaseMappable>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", "isFromExtension": true, "funcSelfKind": "NonMutating" } ], "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", + "usr": "s:SD", + "mangledName": "$sSD", "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", + "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", "declAttributes": [ "EagerMove", "Frozen" ], "isExternal": true, "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, { "kind": "Conformance", "name": "Equatable", @@ -131148,37 +122623,22 @@ }, { "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", "children": [ { "kind": "TypeWitness", @@ -131187,73 +122647,44 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:s10ArraySliceV" + ] } ] }, { "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" } ] } ], - "usr": "s:Sk", - "mangledName": "$sSk" + "usr": "s:ST", + "mangledName": "$sST" }, { "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", + "name": "Collection", + "printedName": "Collection", "children": [ { "kind": "TypeWitness", @@ -131262,75 +122693,46 @@ "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Tuple", + "printedName": "(key: τ_0_0, value: τ_0_1)", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" } - ], - "usr": "s:s10ArraySliceV" + ] } ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ + }, { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Index", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", + "usr": "s:SD5IndexV" } ] }, { "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Iterator", + "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", + "usr": "s:SD8IteratorV" } ] }, @@ -131341,16 +122743,29 @@ "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", + "name": "Slice", + "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], - "usr": "s:s10ArraySliceV" + "usr": "s:s5SliceV" } ] }, @@ -131361,33 +122776,45 @@ "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Dictionary", + "printedName": "[τ_0_0 : τ_0_1]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_1" + } + ], + "usr": "s:SD" } ], - "usr": "s:Sn" + "usr": "s:SI" } ] } ], - "usr": "s:SK", - "mangledName": "$sSK" + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", "children": [ { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "Key", + "printedName": "Key", "children": [ { "kind": "TypeNominal", @@ -131398,195 +122825,524 @@ }, { "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "name": "Value", + "printedName": "Value", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "GenericTypeParam", + "printedName": "τ_0_1" } ] - }, + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" } ] - }, + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Date", + "printedName": "Date", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apiFormat", + "printedName": "apiFormat", + "children": [ { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logFormat", + "printedName": "logFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sl", - "mangledName": "$sSl" + "declKind": "Var", + "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DateV", + "mangledName": "$s10Foundation4DateV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", "children": [ { "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "name": "ReferenceType", + "printedName": "ReferenceType", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } ] - }, + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } ] } ], - "usr": "s:ST", - "mangledName": "$sST" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ] } ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" + "usr": "s:Sx", + "mangledName": "$sSx" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBCharacteristic", + "printedName": "CBCharacteristic", + "children": [ + { + "kind": "Function", + "name": "notifyValue", + "printedName": "notifyValue(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readValue", + "printedName": "readValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE9readValueyyF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE9readValueyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(_:writeType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CBCharacteristicWriteType", + "printedName": "CoreBluetooth.CBCharacteristicWriteType", + "usr": "c:@E@CBCharacteristicWriteType" + } + ], + "declKind": "Func", + "usr": "s:So16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", + "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)CBCharacteristic", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBCharacteristic", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBAttribute", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBAttribute", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", @@ -131601,6 +123357,38 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CBPeripheral", + "printedName": "CBPeripheral", + "declKind": "Class", + "usr": "c:objc(cs)CBPeripheral", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "5.0", + "objc_name": "CBPeripheral", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBPeer", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBPeer", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -131611,551 +123399,619 @@ }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "ZTCBPeripheralProtocol", + "printedName": "ZTCBPeripheralProtocol", + "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", + "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvp", + "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvp", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:Sj9ZTCoreKitE4data10Foundation4DataVvg", + "mangledName": "$sSj9ZTCoreKitE4data10Foundation4DataVvg", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Numeric>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, + ] + } + ], + "declKind": "Protocol", + "usr": "s:Sj", + "mangledName": "$sSj", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.AdditiveArithmetic, τ_0_0 : Swift.ExpressibleByIntegerLiteral, τ_0_0.Magnitude : Swift.Comparable, τ_0_0.Magnitude : Swift.Numeric>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UserDefaults", + "printedName": "UserDefaults", + "children": [ + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" } ], - "usr": "s:s15CollectionOfOneV" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ - { - "kind": "Function", - "name": "merge", - "printedName": "merge(dict:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:SD" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySfAC13ZTDefaultsKeyCySfGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" }, { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:SD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", - "mangledName": "$sSD9ZTCoreKitE5merge4dictSDyxq_GAD_tF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcip", "moduleName": "ZTCoreKit", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "EagerMove", - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySdAC13ZTDefaultsKeyCySdGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluip", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", "printedName": "τ_0_0" - }, + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ { "kind": "TypeNominal", "name": "GenericTypeParam", - "printedName": "τ_0_1" + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluig", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:s5SliceV" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluis", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ], - "usr": "s:SI" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcluiM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sl", - "mangledName": "$sSl" + ] }, { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" }, { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Date", - "printedName": "Date", - "children": [ - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvp", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -132169,77 +124025,158 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9timestamps5Int64Vvg", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySSSgAC13ZTDefaultsKeyCySSGciM", "moduleName": "ZTCoreKit", + "implicit": true, "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "apiFormat", - "printedName": "apiFormat", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvp", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9apiFormatSSvg", - "moduleName": "ZTCoreKit", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "logFormat", - "printedName": "logFormat", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Var", - "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvp", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvp", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" @@ -132253,2298 +124190,1366 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], "declKind": "Accessor", - "usr": "s:10Foundation4DateV9ZTCoreKitE9logFormatSSvg", - "mangledName": "$s10Foundation4DateV9ZTCoreKitE9logFormatSSvg", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcig", "moduleName": "ZTCoreKit", "isFromExtension": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DateV", - "mangledName": "$s10Foundation4DateV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + }, { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bundle", - "printedName": "Bundle", - "declKind": "Class", - "usr": "c:objc(cs)NSBundle", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSBundle", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBCharacteristic", - "printedName": "CBCharacteristic", - "children": [ - { - "kind": "Function", - "name": "notifyValue", - "printedName": "notifyValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE11notifyValueyySbF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "readValue", - "printedName": "readValue()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE9readValueyyF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE9readValueyyF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "write", - "printedName": "write(_:writeType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CBCharacteristicWriteType", - "printedName": "CoreBluetooth.CBCharacteristicWriteType", - "usr": "c:@E@CBCharacteristicWriteType" - } - ], - "declKind": "Func", - "usr": "s:So16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", - "mangledName": "$sSo16CBCharacteristicC9ZTCoreKitE5write_0D4TypeSb10Foundation4DataV_So0a5WriteE0VtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "DiscardableResult", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CBCharacteristic", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBCharacteristic", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBAttribute", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBAttribute", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "FileManager", - "printedName": "FileManager", - "children": [ - { - "kind": "Function", - "name": "zipItem", - "printedName": "zipItem(at:to:shouldKeepParent:compressionMethod:progress:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ZTCompressionMethod", - "printedName": "ZTCoreKit.ZTCompressionMethod", - "hasDefaultArg": true, - "usr": "s:9ZTCoreKit19ZTCompressionMethodO" + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Progress?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DataVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So13NSFileManagerC9ZTCoreKitE7zipItem2at2to16shouldKeepParent17compressionMethod8progressy10Foundation3URLV_ALSbAC013ZTCompressionM0OSo10NSProgressCSgtKF", - "mangledName": "$sSo13NSFileManagerC9ZTCoreKitE7zipItem2at2to16shouldKeepParent17compressionMethod8progressy10Foundation3URLV_ALSbAC013ZTCompressionM0OSo10NSProgressCSgtKF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "unzipItem", - "printedName": "unzipItem(at:to:skipCRC32:progress:preferredEncoding:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Foundation.Progress?", + "printedName": "Foundation.Date?", "children": [ { "kind": "TypeNominal", - "name": "Progress", - "printedName": "Foundation.Progress", - "usr": "c:objc(cs)NSProgress" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String.Encoding?", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "Encoding", - "printedName": "Swift.String.Encoding", - "usr": "s:SS10FoundationE8EncodingV" + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So13NSFileManagerC9ZTCoreKitE9unzipItem2at2to9skipCRC328progress17preferredEncodingy10Foundation3URLV_ALSbSo10NSProgressCSgSSAJE0M0VSgtKF", - "mangledName": "$sSo13NSFileManagerC9ZTCoreKitE9unzipItem2at2to9skipCRC328progress17preferredEncodingy10Foundation3URLV_ALSbSo10NSProgressCSgSSAJE0M0VSgtKF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSFileManager", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSFileManager", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URL", - "printedName": "URL", - "children": [ - { - "kind": "Function", - "name": "isContained", - "printedName": "isContained(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } + "AccessControl" ], - "declKind": "Func", - "usr": "s:10Foundation3URLV9ZTCoreKitE11isContained2inSbAC_tF", - "mangledName": "$s10Foundation3URLV9ZTCoreKitE11isContained2inSbAC_tF", - "moduleName": "ZTCoreKit", "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10Foundation3URLV", - "mangledName": "$s10Foundation3URLV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSURL", - "printedName": "Foundation.NSURL", - "usr": "c:objc(cs)NSURL" + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSURL", - "printedName": "Foundation.NSURL", - "usr": "c:objc(cs)NSURL" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByFileReferenceLiteral", - "printedName": "_ExpressibleByFileReferenceLiteral", - "usr": "s:s34_ExpressibleByFileReferenceLiteralP", - "mangledName": "$ss34_ExpressibleByFileReferenceLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBService", - "printedName": "CBService", - "declKind": "Class", - "usr": "c:objc(cs)CBService", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBService", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBAttribute", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBAttribute", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBCentralManager", - "printedName": "CBCentralManager", - "children": [ - { - "kind": "Function", - "name": "retrievePeripheral", - "printedName": "retrievePeripheral(withIdentifier:)", - "children": [ + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ZTCoreKit.ZTCBPeripheralProtocol)?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation4DateVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE18retrievePeripheral14withIdentifierAC22ZTCBPeripheralProtocol_pSg10Foundation4UUIDV_tF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "retrieveConnectedPeripherals", - "printedName": "retrieveConnectedPeripherals(withServices:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[any ZTCoreKit.ZTCBPeripheralProtocol]", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:Sa" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreBluetooth.CBUUID]", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", "children": [ { "kind": "TypeNominal", - "name": "CBUUID", - "printedName": "CoreBluetooth.CBUUID", - "usr": "c:objc(cs)CBUUID" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:Sa" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE28retrieveConnectedPeripherals12withServicesSayAC22ZTCBPeripheralProtocol_pGSaySo6CBUUIDCG_tF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "connect", - "printedName": "connect(_:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "usr": "s:SD" + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" + } + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEy10Foundation3URLVSgAC13ZTDefaultsKeyCyAFGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE7connect_7optionsyAC22ZTCBPeripheralProtocol_p_SDySSypGSgtF", - "moduleName": "ZTCoreKit", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "cancelPeripheralConnection", - "printedName": "cancelPeripheralConnection(_:)", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "ZTCBPeripheralProtocol", - "printedName": "any ZTCoreKit.ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "declKind": "Func", - "usr": "s:So16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", - "mangledName": "$sSo16CBCentralManagerC9ZTCoreKitE26cancelPeripheralConnectionyyAC22ZTCBPeripheralProtocol_pF", + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", "moduleName": "ZTCoreKit", "declAttributes": [ "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CBCentralManager", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBCentralManager", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBManager", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBManager", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "ZTCBCentralManagerProtocol", - "printedName": "ZTCBCentralManagerProtocol", - "usr": "s:9ZTCoreKit26ZTCBCentralManagerProtocolP", - "mangledName": "$s9ZTCoreKit26ZTCBCentralManagerProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CBPeripheral", - "printedName": "CBPeripheral", - "declKind": "Class", - "usr": "c:objc(cs)CBPeripheral", - "moduleName": "CoreBluetooth", - "isOpen": true, - "intro_iOS": "5.0", - "objc_name": "CBPeripheral", - "declAttributes": [ - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)CBPeer", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "CoreBluetooth.CBPeer", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "ZTCBPeripheralProtocol", - "printedName": "ZTCBPeripheralProtocol", - "usr": "s:9ZTCoreKit22ZTCBPeripheralProtocolP", - "mangledName": "$s9ZTCoreKit22ZTCBPeripheralProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URLRequest", - "printedName": "URLRequest", - "declKind": "Struct", - "usr": "s:10Foundation10URLRequestV", - "mangledName": "$s10Foundation10URLRequestV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ + "accessors": [ { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSURLRequest", - "printedName": "Foundation.NSURLRequest", - "usr": "c:objc(cs)NSURLRequest" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "NSURLRequest", - "printedName": "Foundation.NSURLRequest", - "usr": "c:objc(cs)NSURLRequest" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecTrust", - "printedName": "SecTrust", - "declKind": "Class", - "usr": "c:@T@SecTrustRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecPolicy", - "printedName": "SecPolicy", - "declKind": "Class", - "usr": "c:@T@SecPolicyRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecCertificate", - "printedName": "SecCertificate", - "declKind": "Class", - "usr": "c:@T@SecCertificateRef", - "moduleName": "Security", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "Dynamic" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_CFObject", - "printedName": "_CFObject", - "usr": "s:14CoreFoundation9_CFObjectP", - "mangledName": "$s14CoreFoundation9_CFObjectP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Int32", - "printedName": "Int32", - "declKind": "Struct", - "usr": "s:s5Int32V", - "mangledName": "$ss5Int32V", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int32.Words", - "usr": "s:s5Int32V5WordsV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySay10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sj", - "mangledName": "$sSj" + ] }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + ], + "usr": "s:Sq" + }, { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int32.SIMD2Storage", - "usr": "s:s5Int32V12SIMD2StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int32.SIMD4Storage", - "usr": "s:s5Int32V12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int32.SIMD8Storage", - "usr": "s:s5Int32V12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ + "name": "Optional", + "printedName": "[Swift.String : Foundation.URL]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int32.SIMD16Storage", - "usr": "s:s5Int32V13SIMD16StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGcis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int32.SIMD32Storage", - "usr": "s:s5Int32V13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int32.SIMD64Storage", - "usr": "s:s5Int32V13SIMD64StorageV" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEySDySS10Foundation3URLVGSgAC13ZTDefaultsKeyCyAGGciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "usr": "s:Sq" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SecTrustResultType", - "printedName": "SecTrustResultType", - "declKind": "Enum", - "usr": "c:@E@SecTrustResultType", - "moduleName": "Security", - "objc_name": "SecTrustResultType", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "Dynamic" - ], - "enumRawTypeName": "UInt32", - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluip", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "DataConvertible", - "printedName": "DataConvertible", - "usr": "s:9ZTCoreKit15DataConvertibleP", - "mangledName": "$s9ZTCoreKit15DataConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluig", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ + "name": "Optional", + "printedName": "τ_0_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluis", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyxSgAC13ZTDefaultsKeyCyxGcSeRzSERzluiM", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + ] }, { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "ProtocolComposition", + "printedName": "Any" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Subscript", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScip", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScig", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScig", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSScis", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSScis", + "moduleName": "ZTCoreKit", + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitEyypSgSSciM", + "moduleName": "ZTCoreKit", + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Function", + "name": "value", + "printedName": "value(forKey:)", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0?", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5value6forKeyxSgSS_tlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyySSF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyySSF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ZTDefaultsKey", + "printedName": "ZTCoreKit.ZTDefaultsKey<τ_0_0>", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } - ] + ], + "usr": "s:9ZTCoreKit13ZTDefaultsKeyC" } ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE5clearyyAC13ZTDefaultsKeyCyxGlF", + "moduleName": "ZTCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAll", + "printedName": "clearAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", + "mangledName": "$sSo14NSUserDefaultsC9ZTCoreKitE8clearAllyyF", + "moduleName": "ZTCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } - ] - }, - { - "kind": "TypeDecl", - "name": "URLSessionConfiguration", - "printedName": "URLSessionConfiguration", + ], "declKind": "Class", - "usr": "c:objc(cs)NSURLSessionConfiguration", + "usr": "c:objc(cs)NSUserDefaults", "moduleName": "Foundation", "isOpen": true, - "intro_iOS": "7.0", - "objc_name": "NSURLSessionConfiguration", + "objc_name": "NSUserDefaults", "declAttributes": [ - "Available", "ObjC", - "SynthesizedProtocol", "NonSendable", - "Sendable", "Dynamic" ], "superclassUsr": "c:objc(cs)NSObject", @@ -134554,13 +125559,6 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, { "kind": "Conformance", "name": "Equatable", @@ -134612,110 +125610,6 @@ } ] }, - { - "kind": "TypeDecl", - "name": "JSONDecoder", - "printedName": "JSONDecoder", - "declKind": "Class", - "usr": "s:10Foundation11JSONDecoderC", - "mangledName": "$s10Foundation11JSONDecoderC", - "moduleName": "Foundation", - "isOpen": true, - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "TopLevelDecoder", - "printedName": "TopLevelDecoder", - "children": [ - { - "kind": "TypeWitness", - "name": "Input", - "printedName": "Input", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:7Combine15TopLevelDecoderP", - "mangledName": "$s7Combine15TopLevelDecoderP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "PropertyListDecoder", - "printedName": "PropertyListDecoder", - "declKind": "Class", - "usr": "s:10Foundation19PropertyListDecoderC", - "mangledName": "$s10Foundation19PropertyListDecoderC", - "moduleName": "Foundation", - "isOpen": true, - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "TopLevelDecoder", - "printedName": "TopLevelDecoder", - "children": [ - { - "kind": "TypeWitness", - "name": "Input", - "printedName": "Input", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:7Combine15TopLevelDecoderP", - "mangledName": "$s7Combine15TopLevelDecoderP" - } - ] - }, { "kind": "TypeDecl", "name": "DateFormatter", @@ -134834,6 +125728,87 @@ } ] }, + { + "kind": "TypeDecl", + "name": "CBPeripheralManager", + "printedName": "CBPeripheralManager", + "declKind": "Class", + "usr": "c:objc(cs)CBPeripheralManager", + "moduleName": "CoreBluetooth", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "CBPeripheralManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CBManager", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "CoreBluetooth.CBManager", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ZTCBPeripheralManagerProtocol", + "printedName": "ZTCBPeripheralManagerProtocol", + "usr": "s:9ZTCoreKit29ZTCBPeripheralManagerProtocolP", + "mangledName": "$s9ZTCoreKit29ZTCBPeripheralManagerProtocolP" + } + ] + }, { "kind": "TypeDecl", "name": "Set", @@ -135227,170 +126202,34 @@ { "kind": "TypeWitness", "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices>", - "children": [ - { - "kind": "TypeNominal", - "name": "Set", - "printedName": "Swift.Set<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sh" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "SetAlgebra", - "printedName": "SetAlgebra", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "usr": "s:s10SetAlgebraP", - "mangledName": "$ss10SetAlgebraP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSSet", - "printedName": "Foundation.NSSet", - "usr": "c:objc(cs)NSSet" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "URLComponents", - "printedName": "URLComponents", - "declKind": "Struct", - "usr": "s:10Foundation13URLComponentsV", - "mangledName": "$s10Foundation13URLComponentsV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "NSURLComponents", - "printedName": "Foundation.NSURLComponents", - "usr": "c:objc(cs)NSURLComponents" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:SI" } ] } ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" + "usr": "s:Sl", + "mangledName": "$sSl" }, { "kind": "Conformance", @@ -135401,14129 +126240,12029 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "name": "SetAlgebra", + "printedName": "SetAlgebra", "children": [ { "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "NSURLComponents", - "printedName": "Foundation.NSURLComponents", - "usr": "c:objc(cs)NSURLComponents" + "name": "GenericTypeParam", + "printedName": "τ_0_0" } ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 217, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 248, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", - "kind": "IntegerLiteral", - "offset": 279, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1668, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1896, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2172, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1574, - "length": 9, - "value": "\"CONNECT\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1666, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1751, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 6, - "value": "\"HEAD\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 1926, - "length": 9, - "value": "\"OPTIONS\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2016, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2102, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2185, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPMethod.swift", - "kind": "StringLiteral", - "offset": 2271, - "length": 7, - "value": "\"TRACE\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "Array", - "offset": 19884, - "length": 23, - "value": "[\"json\", \"xml\", \"text\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "IntegerLiteral", - "offset": 19956, - "length": 7, - "value": "100000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTResponse.swift", - "kind": "IntegerLiteral", - "offset": 20520, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/DFU\/LegacyDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2054, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "IntegerLiteral", - "offset": 448, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 2614, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 3753, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 4348, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 5101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "BooleanLiteral", - "offset": 5469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", - "kind": "IntegerLiteral", - "offset": 5691, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1367, - "length": 7, - "value": "[\"en0\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1402, - "length": 21, - "value": "[\"en2\", \"en3\", \"en4\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", - "kind": "Array", - "offset": 1454, - "length": 44, - "value": "[\"pdp_ip0\", \"pdp_ip1\", \"pdp_ip2\", \"pdp_ip3\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTAES.swift", - "kind": "StringLiteral", - "offset": 1885, - "length": 18, - "value": "\"1234567890123456\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTAES.swift", - "kind": "StringLiteral", - "offset": 1917, - "length": 18, - "value": "\"abcdefghijklmnop\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "IntegerLiteral", - "offset": 1540, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "IntegerLiteral", - "offset": 1691, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 1821, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "Array", - "offset": 3280, - "length": 745, - "value": "[408, 500, 502, 503, 504]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRetryPolicy.swift", - "kind": "StringLiteral", - "offset": 18242, - "length": 27, - "value": "\"ZTCoreKit.ZTConnectionLostRetryPolicy\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", - "kind": "IntegerLiteral", - "offset": 2197, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDfuPeripheralSelector.swift", - "kind": "StringLiteral", - "offset": 402, - "length": 23, - "value": "\"ZTCoreKit.ZTDfuPeripheralSelector\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2021, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2060, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 4, - "value": "0x18" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2138, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2177, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2216, - "length": 4, - "value": "0x80" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2255, - "length": 4, - "value": "0xE0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2294, - "length": 4, - "value": "0xE1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 4, - "value": "0xE2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 249, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 1355, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 1410, - "length": 34, - "value": "\"abcdefghjklmnpqrstuvwxyz12345789\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "StringLiteral", - "offset": 1530, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 1564, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 2839, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 3376, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 3708, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 4040, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", - "kind": "IntegerLiteral", - "offset": 7153, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "BooleanLiteral", - "offset": 279, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2314, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "IntegerLiteral", - "offset": 2333, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 4, - "value": "\"4C\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 4, - "value": "\"52\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2414, - "length": 4, - "value": "\"4C\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 4, - "value": "\"52\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 649, - "length": 5, - "value": "0o644" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 704, - "length": 5, - "value": "0o755" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 830, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 861, - "length": 5, - "value": "66000" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 910, - "length": 10, - "value": "0x06054b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 958, - "length": 10, - "value": "0x04034b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 1005, - "length": 10, - "value": "0x08074b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 1054, - "length": 10, - "value": "0x02014b50" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "StringLiteral", - "offset": 1087, - "length": 8, - "value": "\"memory\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4140, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4250, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive.swift", - "kind": "IntegerLiteral", - "offset": 4747, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/String+Operator.swift", - "kind": "StringLiteral", - "offset": 253, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/String+Operator.swift", - "kind": "StringLiteral", - "offset": 756, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "IntegerLiteral", - "offset": 410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 570, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 1352, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", - "kind": "BooleanLiteral", - "offset": 6966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageTime.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+MemoryFile.swift", - "kind": "IntegerLiteral", - "offset": 2786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 285, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 316, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 453, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 523, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 593, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 764, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 795, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 4, - "value": "0x03" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2892, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2922, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", - "kind": "IntegerLiteral", - "offset": 10257, - "length": 1, - "value": "0" - }, + } + ], + "usr": "s:s10SetAlgebraP", + "mangledName": "$ss10SetAlgebraP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSSet", + "printedName": "Foundation.NSSet", + "usr": "c:objc(cs)NSSet" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTMediaFileTemplate.swift", "kind": "StringLiteral", - "offset": 1633, - "length": 16, - "value": "\"ZTCoreKit.SecureDFUService\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", - "kind": "FloatLiteral", - "offset": 374, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", - "kind": "FloatLiteral", - "offset": 543, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1803, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1840, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", - "kind": "IntegerLiteral", - "offset": 2064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCharacteristic.swift", - "kind": "BooleanLiteral", - "offset": 935, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTParameterEncoding.swift", - "kind": "Array", - "offset": 10302, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Array", - "offset": 4527, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Dictionary", - "offset": 4645, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 7635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "Array", - "offset": 7970, + "offset": 310, "length": 2, - "value": "[]" + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", "kind": "StringLiteral", - "offset": 12435, - "length": 33, - "value": "\"org.alamofire.session.rootQueue\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 12508, - "length": 4, - "value": "true" + "offset": 223, + "length": 20, + "value": "\"arrayParametersKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", "kind": "Array", - "offset": 12843, + "offset": 835, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 23751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 25980, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 27688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSession.swift", - "kind": "BooleanLiteral", - "offset": 63072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 9, - "value": "\"Upgrade\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 11, - "value": "\"websocket\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1176, - "length": 6, - "value": "\"Host\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1219, - "length": 12, - "value": "\"Connection\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1268, - "length": 9, - "value": "\"Upgrade\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1314, - "length": 24, - "value": "\"Sec-WebSocket-Protocol\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1375, - "length": 23, - "value": "\"Sec-WebSocket-Version\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1435, - "length": 4, - "value": "\"13\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1476, - "length": 26, - "value": "\"Sec-WebSocket-Extensions\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1539, - "length": 19, - "value": "\"Sec-WebSocket-Key\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1595, - "length": 8, - "value": "\"Origin\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "StringLiteral", - "offset": 1640, - "length": 22, - "value": "\"Sec-WebSocket-Accept\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "IntegerLiteral", - "offset": 1699, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTHTTPHandler.swift", - "kind": "Array", - "offset": 1739, - "length": 16, - "value": "[\"wss\", \"https\"]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2069, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2069, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTSessionDelegate.swift", - "kind": "StringLiteral", - "offset": 137, - "length": 17, - "value": "\"ZTCoreKit.ZTSessionDelegate\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTOperationQueue+Alamofire.swift", - "kind": "BooleanLiteral", - "offset": 2215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2744, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "BooleanLiteral", - "offset": 2774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "IntegerLiteral", - "offset": 3297, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", - "kind": "StringLiteral", - "offset": 1633, - "length": 16, - "value": "\"ZTCoreKit.LegacyDFUService\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 531, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 553, - "length": 4, - "value": "0x4C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 4, - "value": "0x52" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", - "kind": "IntegerLiteral", - "offset": 597, - "length": 4, - "value": "0x9E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", - "kind": "IntegerLiteral", - "offset": 334, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2061, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2141, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2223, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2393, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2061, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2141, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2223, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2393, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", - "kind": "StringLiteral", - "offset": 3227, - "length": 11, - "value": "\"ZTCoreKit.DFUFirmware\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/Utilities\/URL+PlistHandler.swift", - "kind": "StringLiteral", - "offset": 1470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/HexToBinConverter\/IntelHex2BinConverter.swift", - "kind": "IntegerLiteral", - "offset": 2862, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", "kind": "IntegerLiteral", - "offset": 517, + "offset": 397, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", "kind": "IntegerLiteral", - "offset": 517, + "offset": 462, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "IntegerLiteral", - "offset": 645, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTRequestChain.swift", "kind": "Array", - "offset": 1495, - "length": 3179, - "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Compression.swift", - "kind": "BooleanLiteral", - "offset": 7906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist+Error.swift", - "kind": "StringLiteral", - "offset": 1029, - "length": 17, - "value": "\"$ ZTPlist.error\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 177, - "length": 4, - "value": "0x00" + "offset": 470, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 366, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, - "length": 4, - "value": "0x0A" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, + "offset": 1608, "length": 4, - "value": "0x0B" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 501, + "offset": 1720, "length": 4, - "value": "0x0C" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 528, + "offset": 1802, "length": 4, - "value": "0x0D" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 1907, "length": 4, - "value": "0x0E" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 177, + "offset": 1997, "length": 4, - "value": "0x00" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 366, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 393, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, - "length": 4, - "value": "0x0A" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, + "offset": 1608, "length": 4, - "value": "0x0B" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 501, + "offset": 1720, "length": 4, - "value": "0x0C" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 528, + "offset": 1802, "length": 4, - "value": "0x0D" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 1907, "length": 4, - "value": "0x0E" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 177, + "offset": 1997, "length": 4, - "value": "0x00" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 204, + "offset": 1251, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 231, + "offset": 1363, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 258, + "offset": 1429, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 285, + "offset": 1535, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 312, + "offset": 1608, "length": 4, - "value": "0x05" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 339, + "offset": 1720, "length": 4, - "value": "0x06" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 366, + "offset": 1802, "length": 4, - "value": "0x07" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 393, + "offset": 1907, "length": 4, - "value": "0x08" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", "kind": "IntegerLiteral", - "offset": 420, + "offset": 1997, "length": 4, - "value": "0x09" + "value": "0xEE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 447, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1067, "length": 4, - "value": "0x0A" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 474, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 501, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1279, "length": 4, - "value": "0x0C" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 528, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1403, "length": 4, - "value": "0x0D" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", - "kind": "IntegerLiteral", - "offset": 555, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 1751, "length": 4, - "value": "0x0E" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 36, - "value": "\"com.vluxe.starscream.networkstream\"" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", - "kind": "Array", - "offset": 1247, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "IntegerLiteral", + "offset": 1863, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "BooleanLiteral", - "offset": 1330, + "offset": 2026, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "BooleanLiteral", - "offset": 1358, + "offset": 2143, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTTCPTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 1614, + "offset": 2263, "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1754, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1869, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 4, - "value": "0x20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2493, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2493, - "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, - "length": 4, - "value": "0x06" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 4, - "value": "0x01" + "value": "50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2432, - "length": 4, - "value": "0x02" + "offset": 2371, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2493, + "offset": 2562, "length": 4, - "value": "0x04" + "value": "1200" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2691, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2747, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2820, "length": 4, - "value": "0x06" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "IntegerLiteral", - "offset": 2840, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 2958, "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", - "kind": "StringLiteral", - "offset": 5098, - "length": 13, - "value": "\"ZTCoreKit.ButtonlessDFU\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1970, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2035, - "length": 1, - "value": "5" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 2, - "value": "10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "kind": "BooleanLiteral", + "offset": 3068, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2220, + "offset": 3169, "length": 2, - "value": "15" + "value": "50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", "kind": "IntegerLiteral", - "offset": 2293, + "offset": 4075, "length": 2, "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 1970, + "offset": 1461, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2035, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", - "kind": "IntegerLiteral", - "offset": 2220, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 2293, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", - "kind": "BooleanLiteral", - "offset": 1934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", - "kind": "BooleanLiteral", - "offset": 1971, + "offset": 1485, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1726, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestTaskMap.swift", - "kind": "Dictionary", - "offset": 1874, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAlamofire.swift", - "kind": "StringLiteral", - "offset": 1562, - "length": 7, - "value": "\"5.4.3\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2137, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2172, - "length": 25, - "value": "\"info_read_only_metadata\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 10, - "value": "\"bin_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2137, - "length": 10, - "value": "\"dat_file\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2172, - "length": 25, - "value": "\"info_read_only_metadata\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2550, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2586, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2550, - "length": 9, - "value": "\"bl_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", - "kind": "StringLiteral", - "offset": 2586, - "length": 9, - "value": "\"sd_size\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x00" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 207, - "length": 4, - "value": "0x02" + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 228, - "length": 4, - "value": "0x03" + "offset": 1461, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 249, - "length": 4, - "value": "0x04" + "offset": 1485, + "length": 5, + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 270, - "length": 4, - "value": "0x05" + "offset": 1461, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", "kind": "IntegerLiteral", - "offset": 291, - "length": 4, - "value": "0x06" + "offset": 1485, + "length": 5, + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x07" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 333, - "length": 4, - "value": "0x08" + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 186, - "length": 4, - "value": "0x00" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 207, - "length": 4, - "value": "0x02" + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", "kind": "IntegerLiteral", - "offset": 228, - "length": 4, - "value": "0x03" + "offset": 1393, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 249, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "kind": "IntegerLiteral", + "offset": 1430, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 270, + "offset": 228, "length": 4, - "value": "0x05" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 291, + "offset": 295, "length": 4, - "value": "0x06" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 312, + "offset": 357, "length": 4, - "value": "0x07" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 228, "length": 4, - "value": "0x08" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 186, + "offset": 295, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 207, + "offset": 357, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", "offset": 228, "length": 4, - "value": "0x03" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 295, "length": 4, - "value": "0x04" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", "kind": "IntegerLiteral", - "offset": 270, + "offset": 357, "length": 4, - "value": "0x05" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", - "kind": "IntegerLiteral", - "offset": 291, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", + "kind": "BooleanLiteral", + "offset": 1916, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceController.swift", + "kind": "BooleanLiteral", + "offset": 1955, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", "kind": "IntegerLiteral", - "offset": 312, - "length": 4, - "value": "0x07" + "offset": 334, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageInactivityTimeout.swift", "kind": "IntegerLiteral", - "offset": 333, - "length": 4, - "value": "0x08" + "offset": 393, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTCustomDateFormatTransform.swift", "kind": "StringLiteral", - "offset": 671, - "length": 8, - "value": "\".plist\"" + "offset": 1300, + "length": 27, + "value": "\"ZTCoreKit.ZTCustomDateFormatTransform\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTPlist\/ZTPlist.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", "kind": "StringLiteral", - "offset": 792, - "length": 2, + "offset": 354, + "length": 32, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 1, + "value": "\".networklogger\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 38, + "value": "\"99DDCDAB-A80C-4F94-BE5D-C66B9FBA40CF\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 2506, + "length": 38, + "value": "\"99DDCDA8-A80C-4F94-BE5D-C66B9FBA40CF\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 3659, + "length": 6, + "value": "\"180A\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", + "kind": "StringLiteral", + "offset": 4672, + "length": 6, + "value": "\"FE59\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 443, + "offset": 157, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 500, + "offset": 180, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 551, + "offset": 203, "length": 4, - "value": "0x02" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 653, + "offset": 226, "length": 4, - "value": "0x05" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 724, + "offset": 157, "length": 4, - "value": "0x0B" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 774, + "offset": 180, "length": 4, - "value": "0x0C" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 844, + "offset": 203, "length": 4, - "value": "0x0D" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 921, + "offset": 226, "length": 4, - "value": "0x14" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 998, + "offset": 157, "length": 4, - "value": "0x15" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1060, + "offset": 180, "length": 4, - "value": "0x16" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1125, + "offset": 203, "length": 4, - "value": "0x18" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeSide.swift", "kind": "IntegerLiteral", - "offset": 1189, + "offset": 226, "length": 4, - "value": "0x1C" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/HexToBinConverter\/IntelHex2BinConverter.swift", "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "0x1D" + "offset": 2866, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 4, - "value": "0x21" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1367, + "length": 7, + "value": "[\"en0\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1407, - "length": 4, - "value": "0x22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1402, + "length": 21, + "value": "[\"en2\", \"en3\", \"en4\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "0x23" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+UIDevice.swift", + "kind": "Array", + "offset": 1454, + "length": 44, + "value": "[\"pdp_ip0\", \"pdp_ip1\", \"pdp_ip2\", \"pdp_ip3\"]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1667, - "length": 4, - "value": "0x24" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCharacteristic.swift", + "kind": "BooleanLiteral", + "offset": 935, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 4, - "value": "0x26" + "offset": 2063, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1792, - "length": 4, - "value": "0x27" + "offset": 2143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 4, - "value": "0x28" + "offset": 2225, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 1967, - "length": 4, - "value": "0x29" + "offset": 2403, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2055, - "length": 4, - "value": "0x2A" + "offset": 2498, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2117, - "length": 4, - "value": "0x30" + "offset": 2063, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2345, - "length": 4, - "value": "0x31" + "offset": 2143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2539, - "length": 4, - "value": "0x32" + "offset": 2225, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2612, - "length": 4, - "value": "0x33" + "offset": 2403, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 4, - "value": "0x34" + "offset": 2498, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2757, - "length": 4, - "value": "0x40" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/Firmware\/DFUFirmware.swift", + "kind": "StringLiteral", + "offset": 3254, + "length": 11, + "value": "\"ZTCoreKit.DFUFirmware\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2829, - "length": 4, - "value": "0x46" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 24, + "value": "\"com.zhortech.ZTCoreKit\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2890, - "length": 4, - "value": "0x49" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 11, + "value": "\"ZTCoreKit\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 2966, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 705, "length": 4, - "value": "0x4A" + "value": "\"v1\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3013, - "length": 4, - "value": "0x50" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 759, + "length": 7, + "value": "\"1.4.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3080, - "length": 4, - "value": "0x51" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 5, + "value": "\"1.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3198, - "length": 4, - "value": "0x52" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 3112, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3331, - "length": 4, - "value": "0x53" + "offset": 4231, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3465, - "length": 4, - "value": "0xE1" + "offset": 4295, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3605, - "length": 4, - "value": "0xE2" + "offset": 4348, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 3713, - "length": 4, - "value": "0xE3" + "offset": 4518, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 3829, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 5024, "length": 4, - "value": "0xE4" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4003, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 5087, "length": 4, - "value": "0xE5" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4186, - "length": 4, - "value": "0xE6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "StringLiteral", + "offset": 6317, + "length": 14, + "value": "\"3.1.0.PS.0.0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4488, - "length": 4, - "value": "0xE7" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 6408, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 4540, - "length": 4, - "value": "0xF6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 6513, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4583, - "length": 4, - "value": "0xF7" + "offset": 6844, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4626, - "length": 4, - "value": "0xFA" + "offset": 6996, + "length": 2, + "value": "60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4687, - "length": 4, - "value": "0xFC" + "offset": 9493, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4746, - "length": 4, - "value": "0xFD" + "offset": 10342, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4833, - "length": 4, - "value": "0xFE" + "offset": 11376, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 4878, - "length": 4, - "value": "0xFF" + "offset": 12692, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 443, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "kind": "BooleanLiteral", + "offset": 12709, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 500, - "length": 4, - "value": "0x01" + "offset": 15435, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", "kind": "IntegerLiteral", - "offset": 551, - "length": 4, - "value": "0x02" + "offset": 16457, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTDatabaseService.swift", "kind": "IntegerLiteral", - "offset": 653, - "length": 4, - "value": "0x05" + "offset": 1357, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 724, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTDatabaseService.swift", + "kind": "FloatLiteral", + "offset": 1569, "length": 4, - "value": "0x0B" + "value": "30.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 774, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 319, + "length": 12, + "value": "\"attributes\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 844, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 356, "length": 4, - "value": "0x0D" + "value": "\"id\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 921, - "length": 4, - "value": "0x14" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 16, + "value": "\"organizationId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 998, - "length": 4, - "value": "0x15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 7, + "value": "\"appId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1060, - "length": 4, - "value": "0x16" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 11, + "value": "\"createdAt\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1125, - "length": 4, - "value": "0x18" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 11, + "value": "\"updatedAt\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1189, - "length": 4, - "value": "0x1C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 8, + "value": "\"userId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1234, - "length": 4, - "value": "0x1D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", + "kind": "Dictionary", + "offset": 646, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 4, - "value": "0x21" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1407, - "length": 4, - "value": "0x22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 10, + "value": "\"dat_file\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 10, + "value": "\"bin_file\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/ManifestFirmwareInfo.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Data.swift", "kind": "IntegerLiteral", - "offset": 1515, - "length": 4, - "value": "0x23" + "offset": 1947, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "BooleanLiteral", + "offset": 297, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 391, + "length": 33, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 1, + "value": "\".websocketQueue\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 518, + "length": 32, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 1, + "value": "\".callbackQueue\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1667, - "length": 4, - "value": "0x24" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 4, - "value": "0x26" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1792, - "length": 4, - "value": "0x27" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 4, - "value": "0x28" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1967, - "length": 4, - "value": "0x29" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2055, - "length": 4, - "value": "0x2A" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2117, - "length": 4, - "value": "0x30" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2345, - "length": 4, - "value": "0x31" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2539, - "length": 4, - "value": "0x32" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2612, - "length": 4, - "value": "0x33" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 4, - "value": "0x34" + "offset": 290, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2757, - "length": 4, - "value": "0x40" + "offset": 391, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2829, - "length": 4, - "value": "0x46" + "offset": 471, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2890, - "length": 4, - "value": "0x49" + "offset": 533, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2966, - "length": 4, - "value": "0x4A" + "offset": 647, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3013, + "offset": 743, "length": 4, - "value": "0x50" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3080, + "offset": 770, "length": 4, - "value": "0x51" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 797, "length": 4, - "value": "0x52" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3331, + "offset": 824, "length": 4, - "value": "0x53" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3465, + "offset": 851, "length": 4, - "value": "0xE1" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3605, + "offset": 878, "length": 4, - "value": "0xE2" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3713, + "offset": 743, "length": 4, - "value": "0xE3" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3829, + "offset": 770, "length": 4, - "value": "0xE4" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 797, "length": 4, - "value": "0xE5" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4186, + "offset": 824, "length": 4, - "value": "0xE6" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 851, "length": 4, - "value": "0xE7" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4540, + "offset": 878, "length": 4, - "value": "0xF6" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4583, + "offset": 743, "length": 4, - "value": "0xF7" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4626, + "offset": 770, "length": 4, - "value": "0xFA" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4687, + "offset": 797, "length": 4, - "value": "0xFC" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4746, + "offset": 824, "length": 4, - "value": "0xFD" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4833, + "offset": 851, "length": 4, - "value": "0xFE" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4878, + "offset": 878, "length": 4, - "value": "0xFF" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 443, + "offset": 1681, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 500, + "offset": 1712, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 551, + "offset": 1743, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 653, + "offset": 1774, "length": 4, - "value": "0x05" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 724, + "offset": 1805, "length": 4, - "value": "0x0B" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 774, + "offset": 1836, "length": 4, - "value": "0x0C" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 844, + "offset": 1867, "length": 4, - "value": "0x0D" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 921, + "offset": 1898, "length": 4, - "value": "0x14" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 998, + "offset": 1929, "length": 4, - "value": "0x15" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1060, + "offset": 1960, "length": 4, - "value": "0x16" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1125, + "offset": 1991, "length": 4, - "value": "0x18" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1189, + "offset": 1681, "length": 4, - "value": "0x1C" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1234, + "offset": 1712, "length": 4, - "value": "0x1D" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1300, + "offset": 1743, "length": 4, - "value": "0x21" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1774, "length": 4, - "value": "0x22" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1515, + "offset": 1805, "length": 4, - "value": "0x23" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1667, + "offset": 1836, "length": 4, - "value": "0x24" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 1867, "length": 4, - "value": "0x26" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1792, + "offset": 1898, "length": 4, - "value": "0x27" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1863, + "offset": 1929, "length": 4, - "value": "0x28" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1967, + "offset": 1960, "length": 4, - "value": "0x29" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2055, + "offset": 1991, "length": 4, - "value": "0x2A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2117, + "offset": 1681, "length": 4, - "value": "0x30" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2345, + "offset": 1712, "length": 4, - "value": "0x31" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2539, + "offset": 1743, "length": 4, - "value": "0x32" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2612, + "offset": 1774, "length": 4, - "value": "0x33" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2674, + "offset": 1805, "length": 4, - "value": "0x34" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2757, + "offset": 1836, "length": 4, - "value": "0x40" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2829, + "offset": 1867, "length": 4, - "value": "0x46" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2890, + "offset": 1898, "length": 4, - "value": "0x49" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 2966, + "offset": 1929, "length": 4, - "value": "0x4A" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3013, + "offset": 1960, "length": 4, - "value": "0x50" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3080, + "offset": 1991, "length": 4, - "value": "0x51" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3198, + "offset": 3444, "length": 4, - "value": "0x52" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3331, + "offset": 3480, "length": 4, - "value": "0x53" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3465, + "offset": 3515, "length": 4, - "value": "0xE1" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3605, + "offset": 3550, "length": 4, - "value": "0xE2" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3713, + "offset": 3585, "length": 4, - "value": "0xE3" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3829, + "offset": 3620, "length": 4, - "value": "0xE4" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 3655, "length": 4, - "value": "0xE5" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4186, + "offset": 3690, "length": 4, - "value": "0xE6" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4488, + "offset": 3725, "length": 4, - "value": "0xE7" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4540, + "offset": 3760, "length": 4, - "value": "0xF6" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4583, + "offset": 3795, "length": 4, - "value": "0xF7" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4626, + "offset": 3830, "length": 4, - "value": "0xFA" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4687, + "offset": 3865, "length": 4, - "value": "0xFC" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4746, + "offset": 3949, "length": 4, "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4833, + "offset": 4044, "length": 4, "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 4878, + "offset": 3480, "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTCustomDateFormatTransform.swift", - "kind": "StringLiteral", - "offset": 1300, - "length": 27, - "value": "\"ZTCoreKit.ZTCustomDateFormatTransform\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 2352, - "length": 6, - "value": "\"\r\n\"" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "BooleanLiteral", - "offset": 3390, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3515, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "BooleanLiteral", - "offset": 3423, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3550, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 3805, - "length": 10, - "value": "10000000" + "offset": 3585, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 3961, - "length": 48, - "value": "\"multipart\/form-data; boundary=\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3620, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTMultipartFormData.swift", - "kind": "StringLiteral", - "offset": 4008, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", + "kind": "IntegerLiteral", + "offset": 3655, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3690, "length": 4, - "value": "0x01" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3725, "length": 4, - "value": "0x02" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3760, "length": 4, - "value": "0x03" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 3795, "length": 4, - "value": "0x04" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1608, + "offset": 3830, "length": 4, - "value": "0x0D" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1720, + "offset": 3865, "length": 4, - "value": "0x0E" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 3949, "length": 4, - "value": "0x0F" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1907, + "offset": 4044, "length": 4, - "value": "0x10" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1997, + "offset": 3480, "length": 4, - "value": "0xEE" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3515, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3550, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3585, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 3620, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1608, + "offset": 3655, "length": 4, - "value": "0x0D" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1720, + "offset": 3690, "length": 4, - "value": "0x0E" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 3725, "length": 4, - "value": "0x0F" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1907, + "offset": 3760, "length": 4, - "value": "0x10" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1997, + "offset": 3795, "length": 4, - "value": "0xEE" + "value": "0x64" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1251, + "offset": 3830, "length": 4, - "value": "0x01" + "value": "0x65" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1363, + "offset": 3865, "length": 4, - "value": "0x02" + "value": "0x66" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1429, + "offset": 3949, "length": 4, - "value": "0x03" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket+Enum.swift", "kind": "IntegerLiteral", - "offset": 1535, + "offset": 4044, "length": 4, - "value": "0x04" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1608, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDfuPeripheralSelector.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 23, + "value": "\"ZTCoreKit.ZTDfuPeripheralSelector\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/DFU\/LegacyDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 1720, - "length": 4, - "value": "0x0E" + "offset": 2080, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1802, - "length": 4, - "value": "0x0F" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1907, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1627, "length": 4, - "value": "0x10" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandResponse.swift", - "kind": "IntegerLiteral", - "offset": 1997, - "length": 4, - "value": "0xEE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1892, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 213, - "length": 13, - "value": "\"ZTCoreKit.ZTDefaultsKey\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 1961, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 426, - "length": 49, + "offset": 2003, + "length": 46, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 465, + "offset": 2042, "length": 1, - "value": "\".ZTApiKey\"" + "value": "\".Queue\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 526, - "length": 52, + "offset": 2079, + "length": 45, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 565, + "offset": 2118, "length": 1, - "value": "\".ZTApiSecret\"" + "value": "\".UUID\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 625, - "length": 48, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 2155, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 664, - "length": 1, - "value": "\".ZTAppId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", + "kind": "BooleanLiteral", + "offset": 3637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", "kind": "StringLiteral", - "offset": 722, - "length": 50, - "value": "\"\"" + "offset": 499, + "length": 12, + "value": "\"ZTCoreKit.ZTBleManager\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 761, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1805, "length": 1, - "value": "\".ZTOrgCode\"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 821, - "length": 50, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1842, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 860, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 1890, "length": 1, - "value": "\".ZTAppType\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 923, - "length": 52, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamHex.swift", + "kind": "IntegerLiteral", + "offset": 2074, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 962, - "length": 1, - "value": "\".ZTAuthToken\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 560, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1029, - "length": 55, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1068, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 834, "length": 1, - "value": "\".ZTRefreshToken\"" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1135, - "length": 54, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "FloatLiteral", + "offset": 894, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1174, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 943, "length": 1, - "value": "\".ZTTokenExpire\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1241, - "length": 52, + "offset": 996, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1280, - "length": 1, - "value": "\".ZTAppUserId\"" + "offset": 1539, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1346, - "length": 56, - "value": "\"\"" + "offset": 1621, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1385, - "length": 1, - "value": "\".ZTChunkDuration\"" + "offset": 1659, + "length": 28, + "value": "\"CFBundleShortVersionString\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1453, - "length": 51, - "value": "\"\"" + "offset": 1703, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1492, - "length": 1, - "value": "\".ZTAuthData\"" + "offset": 1784, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1570, - "length": 63, + "offset": 1829, + "length": 54, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1609, + "offset": 1852, "length": 1, - "value": "\".lastDeviceSerialNumber\"" + "value": "\" \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1690, - "length": 55, + "offset": 1882, + "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 1729, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "IntegerLiteral", + "offset": 2065, "length": 1, - "value": "\".lastActivityId\"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1804, - "length": 57, + "offset": 2147, + "length": 210, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1843, + "offset": 2161, "length": 1, - "value": "\".lastDeviceQRCode\"" + "value": "\"\/\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1914, - "length": 51, - "value": "\"\"" + "offset": 2175, + "length": 1, + "value": "\" (\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 1953, + "offset": 2193, "length": 1, - "value": "\".lastQRCode\"" + "value": "\"; \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2053, - "length": 56, - "value": "\"\"" + "offset": 2204, + "length": 1, + "value": "\"; build:\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2092, + "offset": 2223, "length": 1, - "value": "\".startAppVersion\"" + "value": "\"; model:\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2159, - "length": 49, - "value": "\"\"" + "offset": 2246, + "length": 5, + "value": "\"n\/a\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2198, + "offset": 2252, "length": 1, - "value": "\".deviceId\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", - "kind": "StringLiteral", - "offset": 2263, - "length": 54, - "value": "\"\"" + "value": "\"; brand:Apple) SDK: \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2302, + "offset": 2299, "length": 1, - "value": "\".pairingMethod\"" + "value": "\"\/\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2370, - "length": 52, - "value": "\"\"" + "offset": 2317, + "length": 1, + "value": "\"-\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2409, + "offset": 2355, "length": 1, - "value": "\".pairingDate\"" + "value": "\";\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2479, - "length": 55, - "value": "\"\"" + "offset": 2375, + "length": 8, + "value": "\"ZTCore\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2518, - "length": 1, - "value": "\".startFwVersion\"" + "offset": 2502, + "length": 28, + "value": "\"CFBundleShortVersionString\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2588, - "length": 52, - "value": "\"\"" + "offset": 2546, + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", "offset": 2627, - "length": 1, - "value": "\".startFwType\"" + "length": 9, + "value": "\"Unknown\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2692, - "length": 50, + "offset": 2650, + "length": 27, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2731, + "offset": 2664, "length": 1, - "value": "\".fwVersion\"" + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2791, - "length": 47, + "offset": 2676, + "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2830, - "length": 1, - "value": "\".fwType\"" + "offset": 2695, + "length": 8, + "value": "\"ZTCore\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 37318, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 39073, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "Array", + "offset": 41103, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2891, - "length": 53, + "offset": 48987, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 2930, - "length": 1, - "value": "\".wasDfuCopied\"" + "offset": 50337, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 3000, - "length": 59, + "offset": 50790, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", "kind": "StringLiteral", - "offset": 3039, - "length": 1, - "value": "\".ZTIsStorageUpdated\"" + "offset": 51222, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "StringLiteral", + "offset": 51936, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1749, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "StringLiteral", + "offset": 51960, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1784, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 64108, "length": 4, - "value": "0x02" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1819, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "kind": "BooleanLiteral", + "offset": 64128, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "kind": "StringLiteral", + "offset": 2598, + "length": 15, + "value": "\"manifest.json\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "offset": 2654, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "offset": 2691, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 2739, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 3268, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "offset": 3313, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "offset": 3358, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 2302, + "offset": 1630, "length": 4, - "value": "0x0C" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 2337, + "offset": 1684, "length": 4, - "value": "0x60" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1749, + "offset": 1738, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "0x02" + "offset": 2296, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1819, - "length": 4, - "value": "0x03" + "offset": 2527, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "offset": 2630, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 15, + "value": "\"ZTCoreKit.DFUFirmwareSize\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 3, + "value": "\"0\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 249, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 1355, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 1410, + "length": 34, + "value": "\"abcdefghjklmnpqrstuvwxyz12345789\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 3, + "value": "\"-\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2302, - "length": 4, - "value": "0x0C" + "offset": 1564, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 2337, - "length": 4, - "value": "0x60" + "offset": 2839, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1681, - "length": 3, - "value": "0x0" + "offset": 3376, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1749, - "length": 4, - "value": "0x01" + "offset": 3708, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1784, - "length": 4, - "value": "0x02" + "offset": 4040, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions.swift", "kind": "IntegerLiteral", - "offset": 1819, + "offset": 7153, "length": 4, - "value": "0x03" + "value": "1000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1854, - "length": 4, - "value": "0x04" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1927, - "length": 4, - "value": "0x06" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 1962, - "length": 4, - "value": "0x07" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2030, - "length": 4, - "value": "0x08" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2098, - "length": 4, - "value": "0x09" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2166, - "length": 4, - "value": "0x0A" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2234, - "length": 4, - "value": "0x0B" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2302, - "length": 4, - "value": "0x0C" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 2337, - "length": 4, - "value": "0x60" + "offset": 224, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3242, - "length": 4, - "value": "0x00" + "offset": 252, + "length": 3, + "value": "0x1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3277, - "length": 4, - "value": "0x02" + "offset": 280, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", "kind": "IntegerLiteral", - "offset": 3312, - "length": 4, - "value": "0x03" + "offset": 308, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3347, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "Dictionary", + "offset": 1576, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3382, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1621, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3417, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1737, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3452, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "StringLiteral", + "offset": 1798, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3487, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 1874, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3522, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 2164, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3557, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "StringLiteral", + "offset": 3812, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3627, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", + "kind": "BooleanLiteral", + "offset": 3835, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3662, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2145, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3242, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3277, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 25, + "value": "\"info_read_only_metadata\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3312, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3347, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2296, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3382, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2145, + "length": 10, + "value": "\"bin_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3417, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2179, + "length": 10, + "value": "\"dat_file\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3452, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 25, + "value": "\"info_read_only_metadata\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3487, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3522, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2296, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3557, - "length": 4, - "value": "0x0A" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 4, - "value": "0x0B" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2628, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3627, - "length": 4, - "value": "0x0C" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2592, + "length": 9, + "value": "\"bl_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 3662, - "length": 4, - "value": "0x0D" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/SoftdeviceBootloaderInfo.swift", + "kind": "StringLiteral", + "offset": 2628, + "length": 9, + "value": "\"sd_size\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3242, + "offset": 188, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3277, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3312, + "offset": 236, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3347, + "offset": 260, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3382, + "offset": 284, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3417, + "offset": 305, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3452, + "offset": 330, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3487, + "offset": 357, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3522, + "offset": 385, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3557, + "offset": 407, "length": 4, "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3592, + "offset": 430, "length": 4, "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3627, + "offset": 456, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 3662, + "offset": 482, "length": 4, "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 4913, - "length": 4, - "value": "0x01" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 507, "length": 4, - "value": "0x02" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4913, + "offset": 536, "length": 4, - "value": "0x01" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 557, "length": 4, - "value": "0x02" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4913, + "offset": 578, "length": 4, - "value": "0x01" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 4935, + "offset": 601, "length": 4, - "value": "0x02" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 626, "length": 4, - "value": "0x00" + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 188, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 236, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 260, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 284, "length": 4, - "value": "0x02" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5198, + "offset": 305, "length": 4, - "value": "0x00" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5224, + "offset": 330, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 357, "length": 4, - "value": "0x02" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 385, "length": 4, - "value": "0x01" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 407, "length": 4, - "value": "0x02" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 430, "length": 4, - "value": "0x03" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 456, "length": 4, - "value": "0x04" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 482, "length": 4, - "value": "0x05" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 507, "length": 4, - "value": "0x06" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 536, "length": 4, - "value": "0x07" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 557, "length": 4, - "value": "0x08" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 578, "length": 4, - "value": "0x0A" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 601, "length": 4, - "value": "0x0B" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "offset": 626, + "length": 4, + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 188, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 212, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 236, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 260, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 284, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 305, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 330, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 357, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 385, "length": 4, - "value": "0x0A" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 407, "length": 4, - "value": "0x0B" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 9109, - "length": 3, - "value": "0x0" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9144, + "offset": 430, "length": 4, - "value": "0x01" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9180, + "offset": 456, "length": 4, - "value": "0x02" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9216, + "offset": 482, "length": 4, - "value": "0x03" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9252, + "offset": 507, "length": 4, - "value": "0x04" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9288, + "offset": 536, "length": 4, - "value": "0x05" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9324, + "offset": 557, "length": 4, - "value": "0x06" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9360, + "offset": 578, "length": 4, - "value": "0x07" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9396, + "offset": 601, "length": 4, - "value": "0x08" + "value": "0x12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", "kind": "IntegerLiteral", - "offset": 9432, + "offset": 626, "length": 4, - "value": "0x0A" + "value": "0x13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 9468, + "offset": 186, "length": 4, - "value": "0x0B" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", - "kind": "StringLiteral", - "offset": 15139, - "length": 21, - "value": "\"ZTCoreKit.SecureDFUControlPoint\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 1, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 403, - "length": 1, - "value": "-1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Writing.swift", - "kind": "IntegerLiteral", - "offset": 425, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 9, - "value": "\"RSSI=%@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1203, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 1211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "IntegerLiteral", - "offset": 2786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3268, - "length": 24, - "value": "\"MSG_GENERAL_STATES: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3506, - "length": 33, - "value": "\"MSG_SOFTWARE: right=%@, left=%@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3576, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 3614, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 4893, - "length": 23, - "value": "\"MSG_ACTIVITY_INFO: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 40, - "value": "\"MSG_BTLOADER_INFO: right: %@; left: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5233, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5273, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 5544, - "length": 15, - "value": "\"MSG_DEBUG: %@\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 6180, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "IntegerLiteral", - "offset": 11580, - "length": 1, - "value": "0" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 14537, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 14626, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "BooleanLiteral", - "offset": 14326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", - "kind": "StringLiteral", - "offset": 215, - "length": 8, - "value": "\"ZTCoreKit.ZTDevice\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 2459, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 4947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 8625, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 8652, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11500, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 11543, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 14728, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 14759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTServerTrustEvaluation.swift", - "kind": "BooleanLiteral", - "offset": 26839, + "offset": 207, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1663, - "length": 1, - "value": "1" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1711, - "length": 1, - "value": "2" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1759, - "length": 1, - "value": "3" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1807, - "length": 1, - "value": "4" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1855, - "length": 1, - "value": "5" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1903, - "length": 1, - "value": "6" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 1951, - "length": 1, - "value": "7" + "offset": 186, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "8" + "offset": 207, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2073, - "length": 2, - "value": "16" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 2122, - "length": 2, - "value": "17" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3150, - "length": 1, - "value": "0" + "offset": 186, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "1" + "offset": 207, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6051, - "length": 1, - "value": "1" + "offset": 228, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6085, - "length": 1, - "value": "2" + "offset": 249, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6119, - "length": 1, - "value": "3" + "offset": 270, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6153, - "length": 1, - "value": "4" + "offset": 291, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "5" + "offset": 312, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTTXPower.swift", "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "6" + "offset": 333, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", "kind": "IntegerLiteral", - "offset": 6051, + "offset": 551, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", "kind": "IntegerLiteral", - "offset": 6085, + "offset": 588, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6119, - "length": 1, - "value": "3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 245, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6153, - "length": 1, - "value": "4" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 273, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6187, - "length": 1, - "value": "5" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 3635, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "6" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 8995, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6051, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 9023, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "IntegerLiteral", - "offset": 6085, - "length": 1, - "value": "2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 17709, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", + "kind": "BooleanLiteral", + "offset": 17737, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6119, + "offset": 1658, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6153, + "offset": 1695, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6187, + "offset": 1743, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", "kind": "IntegerLiteral", - "offset": 6221, + "offset": 1927, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", - "kind": "BooleanLiteral", - "offset": 9193, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1040, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", "kind": "StringLiteral", - "offset": 8806, - "length": 15, - "value": "\"ZTCoreKit.DFUControlPoint\"" + "offset": 1112, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 443, "length": 4, - "value": "0x01" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 500, "length": 4, - "value": "0x02" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 551, "length": 4, - "value": "0x03" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 653, "length": 4, - "value": "0x04" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 724, "length": 4, - "value": "0x0D" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 774, "length": 4, - "value": "0x0E" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 844, "length": 4, - "value": "0x0F" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 921, "length": 4, - "value": "0x10" + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 998, "length": 4, - "value": "0xEE" + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 1060, "length": 4, - "value": "0x01" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 1125, "length": 4, - "value": "0x02" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 1189, "length": 4, - "value": "0x03" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 1234, "length": 4, - "value": "0x04" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 1300, "length": 4, - "value": "0x0D" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 1407, "length": 4, - "value": "0x0E" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 1515, "length": 4, - "value": "0x0F" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 1667, "length": 4, - "value": "0x10" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 1744, "length": 4, - "value": "0xEE" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 1792, "length": 4, - "value": "0x01" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 263, + "offset": 1863, "length": 4, - "value": "0x02" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 298, + "offset": 1967, "length": 4, - "value": "0x03" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 333, + "offset": 2055, "length": 4, - "value": "0x04" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 368, + "offset": 2117, "length": 4, - "value": "0x0D" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 403, + "offset": 2345, "length": 4, - "value": "0x0E" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 2539, "length": 4, - "value": "0x0F" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 473, + "offset": 2612, "length": 4, - "value": "0x10" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 508, + "offset": 2674, "length": 4, - "value": "0xEE" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", - "kind": "StringLiteral", - "offset": 2588, - "length": 15, - "value": "\"manifest.json\"" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2640, - "length": 1, - "value": "1" + "offset": 2757, + "length": 4, + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2677, - "length": 1, - "value": "1" + "offset": 2829, + "length": 4, + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2725, - "length": 1, - "value": "0" + "offset": 2890, + "length": 4, + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3240, - "length": 1, - "value": "0" + "offset": 2966, + "length": 4, + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3283, - "length": 1, - "value": "0" + "offset": 3013, + "length": 4, + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamZip.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3327, - "length": 1, - "value": "0" + "offset": 3080, + "length": 4, + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 551, - "length": 1, - "value": "0" + "offset": 3198, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/ZTBatteryCharacteristic.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 588, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", - "kind": "StringLiteral", - "offset": 1040, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfo.swift", - "kind": "StringLiteral", - "offset": 1112, - "length": 2, - "value": "\"\"" + "offset": 3331, + "length": 4, + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 10, - "value": "\"ZTSports\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 255, - "length": 8, - "value": "\"ZTWarm\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3605, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 11, - "value": "\"ZTRunning\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3713, + "length": 4, + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 315, - "length": 13, - "value": "\"ZTPodoSmart\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 3829, + "length": 4, + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 344, - "length": 9, - "value": "\"DfuTarg\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4003, + "length": 4, + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 7, - "value": "\"ZTDFU\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4186, + "length": 4, + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 399, - "length": 5, - "value": "\"ZTB\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4488, + "length": 4, + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 10, - "value": "\"ZTSports\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4540, + "length": 4, + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 255, - "length": 8, - "value": "\"ZTWarm\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4583, + "length": 4, + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 11, - "value": "\"ZTRunning\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4626, + "length": 4, + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 315, - "length": 13, - "value": "\"ZTPodoSmart\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4687, + "length": 4, + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 344, - "length": 9, - "value": "\"DfuTarg\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4746, + "length": 4, + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 7, - "value": "\"ZTDFU\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4833, + "length": 4, + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", - "kind": "StringLiteral", - "offset": 399, - "length": 5, - "value": "\"ZTB\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 4878, + "length": 4, + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 443, "length": 4, - "value": "1" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 500, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 551, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 653, "length": 4, - "value": "1" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 724, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 774, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 221, + "offset": 844, "length": 4, - "value": "1" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 239, - "length": 7, - "value": "2" + "offset": 921, + "length": 4, + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 260, - "length": 5, - "value": "3" + "offset": 998, + "length": 4, + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 1060, "length": 4, - "value": "0x00" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 1125, "length": 4, - "value": "0x01" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 1189, "length": 4, - "value": "0x02" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 1234, "length": 4, - "value": "0x03" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 1300, "length": 4, - "value": "0x04" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 1407, "length": 4, - "value": "0x05" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 1515, "length": 4, - "value": "0x00" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 1667, "length": 4, - "value": "0x01" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 1744, "length": 4, - "value": "0x02" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 1792, "length": 4, - "value": "0x03" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 1863, "length": 4, - "value": "0x04" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 1967, "length": 4, - "value": "0x05" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 370, + "offset": 2055, "length": 4, - "value": "0x00" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 401, + "offset": 2117, "length": 4, - "value": "0x01" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 432, + "offset": 2345, "length": 4, - "value": "0x02" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 463, + "offset": 2539, "length": 4, - "value": "0x03" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 2612, "length": 4, - "value": "0x04" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 525, + "offset": 2674, "length": 4, - "value": "0x05" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 2757, "length": 4, - "value": "0x00" + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 2829, "length": 4, - "value": "0x01" + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 2890, "length": 4, - "value": "0x02" + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 2966, "length": 4, - "value": "0x03" + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 3013, "length": 4, - "value": "0x04" + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 3080, "length": 4, - "value": "0x05" + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 3198, "length": 4, - "value": "0x06" + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 3331, "length": 4, - "value": "0x07" + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 3465, "length": 4, - "value": "0x08" + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 3605, "length": 4, - "value": "0x09" + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 3713, "length": 4, - "value": "0x10" + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 3829, "length": 4, - "value": "0x00" + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 4003, "length": 4, - "value": "0x01" + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 4186, "length": 4, - "value": "0x02" + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 4488, "length": 4, - "value": "0x03" + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 4540, "length": 4, - "value": "0x04" + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 4583, "length": 4, - "value": "0x05" + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 4626, "length": 4, - "value": "0x06" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 4687, "length": 4, - "value": "0x07" + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4746, "length": 4, - "value": "0x08" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 4833, "length": 4, - "value": "0x09" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 4878, "length": 4, - "value": "0x10" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1546, + "offset": 443, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1581, + "offset": 500, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1616, + "offset": 551, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1651, + "offset": 653, "length": 4, - "value": "0x03" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1686, + "offset": 724, "length": 4, - "value": "0x04" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1721, + "offset": 774, "length": 4, - "value": "0x05" + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1756, + "offset": 844, "length": 4, - "value": "0x06" + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1791, + "offset": 921, "length": 4, - "value": "0x07" + "value": "0x14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 998, "length": 4, - "value": "0x08" + "value": "0x15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 1060, "length": 4, - "value": "0x09" + "value": "0x16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1896, + "offset": 1125, "length": 4, - "value": "0x10" + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3700, + "offset": 1189, "length": 4, - "value": "0xFA" + "value": "0x1C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 1234, "length": 4, - "value": "0x00" + "value": "0x1D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 1300, "length": 4, - "value": "0x01" + "value": "0x21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 1407, "length": 4, - "value": "0x02" + "value": "0x22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 1515, "length": 4, - "value": "0x03" + "value": "0x23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 1667, "length": 4, - "value": "0x04" + "value": "0x24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 1744, "length": 4, - "value": "0x05" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 1792, "length": 4, - "value": "0x06" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 1863, "length": 4, - "value": "0x07" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 1967, "length": 4, - "value": "0x0A" + "value": "0x29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 2055, "length": 4, - "value": "0x64" + "value": "0x2A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4130, + "offset": 2117, "length": 4, - "value": "0x65" + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 2345, "length": 4, - "value": "0x66" + "value": "0x31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4261, + "offset": 2539, "length": 4, - "value": "0xFD" + "value": "0x32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4364, + "offset": 2612, "length": 4, - "value": "0xFE" + "value": "0x33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 2674, "length": 4, - "value": "0x00" + "value": "0x34" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 2757, "length": 4, - "value": "0x01" + "value": "0x40" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 2829, "length": 4, - "value": "0x02" + "value": "0x46" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 2890, "length": 4, - "value": "0x03" + "value": "0x49" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 2966, "length": 4, - "value": "0x04" + "value": "0x4A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 3013, "length": 4, - "value": "0x05" + "value": "0x50" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 3080, "length": 4, - "value": "0x06" + "value": "0x51" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 3198, "length": 4, - "value": "0x07" + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 3331, "length": 4, - "value": "0x0A" + "value": "0x53" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 3465, "length": 4, - "value": "0x64" + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4130, + "offset": 3605, "length": 4, - "value": "0x65" + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4169, + "offset": 3713, "length": 4, - "value": "0x66" + "value": "0xE3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4261, + "offset": 3829, "length": 4, - "value": "0xFD" + "value": "0xE4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4364, + "offset": 4003, "length": 4, - "value": "0xFE" + "value": "0xE5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 4186, "length": 4, - "value": "0x00" + "value": "0xE6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3779, + "offset": 4488, "length": 4, - "value": "0x01" + "value": "0xE7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3818, + "offset": 4540, "length": 4, - "value": "0x02" + "value": "0xF6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3857, + "offset": 4583, "length": 4, - "value": "0x03" + "value": "0xF7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3896, + "offset": 4626, "length": 4, - "value": "0x04" + "value": "0xFA" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3935, + "offset": 4687, "length": 4, - "value": "0x05" + "value": "0xFC" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3974, + "offset": 4746, "length": 4, - "value": "0x06" + "value": "0xFD" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4013, + "offset": 4833, "length": 4, - "value": "0x07" + "value": "0xFE" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4052, + "offset": 4878, "length": 4, - "value": "0x0A" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 4, - "value": "0x64" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2124, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 4, - "value": "0x65" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4169, - "length": 4, - "value": "0x66" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 2943, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", - "offset": 4261, - "length": 4, - "value": "0xFD" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 3593, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Enum.swift", - "kind": "IntegerLiteral", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 3976, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", "offset": 4364, - "length": 4, - "value": "0xFE" + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTData+Serialization.swift", - "kind": "BooleanLiteral", - "offset": 1442, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 4753, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", - "kind": "BooleanLiteral", - "offset": 258, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 5165, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 352, - "length": 33, - "value": "\"\"" + "offset": 5791, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 369, - "length": 1, - "value": "\".websocketQueue\"" + "offset": 6421, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 479, - "length": 32, - "value": "\"\"" + "offset": 7103, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTWebsocketManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 496, - "length": 1, - "value": "\".callbackQueue\"" + "offset": 7791, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 797, - "length": 2, - "value": "\"\"" + "offset": 8733, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 9446, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 10207, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 11144, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", + "kind": "StringLiteral", + "offset": 11890, + "length": 3, + "value": "\".\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", "kind": "StringLiteral", - "offset": 901, + "offset": 12631, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTMediaUploader.swift", + "kind": "Array", + "offset": 317, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 410, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 570, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 1352, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTSignal.swift", + "kind": "BooleanLiteral", + "offset": 6966, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 249, + "offset": 174, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", "kind": "IntegerLiteral", - "offset": 280, + "offset": 201, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2033, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "IntegerLiteral", - "offset": 2069, - "length": 1, - "value": "0" + "offset": 5949, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "BooleanLiteral", - "offset": 2111, + "offset": 9420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "BooleanLiteral", - "offset": 2154, + "offset": 10843, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", - "kind": "IntegerLiteral", - "offset": 2308, - "length": 1, - "value": "3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "FloatLiteral", + "offset": 11084, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1107, - "length": 9, - "value": "\"Network\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "FloatLiteral", + "offset": 12388, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1164, - "length": 9, - "value": "\"Modules\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 13604, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", - "kind": "StringLiteral", - "offset": 1213, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 16027, "length": 5, - "value": "\"SDK\"" + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "kind": "BooleanLiteral", + "offset": 16478, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", "kind": "StringLiteral", - "offset": 1107, - "length": 9, - "value": "\"Network\"" + "offset": 2408, + "length": 19, + "value": "\"ZTCoreKit.DFUServiceInitiator\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", + "kind": "FloatLiteral", + "offset": 374, + "length": 6, + "value": "1000.0" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTTransforms.swift", + "kind": "FloatLiteral", + "offset": 543, + "length": 6, + "value": "1000.0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", "kind": "StringLiteral", - "offset": 1164, - "length": 9, - "value": "\"Modules\"" + "offset": 228, + "length": 10, + "value": "\"ZTSports\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", "kind": "StringLiteral", - "offset": 1213, - "length": 5, - "value": "\"SDK\"" + "offset": 255, + "length": 8, + "value": "\"ZTWarm\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 11, + "value": "\"ZTRunning\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 13, + "value": "\"ZTPodoSmart\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 9, + "value": "\"DfuTarg\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 7, + "value": "\"ZTDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 5, + "value": "\"ZTB\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 228, + "length": 10, + "value": "\"ZTSports\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 255, + "length": 8, + "value": "\"ZTWarm\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 11, + "value": "\"ZTRunning\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 315, + "length": 13, + "value": "\"ZTPodoSmart\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 9, + "value": "\"DfuTarg\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 7, + "value": "\"ZTDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDeviceInfoEnums.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 5, + "value": "\"ZTB\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 4, - "value": "0x00" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTURLTransform.swift", + "kind": "BooleanLiteral", + "offset": 1794, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 319, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1247, + "length": 9, + "value": "\"RSSI=%@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 354, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1258, + "length": 9, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 389, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 1266, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 424, - "length": 4, - "value": "0xFE" + "offset": 2841, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 4, - "value": "0xFF" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 3323, + "length": 24, + "value": "\"MSG_GENERAL_STATES: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 7161, - "length": 24, - "value": "\"ZTCore.log.notifcation\"" + "offset": 3561, + "length": 33, + "value": "\"MSG_SOFTWARE: right=%@, left=%@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 7259, - "length": 29, - "value": "\"ZTCore.log.notification.ble\"" + "offset": 3631, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNetworkReachabilityManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "StringLiteral", - "offset": 3999, - "length": 33, - "value": "\"org.alamofire.reachabilityQueue\"" + "offset": 3669, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 4948, + "length": 23, + "value": "\"MSG_ACTIVITY_INFO: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5209, + "length": 40, + "value": "\"MSG_BTLOADER_INFO: right: %@; left: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 357, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5288, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5328, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 5599, + "length": 15, + "value": "\"MSG_DEBUG: %@\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 6235, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "offset": 11635, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "offset": 14590, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 357, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 14679, "length": 4, - "value": "0x03" + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "BooleanLiteral", + "offset": 14379, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDevice.swift", + "kind": "StringLiteral", + "offset": 251, + "length": 8, + "value": "\"ZTCoreKit.ZTDevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "offset": 1891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 4, - "value": "0x01" + "offset": 1973, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 326, - "length": 4, - "value": "0x02" + "offset": 2038, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 357, - "length": 4, - "value": "0x03" + "offset": 2169, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 388, - "length": 4, - "value": "0x04" + "offset": 2223, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 419, - "length": 4, - "value": "0x05" + "offset": 2296, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 450, - "length": 4, - "value": "0x06" + "offset": 1891, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1090, - "length": 4, - "value": "0x00" + "offset": 1973, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1133, - "length": 4, - "value": "0x01" + "offset": 2038, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1176, - "length": 4, - "value": "0x02" + "offset": 2169, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1219, - "length": 4, - "value": "0x03" + "offset": 2223, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Logging\/LoggerDelegate.swift", "kind": "IntegerLiteral", - "offset": 1262, - "length": 4, - "value": "0x04" + "offset": 2296, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 4807, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1348, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "StringLiteral", + "offset": 2523, + "length": 17, + "value": "\"ZTCoreKit.BaseDFUPeripheral\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22455, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1434, - "length": 4, - "value": "0x09" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22675, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1477, - "length": 4, - "value": "0x10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 22946, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1520, - "length": 4, - "value": "0x11" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 23227, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 285, "length": 4, - "value": "0x0C" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 316, "length": 4, - "value": "0x0F" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 285, "length": 4, - "value": "0x26" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 316, "length": 4, - "value": "0x27" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 285, "length": 4, - "value": "0x28" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 316, "length": 4, - "value": "0xFF" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1090, + "offset": 418, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1133, + "offset": 453, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1176, + "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1219, + "offset": 523, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1262, + "offset": 558, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1305, + "offset": 593, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1348, + "offset": 628, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1434, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1477, - "length": 4, - "value": "0x10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1520, + "offset": 418, "length": 4, - "value": "0x11" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 453, "length": 4, - "value": "0x0C" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 488, "length": 4, - "value": "0x0F" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 523, "length": 4, - "value": "0x26" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 558, "length": 4, - "value": "0x27" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 593, "length": 4, - "value": "0x28" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 628, "length": 4, - "value": "0xFF" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1090, + "offset": 418, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1133, + "offset": 453, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1176, + "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1219, + "offset": 523, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1262, + "offset": 558, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1305, + "offset": 593, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1348, + "offset": 628, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 1391, - "length": 4, - "value": "0x08" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1434, + "offset": 733, "length": 4, - "value": "0x09" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1477, + "offset": 764, "length": 4, - "value": "0x10" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1520, + "offset": 795, "length": 4, - "value": "0x11" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1563, + "offset": 826, "length": 4, - "value": "0x0C" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 733, "length": 4, - "value": "0x0F" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 764, "length": 4, - "value": "0x26" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1692, + "offset": 795, "length": 4, - "value": "0x27" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1735, + "offset": 826, "length": 4, - "value": "0x28" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 1778, + "offset": 733, "length": 4, - "value": "0xFF" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3372, + "offset": 764, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3415, + "offset": 795, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEvent.swift", "kind": "IntegerLiteral", - "offset": 3458, + "offset": 826, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 1585, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3544, - "length": 4, - "value": "0x05" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 1769, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 11873, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3630, - "length": 4, - "value": "0x07" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 12156, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3673, - "length": 4, - "value": "0x08" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", + "kind": "BooleanLiteral", + "offset": 14664, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3716, - "length": 4, - "value": "0x09" + "offset": 2062, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3372, - "length": 4, - "value": "0x01" + "offset": 2112, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3415, - "length": 4, - "value": "0x02" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "kind": "BooleanLiteral", + "offset": 2160, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3458, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", + "kind": "BooleanLiteral", + "offset": 2207, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/DFU\/SecureDFUExecutor.swift", "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "offset": 2366, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3544, + "offset": 249, "length": 4, - "value": "0x05" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3587, + "offset": 280, "length": 4, - "value": "0x06" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3630, + "offset": 249, "length": 4, - "value": "0x07" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3673, + "offset": 280, "length": 4, - "value": "0x08" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3716, + "offset": 249, "length": 4, - "value": "0x09" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageChunkData.swift", "kind": "IntegerLiteral", - "offset": 3372, + "offset": 280, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3415, - "length": 4, - "value": "0x02" + "offset": 1861, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3458, - "length": 4, - "value": "0x03" + "offset": 2052, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3501, - "length": 4, - "value": "0x04" + "offset": 2109, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUPacket.swift", "kind": "IntegerLiteral", - "offset": 3544, - "length": 4, - "value": "0x05" + "offset": 2199, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 3587, - "length": 4, - "value": "0x06" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTAuthManager.swift", + "kind": "BooleanLiteral", + "offset": 2100, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3630, + "offset": 186, "length": 4, - "value": "0x07" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3673, + "offset": 217, "length": 4, - "value": "0x08" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3716, + "offset": 248, "length": 4, - "value": "0x09" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 279, "length": 4, - "value": "0x00" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 186, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 3915, + "offset": 217, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 248, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 279, "length": 4, - "value": "0x01" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 186, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4329, + "offset": 217, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4367, + "offset": 248, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 4329, + "offset": 279, "length": 4, - "value": "0x03" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4367, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1079, + "length": 9, + "value": "\"Network\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4329, - "length": 4, - "value": "0x03" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 9, + "value": "\"Modules\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4367, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1079, + "length": 9, + "value": "\"Network\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 9, + "value": "\"Modules\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", - "kind": "IntegerLiteral", - "offset": 4573, - "length": 4, - "value": "0x04" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogLevel.swift", + "kind": "StringLiteral", + "offset": 1185, + "length": 5, + "value": "\"SDK\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4900, - "length": 1, - "value": "0" + "offset": 2021, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4930, - "length": 1, - "value": "1" + "offset": 2060, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4955, - "length": 1, - "value": "2" + "offset": 2099, + "length": 4, + "value": "0x18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 4984, - "length": 1, - "value": "3" + "offset": 2138, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5012, - "length": 1, - "value": "4" + "offset": 2177, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5042, - "length": 1, - "value": "5" + "offset": 2216, + "length": 4, + "value": "0x80" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "6" + "offset": 2255, + "length": 4, + "value": "0xE0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "7" + "offset": 2294, + "length": 4, + "value": "0xE1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageBootloaderInfo.swift", "kind": "IntegerLiteral", - "offset": 5123, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFoundationHTTPServerHandler.swift", - "kind": "StringLiteral", - "offset": 1085, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 453, - "length": 38, - "value": "\"99DDCDAB-A80C-4F94-BE5D-C66B9FBA40CF\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 2506, - "length": 38, - "value": "\"99DDCDA8-A80C-4F94-BE5D-C66B9FBA40CF\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 3659, - "length": 6, - "value": "\"180A\"" + "offset": 2333, + "length": 4, + "value": "0xE2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTServiceEnum.swift", - "kind": "StringLiteral", - "offset": 4672, - "length": 6, - "value": "\"FE59\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageTime.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 295, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 326, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 357, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 388, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 419, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 450, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 330, + "offset": 295, "length": 4, - "value": "0x07" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 326, "length": 4, - "value": "0x08" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 357, "length": 4, - "value": "0x09" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 388, "length": 4, - "value": "0x0A" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 419, "length": 4, - "value": "0x0B" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 450, "length": 4, - "value": "0x0C" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 482, + "offset": 295, "length": 4, - "value": "0x0D" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 326, "length": 4, - "value": "0x0E" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 357, "length": 4, - "value": "0x0F" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 388, "length": 4, - "value": "0x10" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 419, "length": 4, - "value": "0x11" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 450, "length": 4, - "value": "0x12" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 1219, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 1262, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 1305, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 1348, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 330, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 1391, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 1434, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 1477, "length": 4, - "value": "0x0A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 1520, "length": 4, - "value": "0x0B" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 1563, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 1606, "length": 4, - "value": "0x0E" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 1649, "length": 4, - "value": "0x0F" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 1692, "length": 4, - "value": "0x10" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 1735, "length": 4, - "value": "0x11" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 1778, "length": 4, - "value": "0x12" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 188, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 212, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 236, + "offset": 1219, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 260, + "offset": 1262, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, + "offset": 1305, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 305, + "offset": 1348, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 330, - "length": 4, - "value": "0x07" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 1391, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 385, + "offset": 1434, "length": 4, "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 407, + "offset": 1477, "length": 4, - "value": "0x0A" + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 430, + "offset": 1520, "length": 4, - "value": "0x0B" + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 1563, "length": 4, "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 507, + "offset": 1606, "length": 4, - "value": "0x0E" + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 536, + "offset": 1649, "length": 4, - "value": "0x0F" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 557, + "offset": 1692, "length": 4, - "value": "0x10" + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 578, + "offset": 1735, "length": 4, - "value": "0x11" + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 601, + "offset": 1778, "length": 4, - "value": "0x12" + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTActivityTypeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 626, + "offset": 1090, "length": 4, - "value": "0x13" + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1628, + "offset": 1133, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1680, + "offset": 1176, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 1219, "length": 4, - "value": "0x04" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "IntegerLiteral", - "offset": 2287, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "IntegerLiteral", - "offset": 2515, - "length": 1, - "value": "0" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStream.swift", - "kind": "StringLiteral", - "offset": 2057, - "length": 15, - "value": "\"ZTCoreKit.DFUFirmwareSize\"" + "offset": 1262, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" + "offset": 1305, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1348, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1391, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 1434, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 1477, "length": 4, "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", - "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1520, + "length": 4, + "value": "0x11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1563, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 1606, + "length": 4, + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 1649, "length": 4, - "value": "0x10" + "value": "0x26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 258, - "length": 3, - "value": "0x0" + "offset": 1692, + "length": 4, + "value": "0x27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "0x2" + "offset": 1735, + "length": 4, + "value": "0x28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "0x3" + "offset": 1778, + "length": 4, + "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 336, - "length": 3, - "value": "0x4" + "offset": 3372, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 362, + "offset": 3415, "length": 4, - "value": "0x10" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3458, "length": 4, - "value": "0x00" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3501, "length": 4, - "value": "0x01" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3544, "length": 4, - "value": "0x02" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3587, "length": 4, - "value": "0x00" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3630, "length": 4, - "value": "0x01" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3673, "length": 4, - "value": "0x02" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 228, + "offset": 3716, "length": 4, - "value": "0x00" + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 295, + "offset": 3372, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoPrecisionModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 357, + "offset": 3415, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7386, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3458, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7425, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3501, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequestInterceptor.swift", - "kind": "Array", - "offset": 7472, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 245, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3587, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 273, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3630, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 3635, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3673, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 8995, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3716, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 9023, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3372, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 17709, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3415, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+BackgroundDFU.swift", - "kind": "BooleanLiteral", - "offset": 17737, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3458, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Data.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1959, - "length": 1, - "value": "0" + "offset": 3501, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTFoundationSecurity.swift", - "kind": "BooleanLiteral", - "offset": 1069, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3544, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTFoundationSecurity.swift", - "kind": "BooleanLiteral", - "offset": 1109, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3587, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2124, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3630, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2395, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3673, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 2943, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3716, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 3593, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 3976, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 4364, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 3915, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 4753, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 5165, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 5791, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4118, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 6421, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 7103, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 7791, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 8733, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 9446, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4329, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 10207, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4367, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 11144, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 11890, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTImmutableMappable.swift", - "kind": "StringLiteral", - "offset": 12631, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4573, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 4900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4930, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1912, + "offset": 4955, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 4984, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2071, + "offset": 5012, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2158, + "offset": 5042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2244, + "offset": 5072, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2320, + "offset": 5102, "length": 1, "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "IntegerLiteral", - "offset": 2403, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2608, - "length": 2, - "value": "10" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1733, + "offset": 4900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1826, + "offset": 4930, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1912, + "offset": 4955, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 1999, + "offset": 4984, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2071, + "offset": 5012, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2158, + "offset": 5042, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2244, + "offset": 5072, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2320, + "offset": 5102, "length": 1, "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2403, - "length": 1, - "value": "8" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2507, + "offset": 4900, "length": 1, - "value": "9" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 2608, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", - "kind": "StringLiteral", - "offset": 2654, - "length": 7, - "value": "\"ZTCoreKit.DFUUuid\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 319, - "length": 12, - "value": "\"attributes\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 356, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 16, - "value": "\"organizationId\"" + "offset": 4930, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 441, - "length": 7, - "value": "\"appId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4955, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 480, - "length": 11, - "value": "\"createdAt\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 4984, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 523, - "length": 11, - "value": "\"updatedAt\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5012, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "StringLiteral", - "offset": 563, - "length": 8, - "value": "\"userId\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5042, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTUser.swift", - "kind": "Dictionary", - "offset": 646, - "length": 3, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5072, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 2542, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", + "kind": "IntegerLiteral", + "offset": 5102, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTNotifyDataEnum.swift", "kind": "IntegerLiteral", - "offset": 11571, - "length": 1, - "value": "0" + "offset": 5123, + "length": 3, + "value": "255" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "BooleanLiteral", - "offset": 13384, + "offset": 2832, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "BooleanLiteral", - "offset": 13448, + "offset": 2864, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 618, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 1703, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", - "kind": "BooleanLiteral", - "offset": 8911, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Starscream\/ZTWebSocket.swift", - "kind": "BooleanLiteral", - "offset": 3279, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "StringLiteral", - "offset": 284, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "StringLiteral", - "offset": 393, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", + "kind": "IntegerLiteral", + "offset": 3416, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Services\/LegacyDFUService.swift", "kind": "StringLiteral", - "offset": 501, - "length": 5, - "value": "\"N\/A\"" + "offset": 1605, + "length": 16, + "value": "\"ZTCoreKit.LegacyDFUService\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "Array", - "offset": 1122, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1712, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1409, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1499, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1599, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", - "kind": "BooleanLiteral", - "offset": 1702, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4877, + "offset": 1952, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4898, + "offset": 2026, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5802, + "offset": 2074, "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 9214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 10613, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "FloatLiteral", - "offset": 10840, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "FloatLiteral", - "offset": 12109, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 13291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 15653, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "BooleanLiteral", - "offset": 16089, - "length": 5, - "value": "false" + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceInitiator.swift", - "kind": "StringLiteral", - "offset": 2405, - "length": 19, - "value": "\"ZTCoreKit.DFUServiceInitiator\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 397, + "offset": 1664, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTBatteryLevel.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 462, + "offset": 1712, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1422, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didResume\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1655, - "length": 52, - "value": "\"org.alamofire.notification.name.request.didSuspend\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 1888, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didCancel\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2119, - "length": 51, - "value": "\"org.alamofire.notification.name.request.didFinish\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 55, - "value": "\"org.alamofire.notification.name.request.didResumeTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1952, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2659, - "length": 56, - "value": "\"org.alamofire.notification.name.request.didSuspendTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 2932, - "length": 55, - "value": "\"org.alamofire.notification.name.request.didCancelTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2074, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 3206, - "length": 57, - "value": "\"org.alamofire.notification.name.request.didCompleteTask\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 2123, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTNotifications.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 40, - "value": "\"org.alamofire.notification.key.request\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 1664, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 1712, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 1760, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, - "length": 2, - "value": "20" + "offset": 1808, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, - "length": 2, - "value": "90" + "offset": 1856, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 1904, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 1952, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 2026, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, + "offset": 2074, "length": 2, - "value": "20" + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, + "offset": 2123, "length": 2, - "value": "90" + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1752, + "offset": 3204, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1852, - "length": 2, - "value": "10" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1956, - "length": 2, - "value": "20" + "offset": 3204, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2054, - "length": 2, - "value": "90" + "offset": 3172, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2181, - "length": 4, - "value": "9000" + "offset": 3204, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2842, + "offset": 6105, "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 2943, + "offset": 6139, "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3039, + "offset": 6173, "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3130, + "offset": 6207, "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3212, + "offset": 6241, "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3310, + "offset": 6275, "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 3488, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3681, - "length": 2, - "value": "13" + "offset": 6105, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3819, - "length": 2, - "value": "14" + "offset": 6139, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 2, - "value": "15" + "offset": 6173, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4011, - "length": 2, - "value": "16" + "offset": 6207, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4113, - "length": 2, - "value": "17" + "offset": 6241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4220, - "length": 2, - "value": "18" + "offset": 6275, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4329, - "length": 2, - "value": "20" + "offset": 6105, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4600, - "length": 2, - "value": "21" + "offset": 6139, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 4960, - "length": 2, - "value": "22" + "offset": 6173, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5108, - "length": 2, - "value": "23" + "offset": 6207, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5438, - "length": 2, - "value": "24" + "offset": 6241, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 5782, - "length": 2, - "value": "25" + "offset": 6275, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6040, - "length": 2, - "value": "26" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "BooleanLiteral", + "offset": 9374, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6315, - "length": 2, - "value": "27" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUControlPoint.swift", + "kind": "StringLiteral", + "offset": 8985, + "length": 15, + "value": "\"ZTCoreKit.DFUControlPoint\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6585, - "length": 2, - "value": "28" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6751, - "length": 2, - "value": "29" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "30" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7031, - "length": 2, - "value": "31" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7190, - "length": 2, - "value": "32" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7337, - "length": 2, - "value": "33" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 339, "length": 4, - "value": "9001" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7719, + "offset": 366, "length": 4, - "value": "9002" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 7843, + "offset": 393, "length": 4, - "value": "9004" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8073, - "length": 2, - "value": "91" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8182, - "length": 2, - "value": "92" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8296, - "length": 2, - "value": "94" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8476, - "length": 2, - "value": "95" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8576, - "length": 2, - "value": "96" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8712, - "length": 2, - "value": "97" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8821, - "length": 3, - "value": "101" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 8919, - "length": 3, - "value": "102" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9210, - "length": 3, - "value": "103" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9602, - "length": 3, - "value": "104" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9723, - "length": 3, - "value": "201" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9825, - "length": 3, - "value": "202" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 9916, - "length": 3, - "value": "203" + "offset": 339, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10006, - "length": 3, - "value": "301" + "offset": 366, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10163, - "length": 3, - "value": "302" + "offset": 393, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10270, - "length": 3, - "value": "303" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10375, - "length": 3, - "value": "304" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10472, - "length": 3, - "value": "305" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10580, - "length": 3, - "value": "306" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10676, - "length": 3, - "value": "307" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 10848, - "length": 3, - "value": "308" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 11006, - "length": 3, - "value": "309" + "offset": 177, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 11188, - "length": 3, - "value": "500" + "offset": 204, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 2842, - "length": 1, - "value": "1" + "offset": 231, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 2943, - "length": 1, - "value": "2" + "offset": 258, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3039, - "length": 1, - "value": "3" + "offset": 285, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3130, - "length": 1, - "value": "4" + "offset": 312, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3212, - "length": 1, - "value": "5" + "offset": 339, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3310, - "length": 1, - "value": "6" + "offset": 366, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3488, - "length": 2, - "value": "11" + "offset": 393, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3593, - "length": 2, - "value": "12" + "offset": 420, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3681, - "length": 2, - "value": "13" + "offset": 447, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3819, - "length": 2, - "value": "14" + "offset": 474, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 2, - "value": "15" + "offset": 501, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 4011, - "length": 2, - "value": "16" + "offset": 528, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoStateEnum.swift", "kind": "IntegerLiteral", - "offset": 4113, - "length": 2, - "value": "17" + "offset": 555, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4220, - "length": 2, - "value": "18" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "BooleanLiteral", + "offset": 2973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4329, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "BooleanLiteral", + "offset": 3005, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", "kind": "IntegerLiteral", - "offset": 4600, - "length": 2, - "value": "21" + "offset": 11176, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 4960, - "length": 2, - "value": "22" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Services\/SecureDFUService.swift", + "kind": "StringLiteral", + "offset": 1605, + "length": 16, + "value": "\"ZTCoreKit.SecureDFUService\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", "kind": "IntegerLiteral", - "offset": 5108, - "length": 2, - "value": "23" + "offset": 448, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 5438, - "length": 2, - "value": "24" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 2614, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 5782, - "length": 2, - "value": "25" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 3753, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6040, - "length": 2, - "value": "26" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 4348, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6315, - "length": 2, - "value": "27" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 5101, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", - "kind": "IntegerLiteral", - "offset": 6585, - "length": 2, - "value": "28" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", + "kind": "BooleanLiteral", + "offset": 5469, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTExtensions+Data.swift", "kind": "IntegerLiteral", - "offset": 6751, - "length": 2, - "value": "29" + "offset": 5691, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 6879, - "length": 2, - "value": "30" + "offset": 1656, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7031, - "length": 2, - "value": "31" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7190, - "length": 2, - "value": "32" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7337, - "length": 2, - "value": "33" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7600, + "offset": 1837, "length": 4, - "value": "9001" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7719, + "offset": 1911, "length": 4, - "value": "9002" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 7843, + "offset": 1948, "length": 4, - "value": "9004" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8073, - "length": 2, - "value": "91" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8182, - "length": 2, - "value": "92" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8296, - "length": 2, - "value": "94" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8476, - "length": 2, - "value": "95" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8576, - "length": 2, - "value": "96" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8712, - "length": 2, - "value": "97" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8821, + "offset": 1656, "length": 3, - "value": "101" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 8919, - "length": 3, - "value": "102" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9210, - "length": 3, - "value": "103" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9602, - "length": 3, - "value": "104" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9723, - "length": 3, - "value": "201" + "offset": 1837, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9825, - "length": 3, - "value": "202" + "offset": 1911, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 9916, - "length": 3, - "value": "203" + "offset": 1948, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10006, - "length": 3, - "value": "301" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10163, - "length": 3, - "value": "302" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10270, - "length": 3, - "value": "303" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10375, - "length": 3, - "value": "304" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10472, - "length": 3, - "value": "305" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10580, - "length": 3, - "value": "306" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10676, + "offset": 1656, "length": 3, - "value": "307" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 10848, - "length": 3, - "value": "308" + "offset": 1726, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11006, - "length": 3, - "value": "309" + "offset": 1763, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11188, - "length": 3, - "value": "500" + "offset": 1800, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11874, - "length": 8, - "value": "1" + "offset": 1837, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11949, - "length": 15, - "value": "2" + "offset": 1911, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12021, - "length": 9, - "value": "3" + "offset": 1948, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12129, - "length": 10, - "value": "4" + "offset": 2018, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12216, - "length": 13, - "value": "5" + "offset": 2088, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12290, - "length": 9, - "value": "6" + "offset": 2158, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12344, - "length": 7, - "value": "7" + "offset": 2228, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11874, - "length": 8, - "value": "1" + "offset": 2298, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11949, - "length": 15, - "value": "2" + "offset": 2335, + "length": 4, + "value": "0x60" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12021, - "length": 9, - "value": "3" + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12129, - "length": 10, - "value": "4" + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12216, - "length": 13, - "value": "5" + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12290, - "length": 9, - "value": "6" + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 12344, - "length": 7, - "value": "7" + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1611, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1637, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1678, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", - "kind": "BooleanLiteral", - "offset": 1705, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "FloatLiteral", - "offset": 11636, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, "length": 4, - "value": "30.0" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 11665, - "length": 1, - "value": "5" + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "BooleanLiteral", - "offset": 12125, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12175, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12261, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "Array", - "offset": 12317, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTAuthenticationInterceptor.swift", - "kind": "StringLiteral", - "offset": 12607, - "length": 40, - "value": "\"org.alamofire.authentication.inspector\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 55, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 1, - "value": "\".ZTSegmentsData\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 398, - "length": 1, - "value": "0" + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1054, - "length": 1, - "value": "0" + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1116, - "length": 1, - "value": "0" + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1353, - "length": 1, - "value": "0" + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 9, - "value": "\"STARTED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 345, - "length": 10, - "value": "\"COMPLETE\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 447, - "length": 12, - "value": "\"PROCESSING\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 503, - "length": 9, - "value": "\"ERRORED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 9, - "value": "\"STARTED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 345, - "length": 10, - "value": "\"COMPLETE\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 447, - "length": 12, - "value": "\"PROCESSING\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3401, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 503, - "length": 9, - "value": "\"ERRORED\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 632, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3475, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 673, - "length": 5, - "value": "\"N\/A\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3512, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", - "kind": "StringLiteral", - "offset": 723, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3549, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3586, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 17, - "value": "\"ZTCoreKit.BaseDFUPeripheral\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3623, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22025, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3660, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22235, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3697, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22501, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3734, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/GenericDFU\/DFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 22780, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 3771, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 973, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1627, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1892, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 1961, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5144, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 46, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5168, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2042, - "length": 1, - "value": "\".Queue\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2079, - "length": 45, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5497, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 2118, - "length": 1, - "value": "\".UUID\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 2155, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "BooleanLiteral", - "offset": 3637, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5497, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTBleManager.swift", - "kind": "StringLiteral", - "offset": 499, - "length": 12, - "value": "\"ZTCoreKit.ZTBleManager\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 5525, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, + "offset": 5469, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 5497, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 5525, "length": 4, - "value": "0x03" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, - "length": 4, - "value": "0x04" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9813, "length": 4, - "value": "0x05" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 9851, "length": 4, - "value": "0x06" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 9889, "length": 4, - "value": "0x07" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 9927, "length": 4, - "value": "0x08" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 976, + "offset": 9965, "length": 4, - "value": "0x09" + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10003, "length": 4, - "value": "0x0A" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1134, + "offset": 10041, "length": 4, - "value": "0x0B" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 10079, "length": 4, - "value": "0x0C" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1285, + "offset": 10117, "length": 4, - "value": "0x0D" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 10155, "length": 4, - "value": "0x0E" + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, - "length": 4, - "value": "0x00" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 9813, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 9851, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "IntegerLiteral", + "offset": 9889, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, + "offset": 9927, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9965, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 10003, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 10041, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 10079, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 976, - "length": 4, - "value": "0x09" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10117, "length": 4, "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1134, + "offset": 10155, "length": 4, "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1210, - "length": 4, - "value": "0x0C" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", - "kind": "IntegerLiteral", - "offset": 1285, - "length": 4, - "value": "0x0D" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1354, - "length": 4, - "value": "0x0E" + "offset": 9776, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 238, + "offset": 9813, "length": 4, - "value": "0x00" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 341, + "offset": 9851, "length": 4, - "value": "0x01" + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 409, + "offset": 9889, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 479, + "offset": 9927, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 596, + "offset": 9965, "length": 4, "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 697, + "offset": 10003, "length": 4, "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 840, + "offset": 10041, "length": 4, "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 905, + "offset": 10079, "length": 4, "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 976, + "offset": 10117, "length": 4, - "value": "0x09" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", "kind": "IntegerLiteral", - "offset": 1052, + "offset": 10155, "length": 4, - "value": "0x0A" + "value": "0x0B" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/SecureDFUControlPoint.swift", + "kind": "StringLiteral", + "offset": 16773, + "length": 21, + "value": "\"ZTCoreKit.SecureDFUControlPoint\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1134, - "length": 4, - "value": "0x0B" + "offset": 295, + "length": 3, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 337, "length": 4, - "value": "0x0C" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1285, + "offset": 295, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "kind": "IntegerLiteral", + "offset": 337, "length": 4, - "value": "0x0D" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 295, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "kind": "IntegerLiteral", + "offset": 337, "length": 4, - "value": "0x0E" + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUVersion.swift", + "kind": "StringLiteral", + "offset": 1684, + "length": 10, + "value": "\"ZTCoreKit.DFUVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", "kind": "Array", - "offset": 417, + "offset": 453, "length": 25, "value": "[401, 429, 502, 503, 504]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiServiceInterceptor.swift", "kind": "BooleanLiteral", - "offset": 473, + "offset": 509, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", - "kind": "StringLiteral", - "offset": 185, - "length": 20, - "value": "\"arrayParametersKey\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "BooleanLiteral", + "offset": 279, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTArrayEncoding.swift", - "kind": "Array", - "offset": 799, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "IntegerLiteral", + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 201, - "length": 4, - "value": "0x01" + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 201, - "length": 4, - "value": "0x01" + "offset": 2312, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", "kind": "IntegerLiteral", - "offset": 174, - "length": 4, - "value": "0x00" + "offset": 2331, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoModeEnum.swift", - "kind": "IntegerLiteral", - "offset": 201, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2412, "length": 4, - "value": "0x01" + "value": "\"4C\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2434, + "length": 4, + "value": "\"52\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 337, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2412, "length": 4, - "value": "2" + "value": "\"4C\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", - "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Helpers\/ZTHelpers.swift", + "kind": "StringLiteral", + "offset": 2434, + "length": 4, + "value": "\"52\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 337, - "length": 4, - "value": "2" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 295, - "length": 3, - "value": "1" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSamplingMode.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 337, - "length": 4, - "value": "2" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, - "value": "1" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, - "value": "2" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, - "value": "3" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, - "value": "4" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, - "value": "5" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, - "value": "6" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, - "value": "1" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, - "value": "2" + "offset": 1753, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, - "value": "3" + "offset": 1853, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, - "value": "4" + "offset": 1957, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, - "value": "5" + "offset": 2055, + "length": 2, + "value": "90" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, - "value": "6" + "offset": 2182, + "length": 4, + "value": "9000" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 189, - "length": 11, + "offset": 2859, + "length": 1, "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 210, - "length": 13, + "offset": 2960, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 233, - "length": 12, + "offset": 3056, + "length": 1, "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 255, - "length": 14, + "offset": 3147, + "length": 1, "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 279, - "length": 9, + "offset": 3229, + "length": 1, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 298, - "length": 5, + "offset": 3327, + "length": 1, "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 333, - "length": 11, - "value": "\"updatable\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3513, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 370, - "length": 5, - "value": "\"sid\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3618, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 401, - "length": 5, - "value": "\"url\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3706, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 433, - "length": 6, - "value": "\"type\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3844, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 6, - "value": "\"arch\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3936, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "StringLiteral", - "offset": 502, - "length": 9, - "value": "\"version\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4036, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", - "kind": "BooleanLiteral", - "offset": 569, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4138, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2504, - "length": 13, - "value": "\"application\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4245, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2554, - "length": 23, - "value": "\"softdevice_bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4354, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2604, - "length": 12, - "value": "\"softdevice\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 4633, + "length": 2, + "value": "21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2643, - "length": 12, - "value": "\"bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5001, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2504, - "length": 13, - "value": "\"application\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5149, + "length": 2, + "value": "23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2554, - "length": 23, - "value": "\"softdevice_bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5481, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2604, - "length": 12, - "value": "\"softdevice\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 5829, + "length": 2, + "value": "25" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", - "kind": "StringLiteral", - "offset": 2643, - "length": 12, - "value": "\"bootloader\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6091, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "Dictionary", - "offset": 1576, - "length": 3, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6370, + "length": 2, + "value": "27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1621, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6640, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1737, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6806, + "length": 2, + "value": "29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "StringLiteral", - "offset": 1798, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 6934, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 1874, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7086, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 2164, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7245, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 2232, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7392, + "length": 2, + "value": "33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "StringLiteral", - "offset": 3812, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7663, + "length": 4, + "value": "9001" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMap.swift", - "kind": "BooleanLiteral", - "offset": 3835, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 7782, + "length": 4, + "value": "9002" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 7906, + "length": 4, + "value": "9004" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8144, + "length": 2, + "value": "91" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 8253, + "length": 2, + "value": "92" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8367, + "length": 2, + "value": "94" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 774, - "length": 9, - "value": "1" + "offset": 8547, + "length": 2, + "value": "95" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 828, - "length": 7, - "value": "2" + "offset": 8647, + "length": 2, + "value": "96" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 8783, + "length": 2, + "value": "97" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 8896, + "length": 3, + "value": "101" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 8994, + "length": 3, + "value": "102" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 9295, + "length": 3, + "value": "103" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 9705, + "length": 3, + "value": "104" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 9830, + "length": 3, + "value": "201" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 9932, + "length": 3, + "value": "202" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 10023, + "length": 3, + "value": "203" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1075, - "length": 1, - "value": "0" + "offset": 10113, + "length": 3, + "value": "301" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1093, - "length": 1, - "value": "3" + "offset": 10270, + "length": 3, + "value": "302" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1110, - "length": 2, - "value": "19" + "offset": 10377, + "length": 3, + "value": "303" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1131, - "length": 2, - "value": "20" + "offset": 10482, + "length": 3, + "value": "304" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1607, - "length": 2, - "value": "30" + "offset": 10579, + "length": 3, + "value": "305" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1916, - "length": 2, - "value": "16" + "offset": 10687, + "length": 3, + "value": "306" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTEntry.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 2622, - "length": 2, - "value": "46" + "offset": 10783, + "length": 3, + "value": "307" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTMediaFileTemplate.swift", - "kind": "StringLiteral", - "offset": 310, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 10982, + "length": 3, + "value": "308" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "StringLiteral", - "offset": 1367, - "length": 26, - "value": "\"Sec-WebSocket-Extensions\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 11168, + "length": 3, + "value": "309" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 1491, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 11366, + "length": 3, + "value": "500" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 1524, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 2859, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 3451, + "offset": 2960, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 3461, - "length": 6, - "value": "0x2000" + "offset": 3056, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 3504, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3147, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 5784, + "offset": 3229, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 5794, - "length": 6, - "value": "0x2000" + "offset": 3327, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Compression\/ZTWSCompression.swift", - "kind": "BooleanLiteral", - "offset": 5837, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3513, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", - "kind": "StringLiteral", - "offset": 318, - "length": 32, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3618, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTNetworkLogger.swift", - "kind": "StringLiteral", - "offset": 335, - "length": 1, - "value": "\".networklogger\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 3706, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 947, - "length": 4, - "value": "0x80" + "offset": 3844, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 984, - "length": 4, - "value": "0x0F" + "offset": 3936, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1021, - "length": 4, - "value": "0x70" + "offset": 4036, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1058, - "length": 4, - "value": "0x40" + "offset": 4138, + "length": 2, + "value": "17" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1095, - "length": 4, - "value": "0x80" + "offset": 4245, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1132, - "length": 4, - "value": "0x7F" + "offset": 4354, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1169, + "offset": 4633, "length": 2, - "value": "32" + "value": "21" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 5001, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 5149, + "length": 2, + "value": "23" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 5481, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 5829, + "length": 2, + "value": "25" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, - "length": 4, - "value": "1005" + "offset": 6091, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, - "length": 4, - "value": "1007" + "offset": 6370, + "length": 2, + "value": "27" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, - "length": 4, - "value": "1008" + "offset": 6640, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 6806, + "length": 2, + "value": "29" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 6934, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 7086, + "length": 2, + "value": "31" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 7245, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 7392, + "length": 2, + "value": "33" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, + "offset": 7663, "length": 4, - "value": "1005" + "value": "9001" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, + "offset": 7782, "length": 4, - "value": "1007" + "value": "9002" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, + "offset": 7906, "length": 4, - "value": "1008" + "value": "9004" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 8144, + "length": 2, + "value": "91" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1268, - "length": 4, - "value": "1000" + "offset": 8253, + "length": 2, + "value": "92" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1305, - "length": 4, - "value": "1001" + "offset": 8367, + "length": 2, + "value": "94" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1342, - "length": 4, - "value": "1002" + "offset": 8547, + "length": 2, + "value": "95" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1379, - "length": 4, - "value": "1003" + "offset": 8647, + "length": 2, + "value": "96" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1436, - "length": 4, - "value": "1005" + "offset": 8783, + "length": 2, + "value": "97" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1493, - "length": 4, - "value": "1007" + "offset": 8896, + "length": 3, + "value": "101" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1530, - "length": 4, - "value": "1008" + "offset": 8994, + "length": 3, + "value": "102" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1567, - "length": 4, - "value": "1009" + "offset": 9295, + "length": 3, + "value": "103" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, + "offset": 9705, "length": 3, - "value": "0x0" + "value": "104" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 9830, "length": 3, - "value": "0x1" + "value": "201" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 9932, "length": 3, - "value": "0x2" + "value": "202" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, + "offset": 10023, "length": 3, - "value": "0x8" + "value": "203" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 10113, "length": 3, - "value": "0x9" + "value": "301" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, + "offset": 10270, "length": 3, - "value": "0xA" + "value": "302" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 10377, "length": 3, - "value": "100" + "value": "303" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, + "offset": 10482, "length": 3, - "value": "0x0" + "value": "304" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, + "offset": 10579, "length": 3, - "value": "0x1" + "value": "305" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 10687, "length": 3, - "value": "0x2" + "value": "306" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, + "offset": 10783, "length": 3, - "value": "0x8" + "value": "307" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, + "offset": 10982, "length": 3, - "value": "0x9" + "value": "308" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, + "offset": 11168, "length": 3, - "value": "0xA" + "value": "309" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, + "offset": 11366, "length": 3, - "value": "100" + "value": "500" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1626, - "length": 3, - "value": "0x0" + "offset": 12066, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1649, - "length": 3, - "value": "0x1" + "offset": 12141, + "length": 15, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1674, - "length": 3, - "value": "0x2" + "offset": 12213, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1726, - "length": 3, - "value": "0x8" + "offset": 12321, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1744, - "length": 3, - "value": "0x9" + "offset": 12408, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1762, - "length": 3, - "value": "0xA" + "offset": 12482, + "length": 9, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1802, - "length": 3, - "value": "100" + "offset": 12536, + "length": 7, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "StringLiteral", - "offset": 2524, - "length": 31, - "value": "\"com.vluxe.starscream.wsframer\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12066, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "Array", - "offset": 2569, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12141, + "length": 15, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "BooleanLiteral", - "offset": 2680, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12213, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFramer.swift", - "kind": "BooleanLiteral", - "offset": 2740, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12321, + "length": 10, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTRequestChain.swift", - "kind": "Array", - "offset": 436, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", + "kind": "IntegerLiteral", + "offset": 12408, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1657, - "length": 1, - "value": "1" + "offset": 12482, + "length": 9, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUServiceDelegate.swift", "kind": "IntegerLiteral", - "offset": 1694, - "length": 1, - "value": "1" + "offset": 12536, + "length": 7, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1742, - "length": 1, - "value": "0" + "offset": 1731, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/Streams\/DFUStreamBin.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1918, - "length": 1, - "value": "0" + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTSegmentData+Save.swift", - "kind": "BooleanLiteral", - "offset": 3796, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTFileManager+ZIP.swift", - "kind": "BooleanLiteral", - "offset": 1855, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1731, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTFileManager+ZIP.swift", - "kind": "BooleanLiteral", - "offset": 5527, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 534, - "length": 1, - "value": "0" + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 597, - "length": 1, - "value": "0" + "offset": 1731, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 783, - "length": 1, - "value": "0" + "offset": 1850, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 835, - "length": 1, - "value": "0" + "offset": 1909, + "length": 4, + "value": "0x20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2693, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 974, - "length": 1, - "value": "1" + "offset": 2803, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Security\/ZTSecurity.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", "kind": "IntegerLiteral", - "offset": 1001, - "length": 1, - "value": "2" + "offset": 2900, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", - "kind": "BooleanLiteral", - "offset": 240, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", - "kind": "BooleanLiteral", - "offset": 274, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTURLTransform.swift", - "kind": "BooleanLiteral", - "offset": 1794, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/crc32.swift", - "kind": "Array", - "offset": 1142, - "length": 3283, - "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2693, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTAuthManager.swift", - "kind": "BooleanLiteral", - "offset": 2062, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2803, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 1585, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 1769, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2398, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 11873, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2474, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 12156, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2539, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMapper.swift", - "kind": "BooleanLiteral", - "offset": 14664, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2693, + "length": 4, + "value": "0x05" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2803, + "length": 4, + "value": "0x06" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "IntegerLiteral", + "offset": 2900, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Characteristics\/ButtonlessDFU.swift", + "kind": "StringLiteral", + "offset": 5445, + "length": 13, + "value": "\"ZTCoreKit.ButtonlessDFU\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 311, "length": 4, "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 402, "length": 4, "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 488, "length": 4, "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 572, "length": 4, "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 650, "length": 4, "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTChunkSendStatusMessage.swift", "kind": "IntegerLiteral", "offset": 678, "length": 4, "value": "0xFF" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTMediaUploader.swift", - "kind": "Array", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTApiService.swift", + "kind": "BooleanLiteral", + "offset": 3527, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1609, + "length": 28, + "value": "\"yyyy-MM-dd'T'HH:mm:ssZZZZZ\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1647, + "length": 13, + "value": "\"en_US_POSIX\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "kind": "StringLiteral", + "offset": 1492, + "length": 22, + "value": "\"ZTCoreKit.ZTISO8601DateTransform\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", "offset": 279, - "length": 2, - "value": "[]" + "length": 9, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 524, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 601, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, + "value": "5" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, "length": 5, - "value": "false" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", "kind": "IntegerLiteral", - "offset": 798, - "length": 1, + "offset": 189, + "length": 11, + "value": "1" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 13, + "value": "2" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 12, + "value": "3" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 14, + "value": "4" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 279, + "length": 9, "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "FloatLiteral", - "offset": 858, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTDFUState.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 5, + "value": "6" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "kind": "StringLiteral", + "offset": 833, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTFirmwareRevision.swift", "kind": "IntegerLiteral", - "offset": 907, + "offset": 1084, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 960, - "length": 2, - "value": "\"\"" + "offset": 2546, + "length": 13, + "value": "\"application\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1503, - "length": 9, - "value": "\"Unknown\"" + "offset": 2596, + "length": 23, + "value": "\"softdevice_bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1585, - "length": 9, - "value": "\"Unknown\"" + "offset": 2646, + "length": 12, + "value": "\"softdevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1623, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "offset": 2685, + "length": 12, + "value": "\"bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1667, - "length": 9, - "value": "\"Unknown\"" + "offset": 2546, + "length": 13, + "value": "\"application\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1748, - "length": 9, - "value": "\"Unknown\"" + "offset": 2596, + "length": 23, + "value": "\"softdevice_bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1793, - "length": 54, - "value": "\"\"" + "offset": 2646, + "length": 12, + "value": "\"softdevice\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/DFUPackage\/Manifest\/Manifest.swift", "kind": "StringLiteral", - "offset": 1816, - "length": 1, - "value": "\" \"" + "offset": 2685, + "length": 12, + "value": "\"bootloader\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 1846, - "length": 1, - "value": "\"\"" + "offset": 428, + "length": 10, + "value": "\"Database\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "IntegerLiteral", - "offset": 2029, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 492, + "length": 6, + "value": "\"momd\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2111, - "length": 210, + "offset": 993, + "length": 46, + "value": "\"Failed to find model URL in framework bundle\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 1150, + "length": 47, + "value": "\"Failed to create model from file: \"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", + "kind": "StringLiteral", + "offset": 1196, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2125, - "length": 1, - "value": "\"\/\"" + "offset": 1436, + "length": 27, + "value": "\"Unresolved error \"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Database\/ZTCoreDataStack.swift", "kind": "StringLiteral", - "offset": 2139, + "offset": 1462, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1733, "length": 1, - "value": "\" (\"" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2157, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1826, "length": 1, - "value": "\"; \"" + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2168, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1912, "length": 1, - "value": "\"; build:\"" + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2187, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1999, "length": 1, - "value": "\"; model:\"" + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2210, - "length": 5, - "value": "\"n\/a\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2071, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2216, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2158, "length": 1, - "value": "\"; brand:Apple) SDK: \"" + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2263, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2244, "length": 1, - "value": "\"\/\"" + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2281, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2320, "length": 1, - "value": "\"-\"" + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2319, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2403, "length": 1, - "value": "\";\"" + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2339, - "length": 8, - "value": "\"ZTCore\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2608, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2591, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2614, - "length": 27, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1912, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2628, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 1999, "length": 1, - "value": "\".\"" + "value": "3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2640, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2071, "length": 1, - "value": "\"\"" + "value": "4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 2659, - "length": 8, - "value": "\"ZTCore\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2158, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 37254, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2244, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 39015, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2320, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "Array", - "offset": 41051, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2403, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 48973, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2507, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 50329, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", + "kind": "IntegerLiteral", + "offset": 2608, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/DFUUuidHelper.swift", "kind": "StringLiteral", - "offset": 50782, - "length": 2, - "value": "\"\"" + "offset": 2654, + "length": 7, + "value": "\"ZTCoreKit.DFUUuid\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "StringLiteral", - "offset": 51214, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Peripherals\/LegacyDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 1706, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", "kind": "StringLiteral", - "offset": 51928, - "length": 2, - "value": "\"\"" + "offset": 2272, + "length": 24, + "value": "\"ZTCore.log.notifcation\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTLogger.swift", "kind": "StringLiteral", - "offset": 51952, - "length": 2, - "value": "\"\"" + "offset": 2370, + "length": 29, + "value": "\"ZTCore.log.notification.ble\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 64138, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTNetworkManager.swift", - "kind": "BooleanLiteral", - "offset": 64158, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 1376, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 11923, - "length": 25, - "value": "[\"br\", \"gzip\", \"deflate\"]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "Array", - "offset": 11990, - "length": 19, - "value": "[\"gzip\", \"deflate\"]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", "kind": "IntegerLiteral", - "offset": 12468, - "length": 1, - "value": "6" + "offset": 403, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 12910, - "length": 20, - "value": "\"CFBundleExecutable\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13018, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 228, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 298, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 333, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 438, + "length": 4, + "value": "0x0F" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoAcknowledgmentStatusEnum.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 4, + "value": "0xEE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, "length": 3, - "value": "\"\/\"" + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13061, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13098, - "length": 20, - "value": "\"CFBundleIdentifier\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13134, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13175, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13219, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13258, - "length": 17, - "value": "\"CFBundleVersion\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13291, - "length": 9, - "value": "\"Unknown\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13445, - "length": 73, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13469, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13493, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 3, + "value": "0x0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13517, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 3, + "value": "0x2" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 13719, - "length": 5, - "value": "\"iOS\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "0x3" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", - "kind": "StringLiteral", - "offset": 14193, - "length": 28, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 336, + "length": 3, + "value": "0x4" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTSportModeEnum.swift", + "kind": "IntegerLiteral", + "offset": 362, + "length": 4, + "value": "0x10" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14203, - "length": 1, - "value": "\" \"" + "offset": 288, + "length": 9, + "value": "\"STARTED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14220, - "length": 1, - "value": "\"\"" + "offset": 345, + "length": 10, + "value": "\"COMPLETE\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14266, - "length": 22, - "value": "\"Alamofire\/\"" + "offset": 447, + "length": 12, + "value": "\"PROCESSING\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14287, - "length": 1, - "value": "\"\"" + "offset": 503, + "length": 9, + "value": "\"ERRORED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14314, - "length": 98, - "value": "\"\"" + "offset": 288, + "length": 9, + "value": "\"STARTED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14328, - "length": 1, - "value": "\"\/\"" + "offset": 345, + "length": 10, + "value": "\"COMPLETE\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14342, - "length": 1, - "value": "\" (\"" + "offset": 447, + "length": 12, + "value": "\"PROCESSING\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14353, - "length": 1, - "value": "\"; build:\"" + "offset": 503, + "length": 9, + "value": "\"ERRORED\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14372, - "length": 1, - "value": "\"; \"" + "offset": 632, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14390, - "length": 1, - "value": "\") \"" + "offset": 673, + "length": 5, + "value": "\"N\/A\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTHTTPHeaders.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTActivitySummary.swift", "kind": "StringLiteral", - "offset": 14411, - "length": 1, + "offset": 723, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "offset": 534, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "offset": 597, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "offset": 783, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/PrimaryService\/Data\/ZTMessageActivityMetadata.swift", "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" + "offset": 836, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1637, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1678, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 224, - "length": 3, - "value": "0x0" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTHexColorTransform.swift", + "kind": "BooleanLiteral", + "offset": 1705, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 252, - "length": 3, - "value": "0x1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTReachability.swift", + "kind": "BooleanLiteral", + "offset": 1993, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 280, - "length": 3, - "value": "0x2" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", + "kind": "BooleanLiteral", + "offset": 240, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTActivityLastStopReason.swift", - "kind": "IntegerLiteral", - "offset": 308, - "length": 3, - "value": "0x3" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTUpdateFirmwareResponse.swift", + "kind": "BooleanLiteral", + "offset": 274, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "StringLiteral", - "offset": 1609, - "length": 28, - "value": "\"yyyy-MM-dd'T'HH:mm:ssZZZZZ\"" + "offset": 305, + "length": 30, + "value": "\"com.zhortech.ztcore.activity\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", - "kind": "StringLiteral", - "offset": 1647, - "length": 13, - "value": "\"en_US_POSIX\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", + "kind": "Array", + "offset": 1390, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTISO8601DateTransform.swift", - "kind": "StringLiteral", - "offset": 1492, - "length": 22, - "value": "\"ZTCoreKit.ZTISO8601DateTransform\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", + "kind": "Array", + "offset": 1459, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "IntegerLiteral", - "offset": 1357, + "offset": 7297, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTActivity.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 7317, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1357, - "length": 1, - "value": "1" + "offset": 1668, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 1900, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1357, + "offset": 2086, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTObjectMapper.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUPacket.swift", "kind": "IntegerLiteral", - "offset": 1394, + "offset": 2180, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/ZTReachability.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", "kind": "BooleanLiteral", - "offset": 1993, - "length": 5, - "value": "false" + "offset": 573, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", + "kind": "BooleanLiteral", + "offset": 1790, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, - "length": 5, - "value": "1000" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/BLE\/ZTCore+DFU.swift", + "kind": "BooleanLiteral", + "offset": 10038, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 333, + "length": 11, + "value": "\"updatable\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 370, "length": 5, - "value": "1000" + "value": "\"sid\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1461, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 401, + "length": 5, + "value": "\"url\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTDateTransform.swift", - "kind": "IntegerLiteral", - "offset": 1485, - "length": 5, - "value": "1000" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 6, + "value": "\"type\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", - "kind": "BooleanLiteral", - "offset": 2933, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 466, + "length": 6, + "value": "\"arch\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", - "kind": "BooleanLiteral", - "offset": 3694, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 9, + "value": "\"version\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Networking\/Models\/ZTConnectResponse.swift", "kind": "BooleanLiteral", - "offset": 4495, + "offset": 569, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "BooleanLiteral", - "offset": 14563, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Utilities\/crc32.swift", "kind": "Array", - "offset": 17637, - "length": 2, - "value": "[]" + "offset": 1142, + "length": 3281, + "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", "kind": "BooleanLiteral", - "offset": 26709, - "length": 4, - "value": "true" + "offset": 2553, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", "kind": "IntegerLiteral", - "offset": 31004, + "offset": 12379, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37719, - "length": 7, - "value": "\":#[]@\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 14368, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37820, - "length": 13, - "value": "\"!$&'()*+,;=\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/SecureDFU\/Peripheral\/SecureDFUPeripheral.swift", + "kind": "BooleanLiteral", + "offset": 14434, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", "kind": "StringLiteral", - "offset": 37891, - "length": 54, + "offset": 541, + "length": 55, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", "kind": "StringLiteral", - "offset": 37920, + "offset": 580, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTURLEncodedFormEncoder.swift", - "kind": "StringLiteral", - "offset": 37944, - "length": 2, - "value": "\"\"" + "value": "\".ZTSegmentsData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", - "kind": "Array", - "offset": 5684, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Activity\/ZTPacket.swift", + "kind": "BooleanLiteral", + "offset": 8629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 6545, + "offset": 5720, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 7222, + "offset": 6581, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTApi.swift", "kind": "Array", - "offset": 5141, + "offset": 7258, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5302, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "kind": "BooleanLiteral", + "offset": 2933, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", "kind": "BooleanLiteral", - "offset": 5412, + "offset": 3694, "length": 5, "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5623, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTObjectMapper\/ZTMappable.swift", + "kind": "BooleanLiteral", + "offset": 4495, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5741, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 5941, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 6036, - "length": 1, - "value": "0" + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "BooleanLiteral", - "offset": 6379, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 597, + "length": 4, + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 7652, - "length": 1, - "value": "0" + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 9232, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "StringLiteral", - "offset": 40931, - "length": 13, - "value": "\"ZTCoreKit.ZTDataRequest\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 597, + "length": 4, + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 47949, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 531, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 48116, - "length": 1, - "value": "0" + "offset": 553, + "length": 4, + "value": "0x4C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 48236, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 4, + "value": "0x52" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessage.swift", "kind": "IntegerLiteral", - "offset": 52978, + "offset": 597, "length": 4, - "value": "1024" + "value": "0x9E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 45127, - "length": 19, - "value": "\"ZTCoreKit.ZTDataStreamRequest\"" + "offset": 213, + "length": 13, + "value": "\"ZTCoreKit.ZTDefaultsKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56284, - "length": 1, - "value": "1" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 426, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56289, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 465, "length": 1, - "value": "0" + "value": "\".ZTApiKey\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56441, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 52, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 565, "length": 1, - "value": "1" + "value": "\".ZTApiSecret\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "IntegerLiteral", - "offset": 56446, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 625, + "length": 48, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 664, "length": 1, - "value": "1" + "value": "\".ZTAppId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 58233, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", - "kind": "Array", - "offset": 58951, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 1, + "value": "\".ZTOrgCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 59181, - "length": 36, - "value": "\"Alamofire_\"" + "offset": 821, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 59216, + "offset": 860, "length": 1, + "value": "\".ZTAppType\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 923, + "length": 52, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 55919, - "length": 17, - "value": "\"ZTCoreKit.ZTDownloadRequest\"" + "offset": 962, + "length": 1, + "value": "\".ZTAuthToken\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTRequest.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 69086, - "length": 15, - "value": "\"ZTCoreKit.ZTUploadRequest\"" + "offset": 1029, + "length": 55, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Reading.swift", - "kind": "BooleanLiteral", - "offset": 1165, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1068, + "length": 1, + "value": "\".ZTRefreshToken\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTZIPFoundation\/ZTArchive+Reading.swift", - "kind": "BooleanLiteral", - "offset": 4413, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1135, + "length": 54, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 606, - "length": 24, - "value": "\"com.zhortech.ZTCoreKit\"" + "offset": 1174, + "length": 1, + "value": "\".ZTTokenExpire\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 651, - "length": 11, - "value": "\"ZTCoreKit\"" + "offset": 1241, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 689, - "length": 4, - "value": "\"v1\"" + "offset": 1280, + "length": 1, + "value": "\".ZTAppUserId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 743, - "length": 7, - "value": "\"1.3.2\"" + "offset": 1346, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 797, - "length": 5, - "value": "\"1.0\"" + "offset": 1385, + "length": 1, + "value": "\".ZTChunkDuration\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 3096, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4215, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1492, "length": 1, - "value": "2" + "value": "\".ZTAuthData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4279, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 63, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1609, "length": 1, - "value": "0" + "value": "\".lastDeviceSerialNumber\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4332, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1690, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1729, "length": 1, - "value": "0" + "value": "\".lastActivityId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 4502, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1804, + "length": 57, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1843, "length": 1, - "value": "0" + "value": "\".lastDeviceQRCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 5008, - "length": 4, - "value": "true" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1914, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 1953, + "length": 1, + "value": "\".lastQRCode\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 6301, - "length": 14, - "value": "\"3.1.0.PS.0.0\"" + "offset": 2053, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 6392, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2092, + "length": 1, + "value": "\".startAppVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 6497, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2159, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 6828, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2198, + "length": 1, + "value": "\".deviceId\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 6980, - "length": 2, - "value": "60" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2263, + "length": 54, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 9479, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 1, + "value": "\".pairingMethod\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 10328, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2370, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 11362, - "length": 2, - "value": "15" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2409, + "length": 1, + "value": "\".pairingDate\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 12680, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2518, "length": 1, - "value": "5" + "value": "\".startFwVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "BooleanLiteral", - "offset": 12697, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2588, + "length": 52, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 15423, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 1, + "value": "\".startFwType\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTCore.swift", - "kind": "IntegerLiteral", - "offset": 16447, - "length": 2, - "value": "20" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2692, + "length": 50, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Characteristics\/DFUVersion.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1684, - "length": 10, - "value": "\"ZTCoreKit.DFUVersion\"" + "offset": 2731, + "length": 1, + "value": "\".fwVersion\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1220, - "length": 32, - "value": "\"com.vluxe.starscream.websocket\"" + "offset": 2791, + "length": 47, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "Array", - "offset": 1266, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2830, + "length": 1, + "value": "\".fwType\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "BooleanLiteral", - "offset": 1375, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2891, + "length": 53, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "BooleanLiteral", - "offset": 1467, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 2930, + "length": 1, + "value": "\".wasDfuCopied\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", - "kind": "IntegerLiteral", - "offset": 1823, - "length": 2, - "value": "10" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", + "kind": "StringLiteral", + "offset": 3000, + "length": 59, + "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Transport\/ZTFoundationTransport.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTDefaults.swift", "kind": "StringLiteral", - "offset": 1057, - "length": 21, - "value": "\"ZTCoreKit.ZTFoundationTransport\"" + "offset": 3039, + "length": 1, + "value": "\".ZTIsStorageUpdated\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1481, "length": 39, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1506, "length": 1, "value": "\".SavedDevices\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1622, "length": 40, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1647, "length": 1, "value": "\".SavedRequests\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1773, "length": 47, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1798, "length": 1, "value": "\".ActivityAppDataStore\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1946, "length": 43, "value": "\"\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "StringLiteral", "offset": 1971, "length": 1, "value": "\".ManufacturerData\"" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/ZTDataManager.swift", "kind": "IntegerLiteral", "offset": 2031, "length": 1, "value": "0" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1383, - "length": 1, - "value": "0" + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", - "kind": "BooleanLiteral", - "offset": 1402, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Framer\/ZTFrameCollector.swift", - "kind": "BooleanLiteral", - "offset": 1492, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, + "length": 4, + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1067, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, "length": 4, - "value": "true" + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1148, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1279, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 697, "length": 4, - "value": "true" + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1403, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, "length": 4, - "value": "true" + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 1751, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, "length": 4, - "value": "true" + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 1863, - "length": 1, - "value": "3" + "offset": 976, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2026, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, + "length": 4, + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2143, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2263, - "length": 2, - "value": "50" + "offset": 1210, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2371, - "length": 1, - "value": "3" + "offset": 1285, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 2562, + "offset": 1354, "length": 4, - "value": "1200" + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2691, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2820, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, "length": 4, - "value": "true" + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 2958, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, "length": 4, - "value": "true" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", - "kind": "BooleanLiteral", - "offset": 3068, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 4, + "value": "0x04" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 3169, - "length": 2, - "value": "50" + "offset": 596, + "length": 4, + "value": "0x05" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTSettings.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 4069, - "length": 2, - "value": "20" + "offset": 697, + "length": 4, + "value": "0x06" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTiOSDFULibrary\/Implementation\/LegacyDFU\/Peripherals\/LegacyDFUPeripheral.swift", - "kind": "BooleanLiteral", - "offset": 1731, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 4, + "value": "0x07" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "StringLiteral", - "offset": 1385, - "length": 43, - "value": "\"com.vluxe.starscream.server.networkstream\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "0x08" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "Array", - "offset": 1442, - "length": 2, - "value": "[]" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 976, + "length": 4, + "value": "0x09" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "BooleanLiteral", - "offset": 3070, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, "length": 4, - "value": "true" + "value": "0x0A" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Server\/ZTWebSocketServer.swift", - "kind": "BooleanLiteral", - "offset": 3155, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 668, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1210, + "length": 4, + "value": "0x0C" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "StringLiteral", - "offset": 702, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1285, + "length": 4, + "value": "0x0D" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "StringLiteral", - "offset": 753, - "length": 33, - "value": "\"com.vluxe.starscream.writequeue\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1354, + "length": 4, + "value": "0x0E" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", "kind": "IntegerLiteral", - "offset": 835, - "length": 1, - "value": "1" + "offset": 238, + "length": 4, + "value": "0x00" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 862, - "length": 5, - "value": "false" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 4, + "value": "0x01" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTWebSocket\/Engine\/ZTWSEngine.swift", - "kind": "BooleanLiteral", - "offset": 944, + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 409, "length": 4, - "value": "true" + "value": "0x03" }, { - "filePath": "\/Users\/charlymr\/Repositories\/Zhortech\/ztcorekit\/Sources\/ZTCoreKit\/ZTAlamofire\/ZTEventMonitor.swift", - "kind": "StringLiteral", - "offset": 17719, - "length": 37, - "value": "\"org.alamofire.compositeEventMonitor\"" + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 4, + "value": "0x04" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 4, + "value": "0x05" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 4, + "value": "0x06" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 4, + "value": "0x07" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 4, + "value": "0x08" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 976, + "length": 4, + "value": "0x09" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1052, + "length": 4, + "value": "0x0A" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1134, + "length": 4, + "value": "0x0B" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1210, + "length": 4, + "value": "0x0C" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1285, + "length": 4, + "value": "0x0D" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/ZTAlgo\/ZTAlgoCommandEnum.swift", + "kind": "IntegerLiteral", + "offset": 1354, + "length": 4, + "value": "0x0E" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 284, + "length": 4, + "value": "0x00" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 319, + "length": 4, + "value": "0x01" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 354, + "length": 4, + "value": "0x02" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 389, + "length": 4, + "value": "0x03" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 424, + "length": 4, + "value": "0xFE" + }, + { + "filePath": "\/Users\/charlymr\/Desktop\/ztcorekit\/Sources\/ZTCoreKit\/Models\/Realtime\/ZTRealtimeMessageEventType.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 4, + "value": "0xFF" } ] } \ No newline at end of file diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 5deccd1..e774e10 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,18 +1,13 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit -import Combine -import CommonCrypto -import Compression +// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit import CoreBluetooth -import CoreFoundation +import CoreData import CoreTelephony import Dispatch import Foundation -import MobileCoreServices import Network import ObjectiveC -import Security import Swift import SystemConfiguration import UIKit @@ -21,175 +16,158 @@ import _StringProcessing import _SwiftConcurrencyShims import os.log import os -import zlib -public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case timestamp - case modeId - case precisionMode - case numberOfSteps - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +public protocol ZTEnum : Swift.Decodable, Swift.Encodable { + var description: Swift.String { get } } -extension Foundation.Data { - public func macAddress() -> Swift.String? - public var bytes: [Swift.UInt8] { - get - } - public var hexDescription: Swift.String { +extension ZTCoreKit.ZTEnum { + public var description: Swift.String { get } - public init?(hex: Swift.String) - public func getUInt(offset: Swift.Int) -> Swift.UInt16 - public func getUInt32(offset: Swift.Int) -> Swift.UInt32 - public func getFloat(offset: Swift.Int) -> Swift.Float - public func getByte(at index: Swift.Int) -> Swift.Int8 - public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 - public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 - public mutating func append(byte data: Swift.Int8) - public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) - public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -extension Foundation.Data { - public func dataObject(at index: Foundation.Data.Index = 0) -> T - public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int - public func object(at offset: Swift.Int) -> T +@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { + public var name: Swift.String + public var description: Swift.String? + public var mimeType: Swift.String? + public var key: Swift.String? + public var url: Swift.String? + public var data: Foundation.Data? + convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) + required convenience public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Swift.Numeric { - public var data: Foundation.Data { +public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void +public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void +public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void +public typealias ZTCompletion = (() -> Swift.Void) +public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { + public var rawData: Foundation.Data? + public var right: Swift.UInt8 + public var left: Swift.UInt8 + public var min: Swift.UInt8 { get } -} -public struct ZTAES { - public let key: Foundation.Data - public let iv: Foundation.Data - public var algorithm: CommonCrypto.CCAlgorithm { + public var description: Swift.String { get } - public var options: CommonCrypto.CCOptions { + public init() + public init(data: Foundation.Data) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static let uuid: Swift.String + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var encOption: CommonCrypto.CCOptions { + public var byte1: Swift.UInt8? { get } - public var decOption: CommonCrypto.CCOptions { + public var byte2: Swift.UInt8? { get } - public var successStatus: Swift.UInt32 { + public var byte3: Swift.UInt8? { get } - public func evaluate(_ current: CommonCrypto.CCCryptorStatus, with needed: Swift.UInt32) -> Swift.Bool - public typealias error = ZTCoreKit.ZTPlist.Error - public init?(key: Swift.String, iv: Swift.String) - public func encrypt(data: Foundation.Data) -> Foundation.Data? - public func decrypt(data: Foundation.Data?) -> Foundation.Data? - public func crypt(data: Foundation.Data?, option: CommonCrypto.CCOperation) -> Foundation.Data? -} -@_hasMissingDesignatedInitializers open class ZTRetryPolicy { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTConnectionLostRetryPolicy : ZTCoreKit.ZTRetryPolicy { - @objc deinit + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTMessageGeneralState { + public var activityStartedRight: Swift.Bool { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -extension Foundation.UserDefaults { - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { + public var activityStartedLeft: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { + public var pairIsConnected: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { + public var memsHasError: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { + public var firmwareDifferent: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { + public var actualState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { + public var previousState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { + public var description: Swift.String { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { +} +@_hasMissingDesignatedInitializers public class ZTCommandResponse { + public var bytes: [Swift.UInt8] + public var rightModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { + public var leftModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { + public var command: ZTCoreKit.ZTCommand? { get - set } - public subscript(key: Swift.String) -> Any? { + public var status: ZTCoreKit.ZTCommandStatus? { get - set(value) } - public func value(forKey key: Swift.String) -> T? - public func clear(_ key: Swift.String) - public func clear(_ key: ZTCoreKit.ZTDefaultsKey) - public func clearAll() + @objc deinit } -public struct ZTPairedDevice : Swift.Codable { - public var macAddress: Swift.String { +public enum ZTCommandStatus : Swift.UInt8 { + case success + case busy + case invalidParam + case invalidState + case forbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerresponse + public var description: Swift.String { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -public enum ZTDfuPackageType : Swift.String { - case APP - case BL - case SD - case SD_BL - case SD_BL_APP - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers final public class ZTSettings { + public static let shared: ZTCoreKit.ZTSettings + final public var version: Swift.String? + final public var logLevel: ZTCoreKit.ZTLogLevel + final public var environment: ZTCoreKit.ZTEnvironment + final public var autoConnect: Swift.Bool + final public var enableEventLogging: Swift.Bool + final public var shouldObtaineMissedChunks: Swift.Bool + final public var enableRawDataCheck: Swift.Bool + final public var shouldAutoResendData: Swift.Bool + final public var activityDataSyncThreshold: Swift.Int + final public var enableBackgroundDFU: Swift.Bool + final public var enableBackgroundDataStreaming: Swift.Bool + final public var activityChunkStoreForFreeMemory: Swift.Int + final public var activityChunkRetryLimit: Swift.Int + final public var checkFirmwareUpdatePeriod: Swift.Int + final public var enableAnalyticsData: Swift.Bool + final public var autorestartBackgroundDfu: Swift.Bool + final public var getChunksOnApplicationDidBecomeActive: Swift.Bool + final public var enablePacketsDataLogging: Swift.Bool + final public var cachedPacketsBatchUploadSize: Swift.Int + final public var chunkDuration: Swift.Int? { get + set } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + final public func clear() @objc deinit } -@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { +@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { public static let uuid: Swift.String open var data: Foundation.Data? { get @@ -198,336 +176,317 @@ public enum ZTDfuPackageType : Swift.String { override open func valueUpdated() @objc deinit } -public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var bootloaderVersion: Swift.UInt8 { - get - } - public var appSupportVersion: Swift.UInt8 { - get - } - public var softDeviceId: Swift.UInt8 { - get +extension ZTCoreKit.ZTRealtimeMessage { + public struct Status : Swift.CustomStringConvertible { + public var code: ZTCoreKit.ZTAlgoStatus? { + get + } + public var timestamp: Swift.UInt32? { + get + } + public var algoMode: ZTCoreKit.ZTAlgoMode? { + get + } + public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { + get + } + public var consecutiveSteps: Swift.UInt8? { + get + } + public var description: Swift.String { + get + } + public init(data: Foundation.Data) } - public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { +} +public enum ZTBleManagerState : Swift.CustomStringConvertible { + case off + case on + case idle + case scanning + case unauthorized + case resetting + case unknown + case unsupported + public var description: Swift.String { get } - public var description: Swift.String { + public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public enum DfuState : Swift.UInt8 { - case none - case inProgress - case received - case readyForCopy - case activation - case done - case error - case validationError - case activationError - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } -extension Swift.String { - public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String - public var fromBase64: Swift.String? { +public enum ZTRealtimeMetric : Swift.String { + case duration + case steps + case cycleDuration + case stepCadence + case stepSpeed + case distance + case footDistance + case energySum + case walkingQualityScore + case stairsClimbed + case intenseActivity + case slope + case accelerationFoot + case strideLength + case relativePronationAngleFoot + case pronationAngleFFI + case pronationAngleFFO + case plantarFlexionAngularSpeedMaxPropulsion + case symmetry + public func value() -> Swift.UInt8 + public var activityType: ZTCoreKit.ZTActivityType { get } - public var toBase64: Swift.String { + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String - public func substring(range: Foundation.NSRange) -> Swift.String - public func matches(regex: Swift.String) -> [Swift.String] - public static func random(length: Swift.Int = 9) -> Swift.String - public func split(usingRegex pattern: Swift.String) -> [Swift.String] - public func serialNumber() -> Swift.String - public func fileName() -> Swift.String - public func incrementedMacAddress() -> Swift.String } -extension Swift.Int { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +extension ZTCoreKit.ZTRealtimeMetric { + public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) + public init?(name: Swift.String) } -extension Swift.UInt8 { - public var bits: [Swift.UInt8] { - get - } - public var hexValue: Swift.String { - get +open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.Double + public enum Unit : Foundation.TimeInterval { + case seconds + case milliseconds + public init?(rawValue: Foundation.TimeInterval) + public typealias RawValue = Foundation.TimeInterval + public var rawValue: Foundation.TimeInterval { + get + } } + public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + @objc deinit } -extension Swift.UInt16 { - public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] -} -extension Swift.UInt32 { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] -} -extension Swift.UInt64 { - public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] +open class ZTDataTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Data + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.Data? + open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? + @objc deinit } -extension Swift.Double { - public var milliseconds: Swift.Int64 { +@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension Swift.Array where Element == Swift.UInt8 { - public var hex: Swift.String { +public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case defaultMode + case economicMode + case performanceMode + public var parameters: [Swift.UInt8] { get } -} -extension Swift.Dictionary { - public func merge(dict: [Key : Value]) -> [Key : Value] -} -extension Foundation.Date { - public var timestamp: Swift.Int64 { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - public var apiFormat: Swift.String { - get +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { + @objc public func pause() + @objc public func resume() + @objc public func abort() -> Swift.Bool + @objc public func restart() + @objc public var paused: Swift.Bool { + @objc get } - public var logFormat: Swift.String { - get + @objc public var aborted: Swift.Bool { + @objc get } + @objc deinit } -extension Swift.Array where Element : CoreBluetooth.CBPeripheral { - public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool -} -extension Swift.Array { - public func chunked(into size: Swift.Int = 1000) -> [[Element]] -} -extension Swift.Array where Element == Swift.String { - public func stringify() -> Swift.String -} -extension CoreBluetooth.CBCharacteristic { - public func notifyValue(_ isEnabled: Swift.Bool) - public func readValue() - @discardableResult - public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { + public var left: Swift.UInt32 + public var right: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTEnvironment { - case dev - case staging - case production - case zcdev - case zcstaging - case zcproduction - public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { +extension ZTCoreKit.ZTMessageInactivityTimeout { + public var description: Swift.String { get } } -public enum ZTModuleSide : Swift.String, Swift.Codable { - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } +public protocol ZTCBCentralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + func stopScan() + func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] + func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] + func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) + func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) + func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) } -public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable -public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable -public protocol ZTEnum : Swift.Decodable, Swift.Encodable { - var description: Swift.String { get } +extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { + public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? + public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] + public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) } -extension ZTCoreKit.ZTEnum { +open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { + public init(formatString: Swift.String) + @objc deinit +} +public struct ZTMapError : Swift.Error { + public var key: Swift.String? + public var currentValue: Any? + public var reason: Swift.String? + public var file: Swift.StaticString? + public var function: Swift.StaticString? + public var line: Swift.UInt? + public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) +} +extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { public var description: Swift.String { get } } -extension ZTCoreKit.ZTArchive { - final public func totalUnitCountForRemoving(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForReading(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForAddingItem(at url: Foundation.URL) -> Swift.Int64 -} -public let defaultReadChunkSize: Swift.UInt32 -public let defaultWriteChunkSize: Swift.UInt32 -public let defaultFilePermissions: Swift.UInt16 -public let defaultDirectoryPermissions: Swift.UInt16 -final public class ZTArchive : Swift.Sequence { - public enum ArchiveError : Swift.Error { - case unreadableArchive - case unwritableArchive - case invalidEntryPath - case invalidCompressionMethod - case invalidStartOfCentralDirectoryOffset - case missingEndOfCentralDirectoryRecord - case invalidNumberOfEntriesOnDisk - case invalidNumberOfEntriesInCentralDirectory - case cancelledOperation - case invalidBufferSize - public static func == (a: ZTCoreKit.ZTArchive.ArchiveError, b: ZTCoreKit.ZTArchive.ArchiveError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get +public protocol ZTPacketCachable : CoreData.NSManagedObject { + associatedtype Activity : ZTCoreKit.ZTActivityCachable + var id: Swift.Int16 { get set } + var createdAt: Foundation.Date { get set } + var fulfilledAt: Foundation.Date { get set } + var sentAt: Foundation.Date { get set } + var timestamp: Swift.Int64 { get set } + var duration: Swift.Int16 { get set } + var statusRawValue: Swift.Int16 { get set } + var status: ZTCoreKit.ZTPacket.Status { get set } + var scheduledDeleted: Foundation.Date? { get set } + var rawData: Foundation.Data? { get set } + var activity: Self.Activity? { get set } + var fwVersion: Swift.String? { get set } + init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, context: CoreData.NSManagedObjectContext, name: Swift.String) +} +extension ZTCoreKit.ZTPacketCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public enum ZTServices { + public enum Primary { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + case test + public var uid: Swift.String { + get + } + public var uuid: CoreBluetooth.CBUUID { + get + } + public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - public enum AccessMode : Swift.UInt { - case create - case read - case update - public init?(rawValue: Swift.UInt) - public typealias RawValue = Swift.UInt - public var rawValue: Swift.UInt { - get + public enum PrimaryOld { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - final public let url: Foundation.URL - final public let accessMode: ZTCoreKit.ZTArchive.AccessMode - public init?(url: Foundation.URL, accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - public init?(data: Foundation.Data = Data(), accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - @objc deinit - final public func makeIterator() -> Swift.AnyIterator - final public subscript(path: Swift.String) -> ZTCoreKit.ZTEntry? { - get - } - public typealias Element = ZTCoreKit.ZTEntry - public typealias Iterator = Swift.AnyIterator -} -final public class ZTSignal { - public typealias ZTSignalCallback = (T) -> Swift.Void - final public var fireCount: Swift.Int { - get - } - final public var retainLastData: Swift.Bool { - get - set - } - final public var lastDataFired: T? { - get + public enum DeviceInformation { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case manufacturerName + case modelNumber + case serialNumber + case firmwareRevision + case hardwareRevision + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - final public var observers: [Swift.AnyObject] { - get + public enum DeviceDFU { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case dfuControlPoint + case dfuPacket + case dfuButtonless + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - public init(retainLastData: Swift.Bool = false) - @discardableResult - final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - final public func fire(_ data: T) - final public func cancelSubscription(for observer: Swift.AnyObject) - final public func cancelAllSubscriptions() - final public func clearLastData() - @objc deinit -} -extension ZTCoreKit.ZTSignal where T == () { - final public func fire() -} -@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { - public typealias ZTSignalCallback = (T) -> Swift.Void - public typealias ZTSignalFilter = (T) -> Swift.Bool - weak final public var observer: Swift.AnyObject? - final public var once: Swift.Bool - @discardableResult - final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription - final public func cancel() - @objc deinit } -infix operator => : AssignmentPrecedence -public func => (signal: ZTCoreKit.ZTSignal, data: T) -public struct ZTMessageTime : Swift.CustomStringConvertible { - public var timestamp: Swift.Int64 - public var side: ZTCoreKit.ZTModuleSide - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { +public enum ZTRealtimeSide : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@objc public protocol DFUPeripheralSelectorDelegate { - @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool - @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? -} -extension ZTCoreKit.ZTArchive { - final public var data: Foundation.Data? { - get - } +@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { + public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? + @objc override dynamic public init() + @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage.Event { - public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case motion - case transition - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension ZTCoreKit.ZTRealtimeMessage { + public struct Acknowledgment : Swift.CustomStringConvertible { + public var command: ZTCoreKit.ZTAlgoCommand? { get } - } - public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case stepForward - case stepBackward - case stepSideLeft - case stepSideRight - case stepUp - case stepDown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { get } - } - public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case low - case medium - case high - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -public class ZTDateTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public enum DFUStreamHexError : Swift.Error { - case invalidHexFile - public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -open class ZTDataTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Data - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.Data? - open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? - @objc deinit -} open class ZTCharacteristic { weak public var service: ZTCoreKit.ZTService? { get @@ -557,951 +516,1103 @@ open class ZTCharacteristic { open func notificationUpdated() @objc deinit } -@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@objc public enum DFUFirmwareType : Swift.UInt8 { + case softdevice = 1 + case bootloader = 2 + case application = 4 + case softdeviceBootloader = 3 + case softdeviceBootloaderApplication = 7 + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) +} +public struct DFUFirmwareError : Swift.Error { + public enum FileType { + case zip + case binOrHex + case dat + public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public let type: ZTCoreKit.DFUFirmwareError.FileType +} +extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +@objc public class DFUFirmware : ObjectiveC.NSObject { + @objc final public let fileName: Swift.String? + @objc final public let fileUrl: Foundation.URL? + @objc public var valid: Swift.Bool { + @objc get + } + @objc public var size: ZTCoreKit.DFUFirmwareSize { + @objc get + } + @objc public var parts: Swift.Int { + @objc get + } + @objc convenience public init(urlToZipFile: Foundation.URL) throws + @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws + @objc convenience public init(zipFile: Foundation.Data) throws + @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) + @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws @objc deinit } -public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { +public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void +@_hasMissingDesignatedInitializers final public class ZTCore { + public static let version: Swift.String + final public var zcVersion: Swift.String + public static let shared: ZTCoreKit.ZTCore + final public let bleManager: ZTCoreKit.ZTBleManager + final public var settings: ZTCoreKit.ZTSettings { get } - public var byte1: Swift.UInt8? { + final public var appUserId: Swift.String? { get } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTMessageChunkConfig { - public var side: ZTCoreKit.ZTModuleSide { + final public var lastCommand: ZTCoreKit.ZTCommand? + final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] + final public var lastActivityId: Swift.String? { get } - public var flag: Swift.UInt8 { + final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { get } - public var description: Swift.String { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } -} -@_hasMissingDesignatedInitializers open class ZTSession { - @objc deinit -} -open class ZTService { - weak public var device: ZTCoreKit.ZTDevice! { + final public var lastDeviceSerialNumber: Swift.String? { get } - final public let service: CoreBluetooth.CBService - public static var serviceType: ZTCoreKit.ZTService.Type { + final public var lastDeviceQRCode: Swift.String? { get } - public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { + final public var lastQRCode: Swift.String? { get } - public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + final public var isDfuInProgress: Swift.Bool { + get + } + weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? + final public var firmwareDfuState: ZTCoreKit.DFUState? { + get + } + final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { + get + set + } + final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> + final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> + final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuCopied: ZTCoreKit.ZTSignal<()> + final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + final public func clearUser() + final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) + @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func stopScan() + final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) + #if compiler(>=5.3) && $AsyncAwait + final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice + #endif + @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") + final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) + final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) + final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func setDeepSleepMode() throws + @objc deinit } -extension ZTCoreKit.ZTService : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +public class ZTDatabaseService where Packet : ZTCoreKit.ZTPacketCachable, Activity : ZTCoreKit.ZTActivityCachable { + public var currentActivityId: Swift.String? + public init(context: CoreData.NSManagedObjectContext = ZTCoreDataStack.shared.context) + @objc deinit + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withId activityId: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withSerial serial: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func createActivity(withId id: Swift.String, updateBlock: ((Activity) -> Swift.Void)? = nil) async throws -> Activity? + #endif + public func updateActivity(id: Swift.String, updateBlock: @escaping (Activity) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + public func deleteActivity(withId id: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + #if compiler(>=5.3) && $AsyncAwait + public func createPacket(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, updateBlock: ((Packet) -> Swift.Void)? = nil) async -> Packet + #endif + public func fetchPackets(for activityId: Swift.String, completion: @escaping (Swift.Result<[Packet], any Swift.Error>) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func fetchPackets(forActivityId activityId: Swift.String, from startId: Swift.Int16? = nil, to lastId: Swift.Int16? = nil, in managedObjectContext: CoreData.NSManagedObjectContext) async throws -> [Packet] + #endif + public func trashOldPackets() + public func updatePackets(for activityId: Swift.String, from startId: Swift.Int16, to endId: Swift.Int16, withStatus newStatus: ZTCoreKit.ZTPacket.Status, completion: @escaping ((any Swift.Error)?) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func add(_ packet: Packet, to activityId: Swift.String, in managedContext: CoreData.NSManagedObjectContext) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + public func update(_ packets: [Packet], withNewStatus newStatus: ZTCoreKit.ZTPacket.Status, in managedContext: CoreData.NSManagedObjectContext) async + #endif + public func update(packet: Packet, updateBlock: @escaping (Packet) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) } -public protocol ZTServiceProtocol : AnyObject { - static var uuid: Swift.String { get } - static var serviceType: ZTCoreKit.ZTService.Type { get } - static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +public class ZTUser : ZTCoreKit.ZTMappable { + public var attributes: [Swift.String : Any] + public var id: Swift.String? + public var organizationId: Swift.String? + public var appId: Swift.String? + public var createdAt: Swift.String? + public var updatedAt: Swift.String? + public var userId: Swift.String? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { +public class ZTAchievement : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var type: Swift.String? + public var activityId: Swift.String? + public var code: Swift.String? + public var appuserId: Swift.String? + public var data: [Swift.String : Any]? + public var duration: Swift.Int64? + public var calories: Swift.Double? + public var createdAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +open class ZTService { + weak public var device: ZTCoreKit.ZTDevice! { + get + } + final public let service: CoreBluetooth.CBService public static var serviceType: ZTCoreKit.ZTService.Type { get } -} -@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) - @objc deinit -} -public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { - case status(id: ZTCoreKit.ZTAlgoStatus) - case startNewChunk - case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) - case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) - case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) - case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) - case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) - public var parameters: [Swift.UInt8] { + public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static let uuid: Swift.String - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) @objc deinit } -public enum ZTRealtimeMetric : Swift.String { - case duration - case steps - case cycleDuration - case stepCadence - case stepSpeed - case distance - case footDistance - case energySum - case walkingQualityScore - case stairsClimbed - case intenseActivity - case slope - case accelerationFoot - case strideLength - case relativePronationAngleFoot - case pronationAngleFFI - case pronationAngleFFO - case plantarFlexionAngularSpeedMaxPropulsion - case symmetry - public func value() -> Swift.UInt8 - public var activityType: ZTCoreKit.ZTActivityType { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +extension ZTCoreKit.ZTService : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +} +extension Foundation.Data { + public var hexString: Swift.String { get } } -extension ZTCoreKit.ZTRealtimeMetric { - public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) - public init?(name: Swift.String) +public protocol DataConvertible { + static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + static func += (lhs: inout Foundation.Data, rhs: Self) } -public protocol ZTCBCentralManagerProtocol : AnyObject { - var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } - var state: CoreBluetooth.CBManagerState { get } - func stopScan() - func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] - func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] - func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) - func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) - func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) +extension ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + public static func += (lhs: inout Foundation.Data, rhs: Self) } -extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { - public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? - public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] - public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) +extension Swift.UInt8 : ZTCoreKit.DataConvertible { } -@objc @_hasMissingDesignatedInitializers open class ZTSessionDelegate : ObjectiveC.NSObject { - @objc deinit +extension Swift.UInt16 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, didBecomeInvalidWithError error: (any Swift.Error)?) +extension Swift.UInt32 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionTaskDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didReceive challenge: Foundation.URLAuthenticationChallenge, completionHandler: @escaping (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didSendBodyData bytesSent: Swift.Int64, totalBytesSent: Swift.Int64, totalBytesExpectedToSend: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, needNewBodyStream completionHandler: @escaping (Foundation.InputStream?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didFinishCollecting metrics: Foundation.URLSessionTaskMetrics) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didCompleteWithError error: (any Swift.Error)?) - @available(macOS 10.13, iOS 11.0, tvOS 11.0, watchOS 4.0, *) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, taskIsWaitingForConnectivity task: Foundation.URLSessionTask) +extension Swift.Int : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDataDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, didReceive data: Foundation.Data) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, willCacheResponse proposedResponse: Foundation.CachedURLResponse, completionHandler: @escaping (Foundation.CachedURLResponse?) -> Swift.Void) +extension Swift.Float : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDownloadDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didResumeAtOffset fileOffset: Swift.Int64, expectedTotalBytes: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didWriteData bytesWritten: Swift.Int64, totalBytesWritten: Swift.Int64, totalBytesExpectedToWrite: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didFinishDownloadingTo location: Foundation.URL) +extension Swift.Double : ZTCoreKit.DataConvertible { } -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +extension Swift.String : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data +} +extension Foundation.Data : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data +} +@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { + @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool + @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? + @objc override dynamic public init() + @objc deinit +} +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.Int16, anchorTime: Swift.Int64?) + public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTPacket) + public static func updateSegments(ids: [Swift.Int16], status: ZTCoreKit.ZTPacket.Status, activityId: Swift.String?) +} +@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public protocol ZTCBPeripheralProtocol { - var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } - var name: Swift.String? { get } - var rssi: Foundation.NSNumber? { get } - var state: CoreBluetooth.CBPeripheralState { get } - var services: [CoreBluetooth.CBService]? { get } - var identifier: Foundation.UUID { get } - func discoverServices(_: [CoreBluetooth.CBUUID]?) - func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) - func readValue(for: CoreBluetooth.CBCharacteristic) - func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) - func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) -} -extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { -} -extension ZTCoreKit.ZTPlist { - public func asCollection() -> [Foundation.NSDictionary.Element] - public func set(_ rawValue: Any?, for key: Swift.String) - public func get(_ key: Swift.String) -> Any? - public func clean() - public func remove(_ keys: Swift.String...) - public func remove(keys collection: [Swift.String]) - public func bool(_ key: Swift.String) -> Swift.Bool? - public func int(_ key: Swift.String) -> Swift.Int? - public func double(_ key: Swift.String) -> Swift.Double? - public func float(_ key: Swift.String) -> Swift.Float? - public func string(_ key: Swift.String) -> Swift.String? - public func dictionary(_ key: Swift.String) -> [Swift.String : Any]? - public func collection(_ key: Swift.String) -> [Any]? - public func date(_ key: Swift.String) -> Foundation.Date? - public func data(_ key: Swift.String) -> Foundation.Data? - public func null(_ key: Swift.String) -} -public struct ZTRealtimeMessage : Swift.CustomStringConvertible { - public var description: Swift.String { - get +extension ZTCoreKit.ZTPacket { + public enum Status : Swift.Int16, Swift.Codable, Swift.Equatable { + case new + case readyToSend + case sending + case sent + case error + public init?(rawValue: Swift.Int16) + public typealias RawValue = Swift.Int16 + public var rawValue: Swift.Int16 { + get + } } - public enum Side : Swift.UInt8 { - case none - case left - case right - case both + public enum TimestampType : Swift.UInt8, Swift.Codable { + case unknown + case start + case stop + case pause + case resume + case reboot + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } - public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + public enum BmTimestampType : Swift.UInt8, Swift.Codable { + case unknown + case shoeWearOn + case shoeWearOff + case walkingStart + case walkingStop + case runningStart + case runningStop + case cyclingStart + case cyclingStop + case transportStart + case transportStop + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public enum PacketType : Swift.UInt8, Swift.Codable { + public static let maxDataValue: Swift.UInt8 + case unknown + case quantification + case walkAnalysis + case runAnalysis + case stairs + case cycling + case jump + case safety + case staticActivity + case debug + case debugTelemetry + case debugProba + case bmTimestampPacket + case fwTimestampPacket + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { + final public var advertisingServices: [CoreBluetooth.CBUUID]? + final public var managerState: ZTCoreKit.ZTBleManagerState { get + set } - public var content: [Swift.UInt8] { + final public class var instance: ZTCoreKit.ZTBleManager { get } - public init(bytes: [Swift.UInt8]) - public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { get } - public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + final public var macAddress: Swift.String? { get } - public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? + final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { get } - public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + final public var product: ZTCoreKit.ZTProductType? { get + set } -} -@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() + final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + get + } + final public var scanning: Swift.Bool { + get + } + final public var isDfuMode: Swift.Bool { + get + } + final public let onBluetoothStateChange: ZTCoreKit.ZTSignal + final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onDeviceDiscovered: ZTCoreKit.ZTSignal + final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> @objc deinit } -public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { - public var left: Swift.UInt32 - public var right: Swift.UInt32 - public init(bytes: [Swift.UInt8]) +extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +} +public struct ZTPairedDevice : Swift.Codable { + public var macAddress: Swift.String { + get + } public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageInactivityTimeout { - public var description: Swift.String { +public enum DFUStreamHexError : Swift.Error { + case invalidHexFile + public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -@objc public enum DFUFirmwareType : Swift.UInt8 { - case softdevice = 1 - case bootloader = 2 - case application = 4 - case softdeviceBootloader = 3 - case softdeviceBootloaderApplication = 7 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void +public enum ZTScannerResult { + case success(device: ZTCoreKit.ZTDevice) + case cancelled + case failed((any Swift.Error)?) +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit } -public struct DFUFirmwareError : Swift.Error { - public enum FileType { - case zip - case binOrHex - case dat - public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +public enum DFUStreamZipError : Swift.Error { + case noManifest + case invalidManifest + case fileNotFound + case typeNotFound + public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get } - public let type: ZTCoreKit.DFUFirmwareError.FileType } -extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { +extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { public var errorDescription: Swift.String? { get } } -@objc public class DFUFirmware : ObjectiveC.NSObject { - @objc final public let fileName: Swift.String? - @objc final public let fileUrl: Foundation.URL? - @objc public var valid: Swift.Bool { - @objc get - } - @objc public var size: ZTCoreKit.DFUFirmwareSize { - @objc get - } - @objc public var parts: Swift.Int { - @objc get +@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get } - @objc convenience public init(urlToZipFile: Foundation.URL) throws - @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws - @objc convenience public init(zipFile: Foundation.Data) throws - @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) - @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Status : Swift.CustomStringConvertible { - public var code: ZTCoreKit.ZTAlgoStatus? { - get - } - public var timestamp: Swift.UInt32? { - get - } - public var algoMode: ZTCoreKit.ZTAlgoMode? { - get - } - public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { - get - } - public var consecutiveSteps: Swift.UInt8? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) +public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { + case status(id: ZTCoreKit.ZTAlgoStatus) + case startNewChunk + case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) + case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) + case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) + case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) + case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) + public var parameters: [Swift.UInt8] { + get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { + @objc open var softdevice: Swift.UInt32 { + get + } + @objc open var bootloader: Swift.UInt32 { + get + } + @objc open var application: Swift.UInt32 { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() @objc deinit } -infix operator <<- : DefaultPrecedence -infix operator ->> : DefaultPrecedence -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) -public func ->> (left: T, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) -public func ->> (left: T?, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { - public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? - @objc override dynamic public init() - @objc deinit -} -public enum ZTCompressionMethod : Swift.UInt16 { - case none - case deflate - public init?(rawValue: Swift.UInt16) - public typealias RawValue = Swift.UInt16 - public var rawValue: Swift.UInt16 { +extension Swift.String { + public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String + public var fromBase64: Swift.String? { get } -} -public typealias CRC32 = Swift.UInt32 -public typealias ZTConsumer = (_ data: Foundation.Data) throws -> Swift.Void -public typealias ZTProvider = (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data -extension Foundation.Data { - public func crc32(checksum: ZTCoreKit.CRC32) -> ZTCoreKit.CRC32 - public static func compress(size: Swift.Int, bufferSize: Swift.Int, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 - public static func decompress(size: Swift.Int, bufferSize: Swift.Int, skipCRC32: Swift.Bool, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 -} -extension ZTCoreKit.ZTPlist { - public enum Error { - case notFound(at: Foundation.URL?) - case deleted(at: Foundation.URL?) - case parse(at: Foundation.URL?) - case filemanagerRemove(with: any Swift.Error) - case aesKeyFail(key: Swift.String) - case aesInitialVectorFail(iv: Swift.String) - case aesCryptFail(status: Swift.Int32) - case noData - case stringNotInUtf8 - public static let identifier: Swift.String - public func raise() - } -} -extension ZTCoreKit.ZTPlist.Error : Swift.Error, Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var toBase64: Swift.String { get } + public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String + public func substring(range: Foundation.NSRange) -> Swift.String + public func matches(regex: Swift.String) -> [Swift.String] + public static func random(length: Swift.Int = 9) -> Swift.String + public func split(usingRegex pattern: Swift.String) -> [Swift.String] + public func serialNumber() -> Swift.String + public func fileName() -> Swift.String + public func incrementedMacAddress() -> Swift.String } -public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case walking - case running - case pedaling - case jump - case stairsUp - case stairsDown - case standing - case sitting - case kneeling - case tiptoe - case vibration - case slip - case incident - case freewheel - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Int { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +} +extension Swift.UInt8 { + public var bits: [Swift.UInt8] { get } -} -public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { - var rawData: Foundation.Data? { get set } -} -@objc public enum LogLevel : Swift.Int { - case debug = 0 - case verbose = 1 - case info = 5 - case application = 10 - case warning = 15 - case error = 20 - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexValue: Swift.String { get } } -@objc public protocol LoggerDelegate { - @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +extension Swift.UInt16 { + public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { - get - } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - @objc deinit +extension Swift.UInt32 { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { - @objc public func pause() - @objc public func resume() - @objc public func abort() -> Swift.Bool - @objc public func restart() - @objc public var paused: Swift.Bool { - @objc get - } - @objc public var aborted: Swift.Bool { - @objc get - } - @objc deinit +extension Swift.UInt64 { + public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] } -public enum ZTTXPower : Swift.UInt8 { - case dBm0 - case dBm2 - case dBm3 - case dBm4 - case dBm5 - case dBm6 - case dBm7 - case dBm8 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Double { + public var milliseconds: Swift.Int64 { get } } -public class ZTPlist { - public static let folderName: Swift.String - final public let url: Foundation.URL - public var encrypted: Swift.Bool { - get - } - public var encryption: ZTCoreKit.ZTAES? { +extension Swift.Array where Element == Swift.UInt8 { + public var hex: Swift.String { get } - public var dictionary: Foundation.NSMutableDictionary? { +} +extension Swift.Dictionary { + public func merge(dict: [Key : Value]) -> [Key : Value] +} +extension Foundation.Date { + public var timestamp: Swift.Int64 { get } - public var cache: Foundation.NSMutableDictionary? { + public var apiFormat: Swift.String { get - set } - public var volume: Swift.Int64 { + public var logFormat: Swift.String { get } - public var size: Swift.String { +} +extension Swift.Array where Element : CoreBluetooth.CBPeripheral { + public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool +} +extension Swift.Array { + public func chunked(into size: Swift.Int = 1000) -> [[Element]] +} +extension Swift.Array where Element == Swift.String { + public func stringify() -> Swift.String +} +extension CoreBluetooth.CBCharacteristic { + public func notifyValue(_ isEnabled: Swift.Bool) + public func readValue() + @discardableResult + public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +} +public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var fileName: Swift.String { + public var byte1: Swift.UInt8? { get } - public var name: Swift.String { + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkConfig { + public var side: ZTCoreKit.ZTModuleSide { get } - @objc public func save() - public init(insideBundleUrl url: Foundation.URL) - public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName) - convenience public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName, encryption: ZTCoreKit.ZTAES) - public static func delete(_ plist: inout ZTCoreKit.ZTPlist?) - @objc deinit -} -public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { - public var id: Swift.UInt8 { + public var flag: Swift.UInt8 { get } - case generalState - case startNewActivity - case stopNewActivity - case resendData - case deepSleep - case reboot - case detailedBattery - case hardwareInformation - case firmwareInformation - case bootloaderVersion - case setInactivityTimeout - case setDFUInstall - case setDFUMode - case setChunkConfig - case setChunkMinutesInterval - case setChunkSecondsInterval - case selectAlgorithm - case freeMemory - case getTimestamp - case passthroughAlgo - case resetActivity - case getActivityMetadata - case disableHeating - case setHeating - case setTimer - case getTemperature - case getTimer - case startPostureCalibration - case setUserParameters - case resetCalibration - case getCalibrationState - case rawDataSend - case rawDataEnable - case rawDataLookup - case rawDataDebug - case calibrateStatic - case clearCalibrateStatic - case cancelCalibrateStatic - case getCalibrateStaticMessage - case getCalibrateStaticData - case testCalibrateStatic - case memsConfig - case updateTxPower - case updatePhy - case disconnect - case startDFURight - case startDFULeft - case enablePeerConnection - case factoryReset public var description: Swift.String { get } +} +@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + @objc deinit +} +public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { + case undefined + case userRequest + case memoryFull + case inactivity public init?(rawValue: Swift.UInt8) - public typealias AllCases = [ZTCoreKit.ZTCommand] - public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public static var allCases: [ZTCoreKit.ZTCommand] { - get - } public var rawValue: Swift.UInt8 { get } } -open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { - public init(formatString: Swift.String) - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTMultipartFormData { - open var contentType: Swift.String { +@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get - set } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTCommandResponse { - public var bytes: [Swift.UInt8] - public var rightModule: Swift.Bool { +public protocol ZTServiceProtocol : AnyObject { + static var uuid: Swift.String { get } + static var serviceType: ZTCoreKit.ZTService.Type { get } + static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +} +extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { + public static var serviceType: ZTCoreKit.ZTService.Type { get } - public var leftModule: Swift.Bool { +} +public protocol ZTMapContext { +} +final public class ZTMap { + final public let mappingType: ZTCoreKit.ZTMappingType + final public var JSON: [Swift.String : Any] { get } - public var command: ZTCoreKit.ZTCommand? { + final public var isKeyPresent: Swift.Bool { get } - public var status: ZTCoreKit.ZTCommandStatus? { + final public var currentValue: Any? { + get + } + final public var currentKey: Swift.String? { + get + } + final public var nestedKeyDelimiter: Swift.String { + get + } + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + final public let toObject: Swift.Bool + public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { get } + final public func value() -> T? @objc deinit } -public enum ZTCommandStatus : Swift.UInt8 { - case success - case busy - case invalidParam - case invalidState - case forbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerresponse - public var description: Swift.String { +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, default: T) throws -> T + final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +} +extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) + @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) + public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) + public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) + public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) +} +public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { + case staticType + case dynamic + case walking + case running + case cycling + case jump + case stairsUp + case stairsDown + case staticOther + case kneel + case tiptoe + case vibration + case trampling + case crawling + case dynamicOther + case slip + case trip + case active + case inactive + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } +} +public enum ZTTXPower : Swift.UInt8 { + case dBm0 + case dBm2 + case dBm3 + case dBm4 + case dBm5 + case dBm6 + case dBm7 + case dBm8 public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -@_hasMissingDesignatedInitializers public class ZTDefaults { - @objc deinit -} -@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { - final public let stringValue: Swift.String - public init(_ value: Swift.String) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func addEntry(with path: Swift.String, relativeTo baseURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, fileURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, type: ZTCoreKit.ZTEntry.EntryType, uncompressedSize: Swift.UInt32, modificationDate: Foundation.Date = Date(), permissions: Swift.UInt16? = nil, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data) throws - final public func remove(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, progress: Foundation.Progress? = nil) throws -} -@objc public class ZTDevice : ObjectiveC.NSObject { - public var id: Swift.String - public var peripheral: CoreBluetooth.CBPeripheral? { +@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { get } - public var serialNumber: Swift.String { + open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { get } - public var name: Swift.String? { + open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { get } - public var qrCode: Swift.String? { + open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { get } - public var rssi: Swift.Int { + open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { get } - public var macAddressRight: Swift.String? - public var macAddressLeft: Swift.String? - public var advertisementData: [Swift.String : Any]? - public var manufacturer: Swift.String? { + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +extension ZTCoreKit.ZTCore { + final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) + final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) + final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) +} +@_hasMissingDesignatedInitializers public class ZTDeviceInfo { + public var project: ZTCoreKit.ZTProjectCodeType? { get } - public var hardwareRevision: Swift.String? { + public var productCode: ZTCoreKit.ZTProductCodeType? { get } - public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { get } - public var modelNumber: Swift.String? { + public var productType: ZTCoreKit.ZTProductTypeCode? { get } - public var uuid: Swift.String { + public var hardwareVersion: Swift.Int8? { get } - public var isConnected: Swift.Bool { + public var boardVersion: Swift.Int8? { get } - public var isActivityRunning: Swift.Bool { + public var testeur: Swift.String? { get } - public var isDeviceReady: Swift.Bool { + public var sizeRaw: Swift.String? { get } - public var info: ZTCoreKit.ZTDeviceInfo? { + public var year: Swift.Int? { get - set } - public var batterylevel: ZTCoreKit.ZTBatteryLevel? { + public var week: Swift.Int? { get } - public var lastActivityDate: Foundation.Date { + public var SN: Swift.String? { get } - public var generalState: ZTCoreKit.ZTMessageGeneralState? { + public var serialNumber: Swift.String + public var deviceIdentifier: Swift.String + public var macAddressRight: Swift.String? { get - set } - public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { + public var macAddressLeft: Swift.String? { get - set } - public var lowSoftwareInfo: Swift.String { + public var code: Swift.String? { get } - public var activityInfo: ZTCoreKit.ZTMessageActivity? { + @objc deinit +} +extension ZTCoreKit.ZTDeviceInfo { + public var size: Swift.Int? { get - set } - public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { + public var gender: Swift.String? { get - set } - public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { +} +public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { + public var id: Swift.UInt8 { get - set } - public var actualState: ZTCoreKit.ZTDeviceActualState - public var previousState: ZTCoreKit.ZTDeviceActualState - public var hasInitialUpdate: Swift.Bool { + case generalState + case startNewActivity + case stopNewActivity + case resendData + case deepSleep + case reboot + case detailedBattery + case hardwareInformation + case firmwareInformation + case bootloaderVersion + case setInactivityTimeout + case setDFUInstall + case setDFUMode + case setChunkConfig + case setChunkMinutesInterval + case setChunkSecondsInterval + case selectAlgorithm + case freeMemory + case getTimestamp + case passthroughAlgo + case resetActivity + case getActivityMetadata + case disableHeating + case setHeating + case setTimer + case getTemperature + case getTimer + case startPostureCalibration + case setUserParameters + case resetCalibration + case getCalibrationState + case rawDataSend + case rawDataEnable + case rawDataLookup + case rawDataDebug + case calibrateStatic + case clearCalibrateStatic + case cancelCalibrateStatic + case getCalibrateStaticMessage + case getCalibrateStaticData + case testCalibrateStatic + case memsConfig + case updateTxPower + case updatePhy + case disconnect + case startDFURight + case startDFULeft + case enablePeerConnection + case factoryReset + public var description: Swift.String { get } - final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> - final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> - final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> - final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> - final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> - final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> - final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> - final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> - final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> - final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> - final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> - final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> - final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> - final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> - final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> - final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> - final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> - final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> - final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> - final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> - final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> - required public init(peripheral: CoreBluetooth.CBPeripheral) - public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) - public func connect() - public func disconnect() - @objc deinit - @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) - public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService - public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) - public func readGeneralState() -} -extension ZTCoreKit.ZTDevice { - public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool - public var isLowBattery: Swift.Bool? { - get - } -} -@_hasMissingDesignatedInitializers open class ZTServerTrustManager { - @objc deinit -} -public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case success - case busy - case invalidParam - case invalidState - case fwResForbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerResponse public init?(rawValue: Swift.UInt8) + public typealias AllCases = [ZTCoreKit.ZTCommand] + public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public static var allCases: [ZTCoreKit.ZTCommand] { get } -} -public enum DFUStreamZipError : Swift.Error { - case noManifest - case invalidManifest - case fileNotFound - case typeNotFound - public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { + public var rawValue: Swift.UInt8 { get } } -extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } +public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { + init(map: ZTCoreKit.ZTMap) throws } -@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { - get - } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() +extension ZTCoreKit.ZTImmutableMappable { + public func mapping(map: ZTCoreKit.ZTMap) + public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws +} +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType +} +extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { + final public func map(JSON: [Swift.String : Any]) throws -> N + final public func map(JSONString: Swift.String) throws -> N + final public func map(JSONObject: Any) throws -> N + final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] + final public func mapArray(JSONString: Swift.String) throws -> [N] + final public func mapArray(JSONObject: Any) throws -> [N] + final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] + final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] + final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] +} +@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTDeviceInfo { - public var project: ZTCoreKit.ZTProjectCodeType? { - get - } - public var productCode: ZTCoreKit.ZTProductCodeType? { - get - } - public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { - get - } - public var productType: ZTCoreKit.ZTProductTypeCode? { - get - } - public var hardwareVersion: Swift.Int8? { - get - } - public var boardVersion: Swift.Int8? { - get - } - public var testeur: Swift.String? { - get - } - public var sizeRaw: Swift.String? { - get - } - public var year: Swift.Int? { - get - } - public var week: Swift.Int? { +public enum ZTPeriod : Swift.String { + case day + case week + case month + case year + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public var SN: Swift.String? { +} +open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + final public let dateFormatter: Foundation.DateFormatter + public init(dateFormatter: Foundation.DateFormatter) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +final public class ZTSignal { + public typealias ZTSignalCallback = (T) -> Swift.Void + final public var fireCount: Swift.Int { get } - public var serialNumber: Swift.String - public var deviceIdentifier: Swift.String - public var macAddressRight: Swift.String? { + final public var retainLastData: Swift.Bool { get + set } - public var macAddressLeft: Swift.String? { + final public var lastDataFired: T? { get } - public var code: Swift.String? { + final public var observers: [Swift.AnyObject] { get } + public init(retainLastData: Swift.Bool = false) + @discardableResult + final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + final public func fire(_ data: T) + final public func cancelSubscription(for observer: Swift.AnyObject) + final public func cancelAllSubscriptions() + final public func clearLastData() @objc deinit } -extension ZTCoreKit.ZTDeviceInfo { - public var size: Swift.Int? { - get - } - public var gender: Swift.String? { - get - } +extension ZTCoreKit.ZTSignal where T == () { + final public func fire() } -public enum ZTProductType : Swift.String { - case sports - case warm - case safety - case podoSmart - case dfu - case ztDfu - case baliston - public var activityType: Swift.String { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { + public typealias ZTSignalCallback = (T) -> Swift.Void + public typealias ZTSignalFilter = (T) -> Swift.Bool + weak final public var observer: Swift.AnyObject? + final public var once: Swift.Bool + @discardableResult + final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription + final public func cancel() + @objc deinit +} +infix operator => : AssignmentPrecedence +public func => (signal: ZTCoreKit.ZTSignal, data: T) +public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case monitoring + case gaming + public var parameters: [Swift.UInt8] { get } -} -public enum ZTProjectCodeType : Swift.String { - case zt1 - case zt2 - case zt3 - case zt4 - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +@objc public class DFUServiceInitiator : ObjectiveC.NSObject { + @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? + @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? + @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? + @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate + @objc public var packetReceiptNotificationParameter: Swift.UInt16 + @objc public var forceDfu: Swift.Bool + @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool + @objc public var connectionTimeout: Swift.Double + @objc public var dataObjectPreparationDelay: Swift.Double + @objc public var alternativeAdvertisingNameEnabled: Swift.Bool + @objc public var alternativeAdvertisingName: Swift.String? + @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool + @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper + @objc public var disableResume: Swift.Bool + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) + @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator + @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") + @objc public func start() -> ZTCoreKit.DFUServiceController? + @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? + @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @objc deinit +} +public class ZTDateTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get + } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public enum ZTProductType : Swift.String { + case sports + case warm + case safety + case podoSmart + case dfu + case ztDfu + case baliston + public var activityType: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTProjectCodeType : Swift.String { + case zt1 + case zt2 + case zt3 + case zt4 + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } } @@ -1596,606 +1707,306 @@ public enum ZTUnitSizeCodeType : Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public enum Status : Swift.Int8, Swift.Codable { - case new - case sent - case sending - case error - public init?(rawValue: Swift.Int8) - public typealias RawValue = Swift.Int8 - public var rawValue: Swift.Int8 { - get - } - } - public enum TimestampType : Swift.UInt8, Swift.Codable { - case unknown - case start - case stop - case pause - case resume - case reboot - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +open class ZTURLTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.URL + public typealias JSON = Swift.String + public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) + open func transformFromJSON(_ value: Any?) -> Foundation.URL? + open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? + @objc deinit +} +@objc public class ZTDevice : ObjectiveC.NSObject { + public var id: Swift.String + public var peripheral: CoreBluetooth.CBPeripheral? { + get } - public enum BmTimestampType : Swift.UInt8, Swift.Codable { - case unknown - case shoeWearOn - case shoeWearOff - case walkingStart - case walkingStop - case runningStart - case runningStop - case cyclingStart - case cyclingStop - case transportStart - case transportStop - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + get } - public enum PacketType : Swift.UInt8, Swift.Codable { - case unknown - case quantification - case walkAnalysis - case runAnalysis - case stairs - case cycling - case jump - case safety - case staticActivity - case debug - case debugTelemetry - case debugProba - case bmTimestampPacket - case fwTimestampPacket - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var serialNumber: Swift.String { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Acknowledgment : Swift.CustomStringConvertible { - public var command: ZTCoreKit.ZTAlgoCommand? { - get - } - public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var name: Swift.String? { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Event : Swift.CustomStringConvertible { - public var timestamp: Swift.UInt32? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { - get - } - public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { - get - } - public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { - get - } - public var arguments: [Swift.UInt8]? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var qrCode: Swift.String? { + get } -} -public protocol ZTTransformType { - associatedtype Object - associatedtype JSON - func transformFromJSON(_ value: Any?) -> Self.Object? - func transformToJSON(_ value: Self.Object?) -> Self.JSON? -} -public enum ZTError : Swift.Equatable, Swift.Error { - case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) - case ble(type: ZTCoreKit.ZTError.Enums.BleError) - case network(type: ZTCoreKit.ZTError.Enums.NetworkError) - case store(type: ZTCoreKit.ZTError.Enums.StoreError) - case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) - case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) - case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) - case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) - @_hasMissingDesignatedInitializers public class Enums { - @objc deinit + public var rssi: Swift.Int { + get } - public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool - public var error: (any Swift.Error)? { + public var macAddressRight: Swift.String? + public var macAddressLeft: Swift.String? + public var advertisementData: [Swift.String : Any]? + public var manufacturer: Swift.String? { get } -} -extension ZTCoreKit.ZTError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var hardwareRevision: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ScanningError { - case cameraPermission - case wrongCode - case unknown - case notLinkedUser - public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + get } -} -extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var modelNumber: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum BleError { - case invalidState - case resetting - case poweredOff - case unsupported - case timeout - case unauthorized - case notConnected - case notConnectedLeft - case activityIsRunning - case busy - case dfu - case commandError - public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var uuid: Swift.String { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum FirmwareError { - case differentFirmware - case memsError - case leftNoConnected - case restartRequired - case recoverFromDfu - case minimumFwVersion - case updateRequired - case unsupported - case wrongProductType - case firstChunkIdIsGreater - case startTimeZero - public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isConnected: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DfuError { - case noLeftModule - case noUpdate - case wrongFile - case noStart - case aborted - case abortedRight - case abortedLeft - case unsupported - case lowBattery - case inProgress - case updateRequired - case wrongProductType - public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isActivityRunning: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum StoreError { - case missing(Swift.String) - case invalid(Swift.String, Any?) - case wrong(Swift.String) - case unknown - } -} -extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isDeviceReady: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ActivityError { - case notStarted - case notStartedLeft - case notStopped - case unknown - case modeNotSetActivityIsRunning - case previousNotStopped - case previousRestoring - case noUserParametersSet - case rawDataFlowIsRunning - case invalidMobilityScanResults - case outsideActivityDetected - case anomalyDetected - case mobility - public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var info: ZTCoreKit.ZTDeviceInfo? { get + set } -} -extension ZTCoreKit.ZTError.Enums { - public enum NetworkError { - case userLinkError - case inaccessible - case urlError(Foundation.URLError) - case generalError(any Swift.Error) - case noResponse - case invalidResponseType(Foundation.URLResponse) - case noResponseData(Foundation.HTTPURLResponse) - case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) - case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) - } -} -extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var batterylevel: ZTCoreKit.ZTBatteryLevel? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DecodableError { - case invalidKeyPath - case emptyKeyPath - case invalidJSON - public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var lastActivityDate: Foundation.Date { get } -} -public class ZTFirmwareRevision { - public var fwSystemVersion: Swift.String? { + public var generalState: ZTCoreKit.ZTMessageGeneralState? { get + set } - public var productType: ZTCoreKit.ZTProductCodeType? { + public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { get + set } - public var bmVersion: Swift.String? { + public var lowSoftwareInfo: Swift.String { get } - public var date: Foundation.Date? { + public var activityInfo: ZTCoreKit.ZTMessageActivity? { get + set } - public var code: Swift.String { + public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { get + set } - public var fwVersion: Swift.String { + public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { get + set } - public var versions: ZTCoreKit.ZTFwBmVersion? { + public var actualState: ZTCoreKit.ZTDeviceActualState + public var previousState: ZTCoreKit.ZTDeviceActualState + public var hasInitialUpdate: Swift.Bool { get } - public init(code: Swift.String) + final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> + final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> + final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> + final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> + final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> + final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> + final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> + final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> + final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> + final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> + final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> + final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> + final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> + final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> + final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> + final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> + final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> + final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> + final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> + final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> + final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> + required public init(peripheral: CoreBluetooth.CBPeripheral) + public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) + public func connect() + public func disconnect() @objc deinit + @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) + public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService + public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) + public func readGeneralState() } -extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool -} -public struct ZTFwBmVersion { - public var fwSystemMajorVersion: Swift.Int - public var fwSystemMinorVersion: Swift.Int - public var fwSystemBuildVersion: Swift.Int - public var bmMajorVersion: Swift.Int - public var bmMinorVersion: Swift.Int -} -extension ZTCoreKit.ZTFirmwareRevision { - public var fwSystemMajorVersion: Swift.Int { - get - } - public var fwSystemMinorVersion: Swift.Int { - get - } - public var fwSystemBuildVersion: Swift.Int { - get - } - public var bmMajorVersion: Swift.Int { - get - } - public var bmMinorVersion: Swift.Int { +extension ZTCoreKit.ZTDevice { + public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool + public var isLowBattery: Swift.Bool? { get } } -public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { - public enum Mode : Swift.UInt8 { - case manual - case automatic - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public var byte0: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } - public var byte1: Swift.UInt8? { - get - } - public var byte2: Swift.UInt8? { - get - } - public var byte3: Swift.UInt8? { - get - } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension ZTCoreKit.ZTMessageChunkData { +infix operator <<- : DefaultPrecedence +infix operator ->> : DefaultPrecedence +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) +public func ->> (left: T, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) +public func ->> (left: T?, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) public var side: ZTCoreKit.ZTModuleSide { get } - public var mode: ZTCoreKit.ZTMessageChunkData.Mode { - get - } - public var length: Swift.UInt8 { + public var baseMajor: Swift.UInt8 { get } - public var payload: Foundation.Data? { + public var baseMinor: Swift.UInt8 { get } - public var description: Swift.String { + public var baseBuild: Swift.UInt16 { get } -} -@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - public var stringValue: Swift.String? { + public var app: Swift.String { get } - @objc deinit -} -open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.NSDecimalNumber - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? - open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? - @objc deinit -} -public enum ZTLogLevel : Swift.String { - case all - case debug - case info - case error - case fatal - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var appMajor: Swift.UInt8 { get } -} -extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { - public var description: Swift.String { + public var appMinor: Swift.UInt8 { get } -} -public enum ZTLogCategory : Swift.String { - case networkAgent - case modules - case sdk - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var version: Swift.String { get } -} -extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case status - case acknowledgment - case realTimeEvent - case realTimeMetrics - case warning - case error - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } -} -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -@_hasMissingDesignatedInitializers public class ZTLogger { - public static let instance: ZTCoreKit.ZTLogger + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTLogger { - public func ztDebugPrint(_ message: Swift.String) - public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func print(_ value: @autoclosure () -> Any) +public protocol ZTActivityCachable : CoreData.NSManagedObject { + var id: Swift.String { get set } + var packets: Foundation.NSMutableOrderedSet? { get set } + var startDate: Foundation.Date? { get set } + #if compiler(>=5.3) && $AsyncAwait + func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif } -public struct ZTLoggerLine : Swift.Codable { - public static let notification: Foundation.Notification.Name - public static let ble: Foundation.Notification.Name - public var date: Foundation.Date - public let message: Swift.String - public let level: Swift.String - public let category: Swift.String - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws +extension ZTCoreKit.ZTActivityCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool } -@_hasMissingDesignatedInitializers open class ZTNetworkReachabilityManager { - open var isReachable: Swift.Bool { - get - } - open var isReachableOnCellular: Swift.Bool { - get - } - open var isReachableOnEthernetOrWiFi: Swift.Bool { - get - } - open var flags: SystemConfiguration.SCNetworkReachabilityFlags? { +@objc public enum LogLevel : Swift.Int { + case debug = 0 + case verbose = 1 + case info = 5 + case application = 10 + case warning = 15 + case error = 20 + public func name() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - @objc deinit } -public enum ZTNotifyData { - public enum GroupID : Swift.UInt8 { - case common - case warm - case running - case cycling - case safety - case generic - public var description: Swift.String { +@objc public protocol LoggerDelegate { + @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Metrics : Swift.CustomStringConvertible { + public var activityType: ZTCoreKit.ZTActivityType? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var metricId: Swift.UInt8? { get } - } - public enum CommonMessageId : Swift.UInt8 { - case MSG_GENERAL_STATES - case MSG_BATTERY_LEVEL - case MSG_MEMS - case MSG_FLASH - case MSG_TIME - case MSG_HARDWARE - case MSG_SOFTWARE - case MSG_ACTIVITY_INFO - case MSG_ACTIVITY_METADATA - case MSG_RAWDATA_HEADER - case MSG_RAWDATA_FRAME - case MSG_BTLOADER_INFO - case MSG_INACTIVITY_TIMEOUT - case MSG_CHUNK_SEND_STATUS - case MSG_CHUNK_DATA - case MSG_CHUNK_CONFIG - case MSG_DEBUG - public var description: Swift.String { + public var metric: ZTCoreKit.ZTRealtimeMetric? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var value: [Swift.UInt8]? { get } - } -} -extension ZTCoreKit.ZTNotifyData { - public enum WarmMessageId : Swift.UInt8 { - case MSG_HEATING_TEMP_1 - case MSG_HEATING_TEMP_2 - case MSG_HEATING_STEP_R_CNT - case MSG_HEATING_STEP_L_CNT - case MSG_HEATING_SETPOINT_R - case MSG_HEATING_SETPOINT_L - case MSG_GET_HEAT_TIMER - case MSG_HEATING_DEBUG_R - case MSG_HEATING_DEBUG_L - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -extension ZTCoreKit.ZTNotifyData { - public enum RunningMessageId : Swift.UInt8 { - case UNKNOWN +extension ZTCoreKit.ZTRealtimeMessage.Event { + public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case motion + case transition public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum CyclingMessageId : Swift.UInt8 { - case MSG_CADENCE + public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case stepForward + case stepBackward + case stepSideLeft + case stepSideRight + case stepUp + case stepDown public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum SafetyMessageId : Swift.UInt8 { - case MSG_CALIBRATION_SAFETY - case MSG_ALGO_RT_EVENT + public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case low + case medium + case high public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { @@ -2203,38 +2014,213 @@ extension ZTCoreKit.ZTNotifyData { } } } -extension ZTCoreKit.ZTNotifyData { - public enum GenericMessageId : Swift.UInt8 { - case MSG_ALGO_RT_EVENT - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public enum ZTMappingType { + case fromJSON + case toJSON + public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public func map(JSONObject: Any?, toObject object: N) -> N + final public func map(JSONString: Swift.String, toObject object: N) -> N + final public func map(JSON: [Swift.String : Any], toObject object: N) -> N + final public func map(JSONString: Swift.String) -> N? + final public func map(JSONObject: Any?) -> N? + final public func map(JSON: [Swift.String : Any]) -> N? + final public func mapArray(JSONString: Swift.String) -> [N]? + final public func mapArray(JSONObject: Any?) -> [N]? + final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] + final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? + final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? + public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? + public static func parseJSONString(JSONString: Swift.String) -> Any? + @objc deinit +} +extension ZTCoreKit.ZTMapper { + final public func map(JSONfile: Swift.String) -> N? + final public func mapArray(JSONfile: Swift.String) -> [N]? +} +extension ZTCoreKit.ZTMapper { + final public func toJSON(_ object: N) -> [Swift.String : Any] + final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] + final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] + final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] + final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? + final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? + public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? + public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? +} +extension ZTCoreKit.ZTMapper where N : Swift.Hashable { + final public func mapSet(JSONString: Swift.String) -> Swift.Set? + final public func mapSet(JSONObject: Any?) -> Swift.Set? + final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set + final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] + final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? +} +public enum ZTLoggerComponent : Swift.String { + case api + case app + case sdk + case firmware + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTLoggerSeverity : Swift.String { + case debug + case error + case info + case warn + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTDfuPackageType : Swift.String { + case APP + case BL + case SD + case SD_BL + case SD_BL_APP + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { + get + } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + @objc deinit +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Event : Swift.CustomStringConvertible { + public var timestamp: Swift.UInt32? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { + get + } + public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { + get + } + public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { + get + } + public var arguments: [Swift.UInt8]? { + get + } + public var description: Swift.String { + get } + public init(data: Foundation.Data) } } -public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { - case activityNone - case activityStarting - case eraseMemory - case activityRunning - case activityPaused - case activityStopping - case activityPendData - case activitySendData - case unknown +public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { + public enum Mode : Swift.UInt8 { + case manual + case automatic + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var byte0: Swift.UInt8? { + get + } + public var byte1: Swift.UInt8? { + get + } + public var byte2: Swift.UInt8? { + get + } + public var byte3: Swift.UInt8? { + get + } + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkData { + public var side: ZTCoreKit.ZTModuleSide { + get + } + public var mode: ZTCoreKit.ZTMessageChunkData.Mode { + get + } + public var length: Swift.UInt8 { + get + } + public var payload: Foundation.Data? { + get + } public var description: Swift.String { get } +} +public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case timestamp + case modeId + case precisionMode + case numberOfSteps public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } +public enum ZTLogLevel : Swift.String { + case all + case debug + case info + case error + case fatal + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +public enum ZTLogCategory : Swift.String { + case networkAgent + case modules + case sdk + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType where Key : Swift.Hashable, Key : Swift.RawRepresentable, Value : ZTCoreKit.ZTMappable, Key.RawValue == Swift.String { public init() public func transformFromJSON(_ value: Any?) -> [Key : Value]? @@ -2242,494 +2228,367 @@ public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType wher public typealias JSON = Any public typealias Object = [Key : Value] } -public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void -public enum ZTScannerResult { - case success(device: ZTCoreKit.ZTDevice) - case cancelled - case failed((any Swift.Error)?) -} -@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var side: ZTCoreKit.ZTModuleSide { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { + public var bootloaderVersion: Swift.UInt8 { get } - open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { + public var appSupportVersion: Swift.UInt8 { get } - open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { + public var softDeviceId: Swift.UInt8 { get } - open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { + public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { get } - open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { + public var description: Swift.String { get } - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + public enum DfuState : Swift.UInt8 { + case none + case inProgress + case received + case readyForCopy + case activation + case done + case error + case validationError + case activationError + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTServices { - public enum Primary { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - case test - public var uid: Swift.String { - get - } - public var uuid: CoreBluetooth.CBUUID { - get - } - public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +extension ZTCoreKit.ZTCore { + final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) + final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +} +public struct ZTMessageTime : Swift.CustomStringConvertible { + public var timestamp: Swift.Int64 + public var side: ZTCoreKit.ZTModuleSide + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { + get + } +} +public enum ZTNotifyData { + public enum GroupID : Swift.UInt8 { + case common + case warm + case running + case cycling + case safety + case generic + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum PrimaryOld { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public enum CommonMessageId : Swift.UInt8 { + case MSG_GENERAL_STATES + case MSG_BATTERY_LEVEL + case MSG_MEMS + case MSG_FLASH + case MSG_TIME + case MSG_HARDWARE + case MSG_SOFTWARE + case MSG_ACTIVITY_INFO + case MSG_ACTIVITY_METADATA + case MSG_RAWDATA_HEADER + case MSG_RAWDATA_FRAME + case MSG_BTLOADER_INFO + case MSG_INACTIVITY_TIMEOUT + case MSG_CHUNK_SEND_STATUS + case MSG_CHUNK_DATA + case MSG_CHUNK_CONFIG + case MSG_DEBUG + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceInformation { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case manufacturerName - case modelNumber - case serialNumber - case firmwareRevision - case hardwareRevision - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum WarmMessageId : Swift.UInt8 { + case MSG_HEATING_TEMP_1 + case MSG_HEATING_TEMP_2 + case MSG_HEATING_STEP_R_CNT + case MSG_HEATING_STEP_L_CNT + case MSG_HEATING_SETPOINT_R + case MSG_HEATING_SETPOINT_L + case MSG_GET_HEAT_TIMER + case MSG_HEATING_DEBUG_R + case MSG_HEATING_DEBUG_L + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceDFU { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case dfuControlPoint - case dfuPacket - case dfuButtonless - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum RunningMessageId : Swift.UInt8 { + case UNKNOWN + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } } -public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { - case staticType - case dynamic +extension ZTCoreKit.ZTNotifyData { + public enum CyclingMessageId : Swift.UInt8 { + case MSG_CADENCE + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum SafetyMessageId : Swift.UInt8 { + case MSG_CALIBRATION_SAFETY + case MSG_ALGO_RT_EVENT + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum GenericMessageId : Swift.UInt8 { + case MSG_ALGO_RT_EVENT + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { + case activityNone + case activityStarting + case eraseMemory + case activityRunning + case activityPaused + case activityStopping + case activityPendData + case activitySendData + case unknown + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined case walking case running - case cycling + case pedaling case jump case stairsUp case stairsDown - case staticOther - case kneel + case standing + case sitting + case kneeling case tiptoe case vibration - case trampling - case crawling - case dynamicOther case slip - case trip - case active - case inactive + case incident + case freewheel public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -open class ZTTransformOf : ZTCoreKit.ZTTransformType { - public typealias Object = ObjectType - public typealias JSON = JSONType - public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) - open func transformFromJSON(_ value: Any?) -> ObjectType? - open func transformToJSON(_ value: ObjectType?) -> JSONType? - @objc deinit +public protocol ZTDfuDelegate : AnyObject { + func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) + func dfuDelegate(didFinish: Swift.Bool) + func dfuDelegate(didFail error: ZTCoreKit.ZTError?) + func dfuDelegate(progress: Swift.Float?) + func dfuDelegate(leftDidFinish newVersion: Swift.String?) + func dfuDelegate(rightDidFinish newVersion: Swift.String?) } -@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { - @objc open var softdevice: Swift.UInt32 { +public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var isRight: Swift.Bool { get } - @objc open var bootloader: Swift.UInt32 { + public var isLeft: Swift.Bool { get } - @objc open var application: Swift.UInt32 { + public var selectedMode: ZTCoreKit.ZTActivityMode? { get } - @objc deinit -} -public enum ZTActivityMode : Swift.UInt8, Swift.Codable { - case safety - case walking - case running - case cycling - case mobility - public var name: Swift.String { + public var timeInterval: Swift.Int? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case defaultMode - case economicMode - case performanceMode - public var parameters: [Swift.UInt8] { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public class ZTUserShoe : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var code: Swift.String? + public var attributes: [Swift.String : Any]? + public var firmware: ZTCoreKit.ZTUserShoe.Firmware? + public var organizationId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + public class Firmware : ZTCoreKit.ZTMappable { + public var type: Swift.String? + public var arch: Swift.String? + public var version: Swift.String? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -} -@_hasMissingDesignatedInitializers open class Adapter { - @objc deinit -} -@_hasMissingDesignatedInitializers open class Retrier { @objc deinit } -@_hasMissingDesignatedInitializers open class Interceptor { - @objc deinit -} -extension ZTCoreKit.ZTCore { - final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) - final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) - final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) -} extension Foundation.Data { - public var hexString: Swift.String { - get - } -} -public protocol DataConvertible { - static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - public static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension Swift.UInt8 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt16 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt32 : ZTCoreKit.DataConvertible { -} -extension Swift.Int : ZTCoreKit.DataConvertible { -} -extension Swift.Float : ZTCoreKit.DataConvertible { -} -extension Swift.Double : ZTCoreKit.DataConvertible { -} -extension Swift.String : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data -} -extension Foundation.Data : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data -} -public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { - init(map: ZTCoreKit.ZTMap) throws -} -extension ZTCoreKit.ZTImmutableMappable { - public func mapping(map: ZTCoreKit.ZTMap) - public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws -} -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType -} -extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { - final public func map(JSON: [Swift.String : Any]) throws -> N - final public func map(JSONString: Swift.String) throws -> N - final public func map(JSONObject: Any) throws -> N - final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] - final public func mapArray(JSONString: Swift.String) throws -> [N] - final public func mapArray(JSONObject: Any) throws -> [N] - final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] - final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] - final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] -} -@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { + public func macAddress() -> Swift.String? + public var bytes: [Swift.UInt8] { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@objc public enum DFUUuidType : Swift.Int { - case legacyService = 0 - case legacyControlPoint = 1 - case legacyPacket = 2 - case legacyVersion = 3 - case secureService = 4 - case secureControl = 5 - case securePacket = 6 - case buttonlessService = 7 - case buttonlessCharacteristic = 8 - case buttonlessWithoutBondSharing = 9 - case buttonlessWithBondSharing = 10 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexDescription: Swift.String { get } + public init?(hex: Swift.String) + public func getUInt(offset: Swift.Int) -> Swift.UInt16 + public func getUInt32(offset: Swift.Int) -> Swift.UInt32 + public func getFloat(offset: Swift.Int) -> Swift.Float + public func getByte(at index: Swift.Int) -> Swift.Int8 + public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 + public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 + public mutating func append(byte data: Swift.Int8) + public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) + public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -@objc public class DFUUuid : ObjectiveC.NSObject { - @objc final public let uuid: CoreBluetooth.CBUUID - @objc final public let type: ZTCoreKit.DFUUuidType - @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) - @objc deinit +extension Foundation.Data { + public func dataObject(at index: Foundation.Data.Index = 0) -> T + public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int + public func object(at offset: Swift.Int) -> T } -@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { - @objc public var legacyDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { +extension Swift.Numeric { + public var data: Foundation.Data { get } - @objc override dynamic public init() - @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) - @objc deinit } -public class ZTUser : ZTCoreKit.ZTMappable { - public var attributes: [Swift.String : Any] - public var id: Swift.String? - public var organizationId: Swift.String? - public var appId: Swift.String? - public var createdAt: Swift.String? - public var updatedAt: Swift.String? - public var userId: Swift.String? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public class ZTAchievement : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var type: Swift.String? - public var activityId: Swift.String? - public var code: Swift.String? - public var appuserId: Swift.String? - public var data: [Swift.String : Any]? - public var duration: Swift.Int64? - public var calories: Swift.Double? - public var createdAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { - final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) - final public func updateFirmware(path: Swift.String) - @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) - @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) - @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) - @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) - final public func checkDfuState() -} -@_hasMissingDesignatedInitializers open class ZTWebSocket { - @objc deinit -} -open class ZTActivity : Swift.Codable { - public var id: Swift.String { +public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { + case jump + case run + case walk + public var parameters: [Swift.UInt8] { get - set } - public var activityIdentifier: Swift.String - public var appId: Swift.String? - public var activityType: Swift.String - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var startTimestamp: Swift.Int64? - public var endTimestamp: Swift.Int64? - public var tz: Swift.String? - public var status: Swift.String? - public var state: ZTCoreKit.ZTDeviceActualState { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } - public var packetsIds: [Swift.UInt16] - public var cachedPackets: [ZTCoreKit.ZTSegmentData] - public var metaData: ZTCoreKit.ZTMessageActivityMetadata? - public var stopReason: ZTCoreKit.ZTActivityLastStopReason? - public var isRawDataMode: Swift.Bool - public var isAutomatic: Swift.Bool - public var forceStop: Swift.Bool - public var isInterrupted: Swift.Bool - public var firstChunkId: Swift.UInt16? - public var lastChunkId: Swift.UInt16? - public var chunkCount: Swift.UInt16? - public var anchorTimestamp: Swift.Int64? - public var customActivityStartTimestamp: Swift.Int64? - public var customActivityFirstChunkId: Swift.UInt16? - public var fwVersion: Swift.String? - public var shoesSerial: Swift.String? - public init() - open func save() - public func loadAll(firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public func lastSavedChunkId(startId: Swift.UInt16? = 0, lastId: Swift.UInt16? = 0) -> Swift.UInt16 - public func addToCache(_ segment: ZTCoreKit.ZTSegmentData) - public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) - public func saveCachedPackets() - @objc deinit - open func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTActivity { - public var duration: Swift.Double { +public enum ZTEnvironment { + case dev + case staging + case production + case zcdev + case zcstaging + case zcproduction + public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -public protocol ZTDfuDelegate : AnyObject { - func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) - func dfuDelegate(didFinish: Swift.Bool) - func dfuDelegate(didFail error: ZTCoreKit.ZTError?) - func dfuDelegate(progress: Swift.Float?) - func dfuDelegate(leftDidFinish newVersion: Swift.String?) - func dfuDelegate(rightDidFinish newVersion: Swift.String?) -} -@objc public class DFUServiceInitiator : ObjectiveC.NSObject { - @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? - @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? - @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? - @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate - @objc public var packetReceiptNotificationParameter: Swift.UInt16 - @objc public var forceDfu: Swift.Bool - @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool - @objc public var connectionTimeout: Swift.Double - @objc public var dataObjectPreparationDelay: Swift.Double - @objc public var alternativeAdvertisingNameEnabled: Swift.Bool - @objc public var alternativeAdvertisingName: Swift.String? - @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool - @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper - @objc public var disableResume: Swift.Bool - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) - @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator - @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") - @objc public func start() -> ZTCoreKit.DFUServiceController? - @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? - @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @objc deinit -} -public protocol ZTPlistStorage { - static var plist: ZTCoreKit.ZTPlist { get } -} -public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var right: Swift.UInt8 - public var left: Swift.UInt8 - public var min: Swift.UInt8 { - get - } - public var description: Swift.String { +public enum ZTModuleSide : Swift.String, Swift.Codable { + case left + case right + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public init() - public init(data: Foundation.Data) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } +public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable +public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable @objc public enum DFUError : Swift.Int { case remoteLegacyDFUSuccess = 1 case remoteLegacyDFUInvalidState = 2 @@ -2818,369 +2677,186 @@ extension ZTCoreKit.DFUState : Swift.CustomStringConvertible { @objc func dfuStateDidChange(to state: ZTCoreKit.DFUState) @objc func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) } -public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var baseMajor: Swift.UInt8 { - get - } - public var baseMinor: Swift.UInt8 { - get - } - public var baseBuild: Swift.UInt16 { - get - } - public var app: Swift.String { - get - } - public var appMajor: Swift.UInt8 { - get - } - public var appMinor: Swift.UInt8 { - get - } - public var version: Swift.String { - get - } - public var description: Swift.String { - get - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTPlist { - public func encrypt(_ rawValue: Any?) -> Foundation.Data? - public func decrypt(_ data: Foundation.Data?) -> Foundation.Data? - public func decryptedDictionary(decryptedData rawValue: Any?) -> [Swift.String : Any]? - public func decryptedCollection(decryptedData rawValue: Any?) -> [Any]? - public func decryptedString(decryptedData rawValue: Any?) -> Swift.String? - public func decryptedBool(decryptedData rawValue: Any?) -> Swift.Bool? - public func decryptedInt(decryptedData rawValue: Any?) -> Swift.Int? - public func decryptedFloat(decryptedData rawValue: Any?) -> Swift.Float? - public func decryptedDouble(decryptedData rawValue: Any?) -> Swift.Double? - public func decryptedDate(decryptedData rawValue: Any?) -> Foundation.Date? -} -open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { - public typealias Object = UIKit.UIColor - public typealias JSON = Swift.String - public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? - open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? - @objc deinit -} -public class ZTActivityComment : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var timeZone: Swift.String? - public var timestamp: Foundation.Date? - public var text: Swift.String? - public var activityId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - public var mediaFiles: [ZTCoreKit.ZTMediaFile]? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTSegmentData : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var id: Swift.UInt16 - public var activityId: Swift.String? - public var activityType: ZTCoreKit.ZTActivityMode? - public var timestamp: Swift.Int64? - public var duration: Swift.Int? - public var status: ZTCoreKit.ZTSegmentData.Status - public var timestampType: ZTCoreKit.ZTSegmentData.TimestampType - public var bmTimestampType: ZTCoreKit.ZTSegmentData.BmTimestampType - public var packetType: ZTCoreKit.ZTSegmentData.PacketType - public var originalTimestamp: Swift.Int64 - public var packetsNumber: Swift.UInt8 - public var rawDescription: Swift.String { - get - } - public var fwVersion: Swift.String? - public var retryCount: Swift.Int - public enum CodingKeys : Swift.CodingKey { - case id - case activityId - case rawData - case timestamp - case duration - case status - case packetType - case timestampType - case originalTimestamp - case packetsNumber - case fwVersion - case retryCount - public static func == (a: ZTCoreKit.ZTSegmentData.CodingKeys, b: ZTCoreKit.ZTSegmentData.CodingKeys) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public init?(stringValue: Swift.String) - public init?(intValue: Swift.Int) - public var hashValue: Swift.Int { - get - } - public var intValue: Swift.Int? { - get - } - public var stringValue: Swift.String { +public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { + public enum Status : Swift.UInt8 { + case success + case errorOutOfRange + case errorSendFailed + case errorUnexpected + case errorNotFound + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } - public init(data: Foundation.Data) - public init(data: Foundation.Data, activityId: Swift.String, fwversion: Swift.String? = nil) - required public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws - @objc deinit -} -extension ZTCoreKit.ZTSegmentData { - public static func lastSegmentId(activityId: Swift.String) -> Swift.Int - public static func segmentsCount(activityId: Swift.String) -> Swift.Int - public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, startId: Swift.UInt16) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllPackets(activityId: Swift.String, startId: Swift.UInt16? = nil, lastId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.Int] - public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16] - public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.UInt16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTSegmentData? - public static func loadPacket(activityId: Swift.String?, id: Swift.UInt16) -> ZTCoreKit.ZTSegmentData? - public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> ZTCoreKit.ZTSegmentData? - public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTSegmentData - public static func loadAll(activityId: Swift.String, lastChunkId: Swift.UInt16?) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func clear(activityId: Swift.String?) - public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.UInt16? - public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMissedPackets(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16]? - public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.UInt16, lastId: Swift.UInt16?) -> Swift.UInt16? - public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.UInt16, anchorTime: Swift.Int64?) -} -extension ZTCoreKit.ZTSegmentData { - public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool - public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.UInt16?, endIndex: Swift.UInt16?) -> Swift.Bool - public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.UInt16) - public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.UInt16) -> Swift.Bool - public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> Swift.Bool - public static func isSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16?, endId: Swift.UInt16?) -> Swift.Bool - public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.UInt16) -> Swift.Bool -} -extension ZTCoreKit.ZTSegmentData : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTSegmentData, rhs: ZTCoreKit.ZTSegmentData) -> Swift.Bool -} -public enum ZTActivitySummaryStatus : Swift.String { - case started - case complete - case processing - case errored - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public let bytes: [Swift.UInt8] + public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? + public var chunkId: Swift.UInt16? + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } } -open class ZTActivitySummary : ZTCoreKit.ZTMappable { - public var id: Swift.String - public var activityType: Swift.String - public var activityIdentifier: Swift.String - public var start: Swift.String? - public var end: Swift.String? - public var duration: Swift.Int? - public var tz: Swift.String? - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var status: ZTCoreKit.ZTActivitySummaryStatus? - required public init?(map: ZTCoreKit.ZTMap) - open func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - final public let dateFormatter: Foundation.DateFormatter - public init(dateFormatter: Foundation.DateFormatter) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? +open class ZTTransformOf : ZTCoreKit.ZTTransformType { + public typealias Object = ObjectType + public typealias JSON = JSONType + public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) + open func transformFromJSON(_ value: Any?) -> ObjectType? + open func transformToJSON(_ value: ObjectType?) -> JSONType? @objc deinit } -@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { - final public var advertisingServices: [CoreBluetooth.CBUUID]? - final public var managerState: ZTCoreKit.ZTBleManagerState { +open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { + public typealias Object = T + public typealias JSON = T.RawValue + public init() + open func transformFromJSON(_ value: Any?) -> T? + open func transformToJSON(_ value: T?) -> T.RawValue? + @objc deinit +} +extension Foundation.UserDefaults { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { get set } - final public class var instance: ZTCoreKit.ZTBleManager { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { get + set } - final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { get + set } - final public var macAddress: Swift.String? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { get + set } - final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? - final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { get + set } - final public var product: ZTCoreKit.ZTProductType? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { get set } - final public var connectedDevice: ZTCoreKit.ZTDevice? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { get + set } - final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { get + set } - final public var scanning: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { get + set } - final public var isDfuMode: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { get + set } - final public let onBluetoothStateChange: ZTCoreKit.ZTSignal - final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onDeviceDiscovered: ZTCoreKit.ZTSignal - final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - @objc deinit + public subscript(key: Swift.String) -> Any? { + get + set(value) + } + public func value(forKey key: Swift.String) -> T? + public func clear(_ key: Swift.String) + public func clear(_ key: ZTCoreKit.ZTDefaultsKey) + public func clearAll() } -extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +extension Foundation.DateFormatter { + convenience public init(withFormat format: Swift.String, locale: Swift.String) } -public enum ZTAlgoCommand : Swift.UInt8 { - case getStatus - case startNewChunk - case changeProductMode - case setPrecisionMode - case setMinimumNumberOfStrides - case enableStreamingOfValues - case setDisconnectionDelay - case setUserInfo - case setDailyTimestamp - case getPositionOfPods - case enableSpecificPacket - case holdRealtimeStreaming - case getSingleTimeMetrics - case calibrateGravity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { + public init() + @objc deinit +} +public enum ZTDFUState : Swift.Int { + case started + case startedLeft + case completedLeft + case startedRight + case completedRight + case completed + case error + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } } -public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case monitoring - case gaming - public var parameters: [Swift.UInt8] { +public class ZTFirmwareRevision { + public var fwSystemVersion: Swift.String? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var productType: ZTCoreKit.ZTProductCodeType? { get } -} -public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var isRight: Swift.Bool { + public var bmVersion: Swift.String? { get } - public var isLeft: Swift.Bool { + public var date: Foundation.Date? { get } - public var selectedMode: ZTCoreKit.ZTActivityMode? { + public var code: Swift.String { get } - public var timeInterval: Swift.Int? { + public var fwVersion: Swift.String { get } - public var description: Swift.String { + public var versions: ZTCoreKit.ZTFwBmVersion? { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + public init(code: Swift.String) + @objc deinit } -public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { - case jump - case run - case walk - public var parameters: [Swift.UInt8] { +extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool +} +public struct ZTFwBmVersion { + public var fwSystemMajorVersion: Swift.Int + public var fwSystemMinorVersion: Swift.Int + public var fwSystemBuildVersion: Swift.Int + public var bmMajorVersion: Swift.Int + public var bmMinorVersion: Swift.Int +} +extension ZTCoreKit.ZTFirmwareRevision { + public var fwSystemMajorVersion: Swift.Int { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var fwSystemMinorVersion: Swift.Int { get } -} -public enum ZTDFUState : Swift.Int { - case started - case startedLeft - case completedLeft - case startedRight - case completedRight - case completed - case error - public var description: Swift.String { + public var fwSystemBuildVersion: Swift.Int { get } - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var bmMajorVersion: Swift.Int { + get + } + public var bmMinorVersion: Swift.Int { get } } -extension ZTCoreKit.ZTCore { - final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) - final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +@_hasMissingDesignatedInitializers public class ZTCoreDataStack { + public static let shared: ZTCoreKit.ZTCoreDataStack + public var context: CoreData.NSManagedObjectContext { + get + set + } + public func oneTimeBackgroundContext() -> CoreData.NSManagedObjectContext + public func saveOneTimeBackgroundContext(_ oneTimeBackgroundContext: CoreData.NSManagedObjectContext) throws + public func saveContext() throws + @objc deinit +} +public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { + var rawData: Foundation.Data? { get set } } -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable public class ZTMediaFile : ZTCoreKit.ZTMappable { public var id: Swift.String? public var name: Swift.String? @@ -3195,537 +2871,583 @@ public class ZTMediaFile : ZTCoreKit.ZTMappable { public func mapping(map: ZTCoreKit.ZTMap) @objc deinit } -public protocol ZTMapContext { -} -final public class ZTMap { - final public let mappingType: ZTCoreKit.ZTMappingType - final public var JSON: [Swift.String : Any] { +@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } - final public var isKeyPresent: Swift.Bool { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { + public typealias Object = T + public typealias JSON = Any + public init() + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? + open func transformToJSON(_ value: T?) -> Any? + @objc deinit +} +public protocol ZTTransformType { + associatedtype Object + associatedtype JSON + func transformFromJSON(_ value: Any?) -> Self.Object? + func transformToJSON(_ value: Self.Object?) -> Self.JSON? +} +open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.NSDecimalNumber + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? + open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? + @objc deinit +} +@objc public enum DFUUuidType : Swift.Int { + case legacyService = 0 + case legacyControlPoint = 1 + case legacyPacket = 2 + case legacyVersion = 3 + case secureService = 4 + case secureControl = 5 + case securePacket = 6 + case buttonlessService = 7 + case buttonlessCharacteristic = 8 + case buttonlessWithoutBondSharing = 9 + case buttonlessWithBondSharing = 10 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - final public var currentValue: Any? { +} +@objc public class DFUUuid : ObjectiveC.NSObject { + @objc final public let uuid: CoreBluetooth.CBUUID + @objc final public let type: ZTCoreKit.DFUUuidType + @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { + @objc public var legacyDFUService: CoreBluetooth.CBUUID { get } - final public var currentKey: Swift.String? { + @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { get } - final public var nestedKeyDelimiter: Swift.String { + @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { get } - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - final public let toObject: Swift.Bool - public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUPacket: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { get } - final public func value() -> T? + @objc override dynamic public init() + @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) @objc deinit } -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, default: T) throws -> T - final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +@_hasMissingDesignatedInitializers public class ZTLogger { + public static let instance: ZTCoreKit.ZTLogger + @objc deinit } -public struct ZTEntry : Swift.Equatable { - public enum EntryType : Swift.Int { - case file - case directory - case symlink - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } - } - public func path(using encoding: Swift.String.Encoding) -> Swift.String - public var path: Swift.String { - get - } - public var fileAttributes: [Foundation.FileAttributeKey : Any] { - get - } - public var checksum: ZTCoreKit.CRC32 { - get - } - public var type: ZTCoreKit.ZTEntry.EntryType { - get - } - public var compressedSize: Swift.Int { - get - } - public var uncompressedSize: Swift.Int { - get - } - public static func == (lhs: ZTCoreKit.ZTEntry, rhs: ZTCoreKit.ZTEntry) -> Swift.Bool +extension ZTCoreKit.ZTLogger { + public func ztDebugPrint(_ message: Swift.String) + public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) } -@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { - public var name: Swift.String - public var description: Swift.String? - public var mimeType: Swift.String? - public var key: Swift.String? - public var url: Swift.String? - public var data: Foundation.Data? - convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) - required convenience public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit +public struct ZTLoggerLine : Swift.Codable { + public static let notification: Foundation.Notification.Name + public static let ble: Foundation.Notification.Name + public var date: Foundation.Date + public let message: Swift.String + public let level: Swift.String + public let category: Swift.String + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@objc public protocol DFUPeripheralSelectorDelegate { + @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool + @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? } -@propertyWrapper public struct ZTPlisted { - public let key: Swift.String - public let plist: ZTCoreKit.ZTPlist - public let defaultValue: Value - public init(key: Swift.String, plist: ZTCoreKit.ZTPlist, defaultValue: Value) - public var wrappedValue: Value { +public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case success + case busy + case invalidParam + case invalidState + case fwResForbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerResponse + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } } -public struct ZTMapError : Swift.Error { - public var key: Swift.String? - public var currentValue: Any? - public var reason: Swift.String? - public var file: Swift.StaticString? - public var function: Swift.StaticString? - public var line: Swift.UInt? - public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) -} -extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { - public var description: Swift.String { +public enum ZTActivityMode : Swift.UInt8, Swift.Codable { + case safety + case walking + case running + case cycling + case mobility + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -public enum ZTPeriod : Swift.String { - case day - case week - case month - case year +public enum ZTActivitySummaryStatus : Swift.String { + case started + case complete + case processing + case errored public init?(rawValue: Swift.String) public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public func save() - public func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool - public static func forceSegmentsUpload(activityId: Swift.String) - public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTSegmentData) -} -extension Foundation.FileManager { - public func zipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, shouldKeepParent: Swift.Bool = true, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, progress: Foundation.Progress? = nil) throws - public func unzipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, preferredEncoding: Swift.String.Encoding? = nil) throws +open class ZTActivitySummary : ZTCoreKit.ZTMappable { + public var id: Swift.String + public var activityType: Swift.String + public var activityIdentifier: Swift.String + public var start: Swift.String? + public var end: Swift.String? + public var duration: Swift.Int? + public var tz: Swift.String? + public var startDate: Foundation.Date? + public var endDate: Foundation.Date? + public var status: ZTCoreKit.ZTActivitySummaryStatus? + required public init?(map: ZTCoreKit.ZTMap) + open func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Foundation.URL { - public func isContained(in parentDirectoryURL: Foundation.URL) -> Swift.Bool +public protocol ZTCBPeripheralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBPeripheralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + var isAdvertising: Swift.Bool { get } + func startAdvertising(_ advertisementData: [Swift.String : Any]?) + func stopAdvertising() + func setDesiredConnectionLatency(_ latency: CoreBluetooth.CBPeripheralManagerConnectionLatency, for central: CoreBluetooth.CBCentral) + func add(_ service: CoreBluetooth.CBMutableService) + func remove(_ service: CoreBluetooth.CBMutableService) + func removeAllServices() + func respond(to request: CoreBluetooth.CBATTRequest, withResult result: CoreBluetooth.CBATTError.Code) + func updateValue(_ value: Foundation.Data, for characteristic: CoreBluetooth.CBMutableCharacteristic, onSubscribedCentrals centrals: [CoreBluetooth.CBCentral]?) -> Swift.Bool +} +extension CoreBluetooth.CBPeripheralManager : ZTCoreKit.ZTCBPeripheralManagerProtocol { } -public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { - get - } - public var byte1: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var byte2: Swift.UInt8? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { + public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason + public var chunkCount: Swift.Int16 + public var firstChunkId: Swift.Int16 + public var lastChunkId: Swift.Int16 { get } - public var byte3: Swift.UInt8? { + public var startTime: Swift.UInt32 + public var endTime: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } - public init(bytes: [Swift.UInt8]) public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageGeneralState { - public var activityStartedRight: Swift.Bool { +open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { + public typealias Object = UIKit.UIColor + public typealias JSON = Swift.String + public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? + open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? + @objc deinit +} +public class ZTReachability { + public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter + public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { get + set } - public var activityStartedLeft: Swift.Bool { - get + public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? + public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? + public var managerStarted: Swift.Bool + public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { + case all, wifi, cellular, wiredEthernet, loopback, other, none + public var description: Swift.String { + get + } + public func getInterfaceType() -> Network.NWInterface.InterfaceType + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public var hashValue: Swift.Int { + get + } + } + public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { + case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline + public var description: Swift.String { + get + } + public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool + } + public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) + public func startManager() + public func stopManager() + @objc deinit +} +public let ztActivityKey: Swift.String +@_inheritsConvenienceInitializers @objc(ZTActivity) open class ZTActivity : CoreData.NSManagedObject, ZTCoreKit.ZTActivityCachable { + @objc @NSManaged dynamic public var id: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityIdentifier: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var appId: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityType: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var tz: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var status: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packets: Foundation.NSMutableOrderedSet? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var metaDataRawValue: Foundation.Data? { + @objc get + @objc set } - public var pairIsConnected: Swift.Bool { + public var metaData: ZTCoreKit.ZTMessageActivityMetadata? { get } - public var memsHasError: Swift.Bool { - get + public func metaData(_ newValue: ZTCoreKit.ZTMessageActivityMetadata?) + @objc @NSManaged dynamic public var stopReasonRawValue: Foundation.Data? { + @objc get + @objc set } - public var firmwareDifferent: Swift.Bool { + public var stopReason: ZTCoreKit.ZTActivityLastStopReason? { get } - public var actualState: ZTCoreKit.ZTDeviceActualState { - get + public func stopReason(_ newValue: ZTCoreKit.ZTActivityLastStopReason?) + @objc @NSManaged dynamic public var isRawDataMode: Swift.Bool { + @objc get + @objc set } - public var previousState: ZTCoreKit.ZTDeviceActualState { - get + @objc @NSManaged dynamic public var isAutomatic: Swift.Bool { + @objc get + @objc set } - public var description: Swift.String { - get + @objc @NSManaged dynamic public var forceStop: Swift.Bool { + @objc get + @objc set } -} -@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { - @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool - @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? - @objc override dynamic public init() - @objc deinit -} -public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { - public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason - public var chunkCount: Swift.UInt16 - public var firstChunkId: Swift.UInt16 - public var lastChunkId: Swift.UInt16 { - get + @objc @NSManaged dynamic public var isInterrupted: Swift.Bool { + @objc get + @objc set } - public var startTime: Swift.UInt32 - public var endTime: Swift.UInt32 - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { - get + @objc @NSManaged dynamic public var firstChunkId: Swift.Int16 { + @objc get + @objc set } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { - public typealias Object = T - public typealias JSON = Any - public init() - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? - open func transformToJSON(_ value: T?) -> Any? - @objc deinit -} -open class ZTURLTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.URL - public typealias JSON = Swift.String - public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) - open func transformFromJSON(_ value: Any?) -> Foundation.URL? - open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? - @objc deinit -} -public enum ZTBleManagerState : Swift.CustomStringConvertible { - case off - case on - case idle - case scanning - case unauthorized - case resetting - case unknown - case unsupported - public var description: Swift.String { - get + @objc @NSManaged dynamic public var lastChunkId: Swift.Int16 { + @objc get + @objc set } - public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var chunkCount: Swift.Int16 { + @objc get + @objc set } -} -public class ZTUserShoe : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var code: Swift.String? - public var attributes: [Swift.String : Any]? - public var firmware: ZTCoreKit.ZTUserShoe.Firmware? - public var organizationId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - public class Firmware : ZTCoreKit.ZTMappable { - public var type: Swift.String? - public var arch: Swift.String? - public var version: Swift.String? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit + @objc @NSManaged dynamic public var anchorTimestamp: Swift.Int64 { + @objc get + @objc set } - @objc deinit -} -public enum ZTLoggerComponent : Swift.String { - case api - case app - case sdk - case firmware - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityStartTimestamp: Swift.Int64 { + @objc get + @objc set } -} -public enum ZTLoggerSeverity : Swift.String { - case debug - case error - case info - case warn - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityFirstChunkId: Swift.Int16 { + @objc get + @objc set } -} -public enum ZTMappingType { - case fromJSON - case toJSON - public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set } -} -final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public func map(JSONObject: Any?, toObject object: N) -> N - final public func map(JSONString: Swift.String, toObject object: N) -> N - final public func map(JSON: [Swift.String : Any], toObject object: N) -> N - final public func map(JSONString: Swift.String) -> N? - final public func map(JSONObject: Any?) -> N? - final public func map(JSON: [Swift.String : Any]) -> N? - final public func mapArray(JSONString: Swift.String) -> [N]? - final public func mapArray(JSONObject: Any?) -> [N]? - final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] - final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? - final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? - public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? - public static func parseJSONString(JSONString: Swift.String) -> Any? - @objc deinit -} -extension ZTCoreKit.ZTMapper { - final public func map(JSONfile: Swift.String) -> N? - final public func mapArray(JSONfile: Swift.String) -> [N]? -} -extension ZTCoreKit.ZTMapper { - final public func toJSON(_ object: N) -> [Swift.String : Any] - final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] - final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] - final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] - final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? - final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? - public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? - public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? -} -extension ZTCoreKit.ZTMapper where N : Swift.Hashable { - final public func mapSet(JSONString: Swift.String) -> Swift.Set? - final public func mapSet(JSONObject: Any?) -> Swift.Set? - final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set - final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] - final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? -} -public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { - public enum Status : Swift.UInt8 { - case success - case errorOutOfRange - case errorSendFailed - case errorUnexpected - case errorNotFound - case unknown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + @objc @NSManaged dynamic public var shoesSerial: Swift.String? { + @objc get + @objc set } - public let bytes: [Swift.UInt8] - public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? - public var chunkId: Swift.UInt16? - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { + public var duration: Swift.Double { get } + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + public func loadAll(firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + public func lastSavedChunkId(startId: Swift.Int16? = 0, lastId: Swift.Int16? = 0) -> Swift.Int16 + public func addToCache(_ segment: ZTCoreKit.ZTPacket) + public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) + public func saveCachedPackets() + #if compiler(>=5.3) && $AsyncAwait + open func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif + @objc deinit } -@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String +extension ZTCoreKit.ZTActivity { + @nonobjc public class func fetchRequest() -> CoreData.NSFetchRequest + public func getPacketIds() -> [Swift.Int16] + @discardableResult + public func setPackets(ids: [Swift.Int16]) -> [Swift.Int16] + @discardableResult + public func addPacket(id: Swift.Int16) -> [Swift.Int16] + public func getActulState() -> ZTCoreKit.ZTDeviceActualState + public func update(actualState: ZTCoreKit.ZTDeviceActualState) +} +@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String open var data: Foundation.Data? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { - case undefined - case userRequest - case memoryFull - case inactivity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } -} -extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) - @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) - public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) - public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) - public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) -} -extension Foundation.DateFormatter { - convenience public init(withFormat format: Swift.String, locale: Swift.String) +extension ZTCoreKit.ZTCore { + final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) + final public func updateFirmware(path: Swift.String) } -open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { - public init() - @objc deinit +extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { + @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) + final public func dfuFailed(error: ZTCoreKit.ZTError) + @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) + @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) + @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) + final public func checkDfuState() } -@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +@_inheritsConvenienceInitializers @objc(ZTPacket) open class ZTPacket : CoreData.NSManagedObject, ZTCoreKit.ZTNotifyDataMessage, ZTCoreKit.ZTPacketCachable { + @available(*, deprecated, message: "This property will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static let key: Swift.String + @objc @NSManaged dynamic public var id: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var createdAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var fulfilledAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var scheduledDeleted: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var sentAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var rawData: Foundation.Data? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activity: ZTCoreKit.ZTActivity? { + @objc get + @objc set + } + public var activityType: ZTCoreKit.ZTActivityMode? + @objc @NSManaged dynamic public var timestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var duration: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var statusRawValue: Swift.Int16 { + @objc get + @objc set + } + public var status: ZTCoreKit.ZTPacket.Status { get + set } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let object: T? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> T - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> T - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableArrayResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [T] - @available(*, deprecated, message: "This method will be deleted in a future version of the SDK.") - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> [T] - @objc deinit -} -open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { - public typealias Object = T - public typealias JSON = T.RawValue - public init() - open func transformFromJSON(_ value: Any?) -> T? - open func transformToJSON(_ value: T?) -> T.RawValue? - @objc deinit -} -public class ZTReachability { - public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter - public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { + public var timestampType: ZTCoreKit.ZTPacket.TimestampType { get set } - public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? - public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? - public var managerStarted: Swift.Bool - public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { - case all, wifi, cellular, wiredEthernet, loopback, other, none - public var description: Swift.String { - get - } - public func getInterfaceType() -> Network.NWInterface.InterfaceType + public var bmTimestampType: ZTCoreKit.ZTPacket.BmTimestampType { + get + set + } + public var packetType: ZTCoreKit.ZTPacket.PacketType { + get + set + } + @objc @NSManaged dynamic public var originalTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packetsNumber: Swift.Int16 { + @objc get + @objc set + } + public var rawDescription: Swift.String { + get + } + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var retryCount: Swift.Int16 { + @objc get + @objc set + } + public enum CodingKeys : Swift.CodingKey { + case id + case activityId + case rawData + case timestamp + case duration + case status + case packetType + case timestampType + case originalTimestamp + case packetsNumber + case fwVersion + case retryCount + public static func == (a: ZTCoreKit.ZTPacket.CodingKeys, b: ZTCoreKit.ZTPacket.CodingKeys) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) - public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) public var hashValue: Swift.Int { get } - } - public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { - case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline - public var description: Swift.String { + public var intValue: Swift.Int? { get } - public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool - } - public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) - public func startManager() - public func stopManager() - @objc deinit -} -open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.Double - public enum Unit : Foundation.TimeInterval { - case seconds - case milliseconds - public init?(rawValue: Foundation.TimeInterval) - public typealias RawValue = Foundation.TimeInterval - public var rawValue: Foundation.TimeInterval { + public var stringValue: Swift.String { get } } - public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + public init(data: Foundation.Data) + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + required public init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String? = nil, context: CoreData.NSManagedObjectContext, name: Swift.String) + required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + open func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool + public typealias Activity = ZTCoreKit.ZTActivity @objc deinit } -public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void -public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void -public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void -public typealias ZTCompletion = (() -> Swift.Void) -public protocol ZTBaseMappable { - mutating func mapping(map: ZTCoreKit.ZTMap) -} -public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { - init?(map: ZTCoreKit.ZTMap) -} -public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { - static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? -} -extension ZTCoreKit.ZTMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) -} -extension ZTCoreKit.ZTBaseMappable { - public func toJSON() -> [Swift.String : Any] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func lastSegmentId(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func segmentsCount(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, startId: Swift.Int16) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPackets(activityId: Swift.String, startId: Swift.Int16? = nil, lastId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.Int16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPacket(activityId: Swift.String?, id: Swift.Int16) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTPacket + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, lastChunkId: Swift.Int16?) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func clear(activityId: Swift.String?) + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedPackets(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16]? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.Int16, lastId: Swift.Int16?) -> Swift.Int16? +} +extension ZTCoreKit.ZTPacket { + public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool + public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.Int16?, endIndex: Swift.Int16?) -> Swift.Bool + public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.Int16) + public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.Int16) -> Swift.Bool + public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> Swift.Bool + public static func isSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16?, endId: Swift.Int16?) -> Swift.Bool + public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.Int16) -> Swift.Bool } @_hasMissingDesignatedInitializers final public class ZTApi { public static let shared: ZTCoreKit.ZTApi @@ -3747,12 +3469,12 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func getActivities(code: Swift.String?, offset: Swift.Int, limit: Swift.Int, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: (([T]?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getActivity(id: Swift.String, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func startActivity(id: Swift.String, code: Swift.String, startTime: Swift.Int64 = Date().timestamp, attributes: [Swift.String : Any]? = nil, completion: ((Swift.String?, (any Swift.Error)?) -> Swift.Void)?) - final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTSegmentData, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTSegmentData], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int16? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTPacket, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTPacket], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) final public func deleteActivity(id: Swift.String, completion: ZTCoreKit.ZTBaseResult? = nil) final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, data: [Swift.String]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable - final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable + final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> Swift.Void)) final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([[Swift.String : Any]]?, (any Swift.Error)?) -> Swift.Void)) @@ -3791,224 +3513,408 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func resendSavedRequests() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func extract(_ entry: ZTCoreKit.ZTEntry, to url: Foundation.URL, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil) throws -> ZTCoreKit.CRC32 - final public func extract(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 +public protocol ZTCBPeripheralProtocol { + var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } + var name: Swift.String? { get } + var rssi: Foundation.NSNumber? { get } + var state: CoreBluetooth.CBPeripheralState { get } + var services: [CoreBluetooth.CBService]? { get } + var identifier: Foundation.UUID { get } + func discoverServices(_: [CoreBluetooth.CBUUID]?) + func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) + func readValue(for: CoreBluetooth.CBCharacteristic) + func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) + func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) } -public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void -@_hasMissingDesignatedInitializers final public class ZTCore { - public static let version: Swift.String - final public var zcVersion: Swift.String - public static let shared: ZTCoreKit.ZTCore - final public let bleManager: ZTCoreKit.ZTBleManager - final public var settings: ZTCoreKit.ZTSettings { +extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { +} +public protocol ZTBaseMappable { + mutating func mapping(map: ZTCoreKit.ZTMap) +} +public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { + init?(map: ZTCoreKit.ZTMap) +} +public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { + static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? +} +extension ZTCoreKit.ZTMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) +} +extension ZTCoreKit.ZTBaseMappable { + public func toJSON() -> [Swift.String : Any] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +public struct ZTRealtimeMessage : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } + public enum Side : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + get + } + public var content: [Swift.UInt8] { + get + } + public init(bytes: [Swift.UInt8]) + public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + get + } + public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + get + } + public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + get + } + public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + get + } +} +@_hasMissingDesignatedInitializers public class ZTDefaults { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { + final public let stringValue: Swift.String + public init(_ value: Swift.String) + @objc deinit +} +@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + public var stringValue: Swift.String? { + get + } + @objc deinit +} +public class ZTActivityComment : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var timeZone: Swift.String? + public var timestamp: Foundation.Date? + public var text: Swift.String? + public var activityId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + public var mediaFiles: [ZTCoreKit.ZTMediaFile]? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +public enum ZTAlgoCommand : Swift.UInt8 { + case getStatus + case startNewChunk + case changeProductMode + case setPrecisionMode + case setMinimumNumberOfStrides + case enableStreamingOfValues + case setDisconnectionDelay + case setUserInfo + case setDailyTimestamp + case getPositionOfPods + case enableSpecificPacket + case holdRealtimeStreaming + case getSingleTimeMetrics + case calibrateGravity + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var appUserId: Swift.String? { +} +public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case status + case acknowledgment + case realTimeEvent + case realTimeMetrics + case warning + case error + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var lastCommand: ZTCoreKit.ZTCommand? - final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] - final public var lastActivityId: Swift.String? { - get +} +public enum ZTError : Swift.Equatable, Swift.Error { + case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) + case ble(type: ZTCoreKit.ZTError.Enums.BleError) + case network(type: ZTCoreKit.ZTError.Enums.NetworkError) + case store(type: ZTCoreKit.ZTError.Enums.StoreError) + case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) + case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) + case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) + case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) + @_hasMissingDesignatedInitializers public class Enums { + @objc deinit } - final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { + public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool + public var error: (any Swift.Error)? { get } - final public var connectedDevice: ZTCoreKit.ZTDevice? { +} +extension ZTCoreKit.ZTError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastDeviceSerialNumber: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum ScanningError { + case cameraPermission + case wrongCode + case unknown + case notLinkedUser + public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var lastDeviceQRCode: Swift.String? { +} +extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastQRCode: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum BleError { + case invalidState + case resetting + case poweredOff + case unsupported + case timeout + case unauthorized + case notConnected + case notConnectedLeft + case activityIsRunning + case busy + case dfu + case commandError + public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var isDfuInProgress: Swift.Bool { +} +extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? - final public var firmwareDfuState: ZTCoreKit.DFUState? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum FirmwareError { + case differentFirmware + case memsError + case leftNoConnected + case restartRequired + case recoverFromDfu + case minimumFwVersion + case updateRequired + case unsupported + case wrongProductType + case firstChunkIdIsGreater + case startTimeZero + public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { +} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> - final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> - final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuCopied: ZTCoreKit.ZTSignal<()> - final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) - final public func clearUser() - final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) - @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func stopScan() - final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) - #if compiler(>=5.3) && $AsyncAwait - final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice - #endif - @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") - final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) - final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) - final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func setDeepSleepMode() throws - @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Metrics : Swift.CustomStringConvertible { - public var activityType: ZTCoreKit.ZTActivityType? { - get - } - public var metricId: Swift.UInt8? { - get - } - public var metric: ZTCoreKit.ZTRealtimeMetric? { - get - } - public var value: [Swift.UInt8]? { +extension ZTCoreKit.ZTError.Enums { + public enum DfuError { + case noLeftModule + case noUpdate + case wrongFile + case noStart + case aborted + case abortedRight + case abortedLeft + case unsupported + case lowBattery + case inProgress + case updateRequired + case wrongProductType + public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public var description: Swift.String { + } +} +extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum StoreError { + case missing(Swift.String) + case invalid(Swift.String, Any?) + case wrong(Swift.String) + case unknown + } +} +extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum ActivityError { + case notStarted + case notStartedLeft + case notStopped + case unknown + case modeNotSetActivityIsRunning + case previousNotStopped + case previousRestoring + case noUserParametersSet + case rawDataFlowIsRunning + case invalidMobilityScanResults + case outsideActivityDetected + case anomalyDetected + case mobility + public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public init(data: Foundation.Data) } } -@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum NetworkError { + case userLinkError + case inaccessible + case urlError(Foundation.URLError) + case generalError(any Swift.Error) + case noResponse + case invalidResponseType(Foundation.URLResponse) + case noResponseData(Foundation.HTTPURLResponse) + case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) + case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) + } +} +extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTJSONParameterEncoder { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTURLEncodedFormParameterEncoder { - @objc deinit } -@_hasMissingDesignatedInitializers final public class ZTSettings { - public static let shared: ZTCoreKit.ZTSettings - final public var version: Swift.String? - final public var logLevel: ZTCoreKit.ZTLogLevel - final public var environment: ZTCoreKit.ZTEnvironment - final public var autoConnect: Swift.Bool - final public var enableEventLogging: Swift.Bool - final public var shouldObtaineMissedChunks: Swift.Bool - final public var enableRawDataCheck: Swift.Bool - final public var shouldAutoResendData: Swift.Bool - final public var activityDataSyncThreshold: Swift.Int - final public var enableBackgroundDFU: Swift.Bool - final public var enableBackgroundDataStreaming: Swift.Bool - final public var activityChunkStoreForFreeMemory: Swift.Int - final public var activityChunkRetryLimit: Swift.Int - final public var checkFirmwareUpdatePeriod: Swift.Int - final public var enableAnalyticsData: Swift.Bool - final public var autorestartBackgroundDfu: Swift.Bool - final public var getChunksOnApplicationDidBecomeActive: Swift.Bool - final public var enablePacketsDataLogging: Swift.Bool - final public var cachedPacketsBatchUploadSize: Swift.Int - final public var chunkDuration: Swift.Int? { +extension ZTCoreKit.ZTError.Enums { + public enum DecodableError { + case invalidKeyPath + case emptyKeyPath + case invalidJSON + public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } +} +extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public func clear() - @objc deinit } -@_hasMissingDesignatedInitializers open class ZTClosureEventMonitor { - open var sessionDidBecomeInvalidWithError: ((Foundation.URLSession, (any Swift.Error)?) -> Swift.Void)? - open var taskDidReceiveChallenge: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> Swift.Void)? - open var taskDidSendBodyData: ((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var taskNeedNewBodyStream: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var taskWillPerformHTTPRedirection: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> Swift.Void)? - open var taskDidFinishCollectingMetrics: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> Swift.Void)? - open var taskDidComplete: ((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> Swift.Void)? - open var taskIsWaitingForConnectivity: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var dataTaskDidReceiveData: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> Swift.Void)? - open var dataTaskWillCacheResponse: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> Swift.Void)? - open var downloadTaskDidFinishDownloadingToURL: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> Swift.Void)? - open var downloadTaskDidWriteData: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var downloadTaskDidResumeAtOffset: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> Swift.Void)? - @objc deinit -} -extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} -extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} -extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Equatable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareType : Swift.Hashable {} extension ZTCoreKit.DFUFirmwareType : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Equatable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} -extension ZTCoreKit.LogLevel : Swift.Equatable {} -extension ZTCoreKit.LogLevel : Swift.Hashable {} -extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.Status : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.RawRepresentable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityType : Swift.Equatable {} +extension ZTCoreKit.ZTActivityType : Swift.Hashable {} +extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} extension ZTCoreKit.ZTTXPower : Swift.Equatable {} extension ZTCoreKit.ZTTXPower : Swift.Hashable {} extension ZTCoreKit.ZTTXPower : Swift.RawRepresentable {} extension ZTCoreKit.ZTCommand : Swift.Equatable {} extension ZTCoreKit.ZTCommand : Swift.Hashable {} extension ZTCoreKit.ZTCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} -extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.Equatable {} +extension ZTCoreKit.ZTPeriod : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTProductType : Swift.Equatable {} extension ZTCoreKit.ZTProductType : Swift.Hashable {} extension ZTCoreKit.ZTProductType : Swift.RawRepresentable {} @@ -4033,42 +3939,44 @@ extension ZTCoreKit.ZTGenderSizeCodeType : Swift.RawRepresentable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Equatable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Hashable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.Equatable {} +extension ZTCoreKit.LogLevel : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMappingType : Swift.Equatable {} +extension ZTCoreKit.ZTMappingType : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Equatable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Hashable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogLevel : Swift.Equatable {} extension ZTCoreKit.ZTLogLevel : Swift.Hashable {} extension ZTCoreKit.ZTLogLevel : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogCategory : Swift.Equatable {} extension ZTCoreKit.ZTLogCategory : Swift.Hashable {} extension ZTCoreKit.ZTLogCategory : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Equatable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Hashable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.RawRepresentable {} @@ -4093,72 +4001,62 @@ extension ZTCoreKit.ZTNotifyData.GenericMessageId : Swift.RawRepresentable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Equatable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Hashable {} extension ZTCoreKit.ZTDeviceActualState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.Equatable {} -extension ZTCoreKit.ZTActivityType : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} -extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} -extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} -extension ZTCoreKit.DFUUuidType : Swift.Equatable {} -extension ZTCoreKit.DFUUuidType : Swift.Hashable {} -extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} +extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} +extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} +extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUError : Swift.Equatable {} extension ZTCoreKit.DFUError : Swift.Hashable {} extension ZTCoreKit.DFUError : Swift.RawRepresentable {} extension ZTCoreKit.DFUState : Swift.Equatable {} extension ZTCoreKit.DFUState : Swift.Hashable {} extension ZTCoreKit.DFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDFUState : Swift.Equatable {} +extension ZTCoreKit.ZTDFUState : Swift.Hashable {} +extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} +extension ZTCoreKit.DFUUuidType : Swift.Equatable {} +extension ZTCoreKit.DFUUuidType : Swift.Hashable {} +extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} +extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} +extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Equatable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Hashable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Equatable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Hashable {} extension ZTCoreKit.ZTAlgoCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} -extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDFUState : Swift.Equatable {} -extension ZTCoreKit.ZTDFUState : Swift.Hashable {} -extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Equatable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Hashable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTPeriod : Swift.Equatable {} -extension ZTCoreKit.ZTPeriod : Swift.Hashable {} -extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMappingType : Swift.Equatable {} -extension ZTCoreKit.ZTMappingType : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} -extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 09b6dfa..6d0fb0d 100644 Binary files a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 5deccd1..e774e10 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,18 +1,13 @@ // swift-interface-format-version: 1.0 // swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit -import Combine -import CommonCrypto -import Compression +// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ZTCoreKit import CoreBluetooth -import CoreFoundation +import CoreData import CoreTelephony import Dispatch import Foundation -import MobileCoreServices import Network import ObjectiveC -import Security import Swift import SystemConfiguration import UIKit @@ -21,175 +16,158 @@ import _StringProcessing import _SwiftConcurrencyShims import os.log import os -import zlib -public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case timestamp - case modeId - case precisionMode - case numberOfSteps - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +public protocol ZTEnum : Swift.Decodable, Swift.Encodable { + var description: Swift.String { get } } -extension Foundation.Data { - public func macAddress() -> Swift.String? - public var bytes: [Swift.UInt8] { - get - } - public var hexDescription: Swift.String { +extension ZTCoreKit.ZTEnum { + public var description: Swift.String { get } - public init?(hex: Swift.String) - public func getUInt(offset: Swift.Int) -> Swift.UInt16 - public func getUInt32(offset: Swift.Int) -> Swift.UInt32 - public func getFloat(offset: Swift.Int) -> Swift.Float - public func getByte(at index: Swift.Int) -> Swift.Int8 - public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 - public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 - public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 - public mutating func append(byte data: Swift.Int8) - public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) - public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -extension Foundation.Data { - public func dataObject(at index: Foundation.Data.Index = 0) -> T - public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int - public func object(at offset: Swift.Int) -> T +@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { + public var name: Swift.String + public var description: Swift.String? + public var mimeType: Swift.String? + public var key: Swift.String? + public var url: Swift.String? + public var data: Foundation.Data? + convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) + required convenience public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Swift.Numeric { - public var data: Foundation.Data { +public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void +public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void +public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void +public typealias ZTCompletion = (() -> Swift.Void) +public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { + public var rawData: Foundation.Data? + public var right: Swift.UInt8 + public var left: Swift.UInt8 + public var min: Swift.UInt8 { get } -} -public struct ZTAES { - public let key: Foundation.Data - public let iv: Foundation.Data - public var algorithm: CommonCrypto.CCAlgorithm { + public var description: Swift.String { get } - public var options: CommonCrypto.CCOptions { + public init() + public init(data: Foundation.Data) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static let uuid: Swift.String + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var encOption: CommonCrypto.CCOptions { + public var byte1: Swift.UInt8? { get } - public var decOption: CommonCrypto.CCOptions { + public var byte2: Swift.UInt8? { get } - public var successStatus: Swift.UInt32 { + public var byte3: Swift.UInt8? { get } - public func evaluate(_ current: CommonCrypto.CCCryptorStatus, with needed: Swift.UInt32) -> Swift.Bool - public typealias error = ZTCoreKit.ZTPlist.Error - public init?(key: Swift.String, iv: Swift.String) - public func encrypt(data: Foundation.Data) -> Foundation.Data? - public func decrypt(data: Foundation.Data?) -> Foundation.Data? - public func crypt(data: Foundation.Data?, option: CommonCrypto.CCOperation) -> Foundation.Data? -} -@_hasMissingDesignatedInitializers open class ZTRetryPolicy { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTConnectionLostRetryPolicy : ZTCoreKit.ZTRetryPolicy { - @objc deinit + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTMessageGeneralState { + public var activityStartedRight: Swift.Bool { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -extension Foundation.UserDefaults { - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { + public var activityStartedLeft: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { + public var pairIsConnected: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { + public var memsHasError: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { + public var firmwareDifferent: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { + public var actualState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { + public var previousState: ZTCoreKit.ZTDeviceActualState { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { + public var description: Swift.String { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { +} +@_hasMissingDesignatedInitializers public class ZTCommandResponse { + public var bytes: [Swift.UInt8] + public var rightModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { + public var leftModule: Swift.Bool { get - set } - public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { + public var command: ZTCoreKit.ZTCommand? { get - set } - public subscript(key: Swift.String) -> Any? { + public var status: ZTCoreKit.ZTCommandStatus? { get - set(value) } - public func value(forKey key: Swift.String) -> T? - public func clear(_ key: Swift.String) - public func clear(_ key: ZTCoreKit.ZTDefaultsKey) - public func clearAll() + @objc deinit } -public struct ZTPairedDevice : Swift.Codable { - public var macAddress: Swift.String { +public enum ZTCommandStatus : Swift.UInt8 { + case success + case busy + case invalidParam + case invalidState + case forbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerresponse + public var description: Swift.String { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -public enum ZTDfuPackageType : Swift.String { - case APP - case BL - case SD - case SD_BL - case SD_BL_APP - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers final public class ZTSettings { + public static let shared: ZTCoreKit.ZTSettings + final public var version: Swift.String? + final public var logLevel: ZTCoreKit.ZTLogLevel + final public var environment: ZTCoreKit.ZTEnvironment + final public var autoConnect: Swift.Bool + final public var enableEventLogging: Swift.Bool + final public var shouldObtaineMissedChunks: Swift.Bool + final public var enableRawDataCheck: Swift.Bool + final public var shouldAutoResendData: Swift.Bool + final public var activityDataSyncThreshold: Swift.Int + final public var enableBackgroundDFU: Swift.Bool + final public var enableBackgroundDataStreaming: Swift.Bool + final public var activityChunkStoreForFreeMemory: Swift.Int + final public var activityChunkRetryLimit: Swift.Int + final public var checkFirmwareUpdatePeriod: Swift.Int + final public var enableAnalyticsData: Swift.Bool + final public var autorestartBackgroundDfu: Swift.Bool + final public var getChunksOnApplicationDidBecomeActive: Swift.Bool + final public var enablePacketsDataLogging: Swift.Bool + final public var cachedPacketsBatchUploadSize: Swift.Int + final public var chunkDuration: Swift.Int? { get + set } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + final public func clear() @objc deinit } -@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { +@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { public static let uuid: Swift.String open var data: Foundation.Data? { get @@ -198,336 +176,317 @@ public enum ZTDfuPackageType : Swift.String { override open func valueUpdated() @objc deinit } -public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var bootloaderVersion: Swift.UInt8 { - get - } - public var appSupportVersion: Swift.UInt8 { - get - } - public var softDeviceId: Swift.UInt8 { - get +extension ZTCoreKit.ZTRealtimeMessage { + public struct Status : Swift.CustomStringConvertible { + public var code: ZTCoreKit.ZTAlgoStatus? { + get + } + public var timestamp: Swift.UInt32? { + get + } + public var algoMode: ZTCoreKit.ZTAlgoMode? { + get + } + public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { + get + } + public var consecutiveSteps: Swift.UInt8? { + get + } + public var description: Swift.String { + get + } + public init(data: Foundation.Data) } - public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { +} +public enum ZTBleManagerState : Swift.CustomStringConvertible { + case off + case on + case idle + case scanning + case unauthorized + case resetting + case unknown + case unsupported + public var description: Swift.String { get } - public var description: Swift.String { + public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public enum DfuState : Swift.UInt8 { - case none - case inProgress - case received - case readyForCopy - case activation - case done - case error - case validationError - case activationError - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } -extension Swift.String { - public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String - public var fromBase64: Swift.String? { +public enum ZTRealtimeMetric : Swift.String { + case duration + case steps + case cycleDuration + case stepCadence + case stepSpeed + case distance + case footDistance + case energySum + case walkingQualityScore + case stairsClimbed + case intenseActivity + case slope + case accelerationFoot + case strideLength + case relativePronationAngleFoot + case pronationAngleFFI + case pronationAngleFFO + case plantarFlexionAngularSpeedMaxPropulsion + case symmetry + public func value() -> Swift.UInt8 + public var activityType: ZTCoreKit.ZTActivityType { get } - public var toBase64: Swift.String { + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String - public func substring(range: Foundation.NSRange) -> Swift.String - public func matches(regex: Swift.String) -> [Swift.String] - public static func random(length: Swift.Int = 9) -> Swift.String - public func split(usingRegex pattern: Swift.String) -> [Swift.String] - public func serialNumber() -> Swift.String - public func fileName() -> Swift.String - public func incrementedMacAddress() -> Swift.String } -extension Swift.Int { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +extension ZTCoreKit.ZTRealtimeMetric { + public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) + public init?(name: Swift.String) } -extension Swift.UInt8 { - public var bits: [Swift.UInt8] { - get - } - public var hexValue: Swift.String { - get +open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.Double + public enum Unit : Foundation.TimeInterval { + case seconds + case milliseconds + public init?(rawValue: Foundation.TimeInterval) + public typealias RawValue = Foundation.TimeInterval + public var rawValue: Foundation.TimeInterval { + get + } } + public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + @objc deinit } -extension Swift.UInt16 { - public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] -} -extension Swift.UInt32 { - public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] -} -extension Swift.UInt64 { - public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] +open class ZTDataTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Data + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.Data? + open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? + @objc deinit } -extension Swift.Double { - public var milliseconds: Swift.Int64 { +@_inheritsConvenienceInitializers public class ZTNotifyCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension Swift.Array where Element == Swift.UInt8 { - public var hex: Swift.String { +public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case defaultMode + case economicMode + case performanceMode + public var parameters: [Swift.UInt8] { get } -} -extension Swift.Dictionary { - public func merge(dict: [Key : Value]) -> [Key : Value] -} -extension Foundation.Date { - public var timestamp: Swift.Int64 { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - public var apiFormat: Swift.String { - get +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { + @objc public func pause() + @objc public func resume() + @objc public func abort() -> Swift.Bool + @objc public func restart() + @objc public var paused: Swift.Bool { + @objc get } - public var logFormat: Swift.String { - get + @objc public var aborted: Swift.Bool { + @objc get } + @objc deinit } -extension Swift.Array where Element : CoreBluetooth.CBPeripheral { - public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool -} -extension Swift.Array { - public func chunked(into size: Swift.Int = 1000) -> [[Element]] -} -extension Swift.Array where Element == Swift.String { - public func stringify() -> Swift.String -} -extension CoreBluetooth.CBCharacteristic { - public func notifyValue(_ isEnabled: Swift.Bool) - public func readValue() - @discardableResult - public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { + public var left: Swift.UInt32 + public var right: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTEnvironment { - case dev - case staging - case production - case zcdev - case zcstaging - case zcproduction - public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { +extension ZTCoreKit.ZTMessageInactivityTimeout { + public var description: Swift.String { get } } -public enum ZTModuleSide : Swift.String, Swift.Codable { - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } +public protocol ZTCBCentralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + func stopScan() + func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] + func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] + func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) + func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) + func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) } -public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable -public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable -public protocol ZTEnum : Swift.Decodable, Swift.Encodable { - var description: Swift.String { get } +extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { + public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? + public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] + public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) + public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) } -extension ZTCoreKit.ZTEnum { +open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { + public init(formatString: Swift.String) + @objc deinit +} +public struct ZTMapError : Swift.Error { + public var key: Swift.String? + public var currentValue: Any? + public var reason: Swift.String? + public var file: Swift.StaticString? + public var function: Swift.StaticString? + public var line: Swift.UInt? + public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) +} +extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { public var description: Swift.String { get } } -extension ZTCoreKit.ZTArchive { - final public func totalUnitCountForRemoving(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForReading(_ entry: ZTCoreKit.ZTEntry) -> Swift.Int64 - final public func totalUnitCountForAddingItem(at url: Foundation.URL) -> Swift.Int64 -} -public let defaultReadChunkSize: Swift.UInt32 -public let defaultWriteChunkSize: Swift.UInt32 -public let defaultFilePermissions: Swift.UInt16 -public let defaultDirectoryPermissions: Swift.UInt16 -final public class ZTArchive : Swift.Sequence { - public enum ArchiveError : Swift.Error { - case unreadableArchive - case unwritableArchive - case invalidEntryPath - case invalidCompressionMethod - case invalidStartOfCentralDirectoryOffset - case missingEndOfCentralDirectoryRecord - case invalidNumberOfEntriesOnDisk - case invalidNumberOfEntriesInCentralDirectory - case cancelledOperation - case invalidBufferSize - public static func == (a: ZTCoreKit.ZTArchive.ArchiveError, b: ZTCoreKit.ZTArchive.ArchiveError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get +public protocol ZTPacketCachable : CoreData.NSManagedObject { + associatedtype Activity : ZTCoreKit.ZTActivityCachable + var id: Swift.Int16 { get set } + var createdAt: Foundation.Date { get set } + var fulfilledAt: Foundation.Date { get set } + var sentAt: Foundation.Date { get set } + var timestamp: Swift.Int64 { get set } + var duration: Swift.Int16 { get set } + var statusRawValue: Swift.Int16 { get set } + var status: ZTCoreKit.ZTPacket.Status { get set } + var scheduledDeleted: Foundation.Date? { get set } + var rawData: Foundation.Data? { get set } + var activity: Self.Activity? { get set } + var fwVersion: Swift.String? { get set } + init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, context: CoreData.NSManagedObjectContext, name: Swift.String) +} +extension ZTCoreKit.ZTPacketCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool +} +public enum ZTServices { + public enum Primary { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + case test + public var uid: Swift.String { + get + } + public var uuid: CoreBluetooth.CBUUID { + get + } + public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - public enum AccessMode : Swift.UInt { - case create - case read - case update - public init?(rawValue: Swift.UInt) - public typealias RawValue = Swift.UInt - public var rawValue: Swift.UInt { - get + public enum PrimaryOld { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case commands + case notifyData + case indicateData + case batteryLevel + case pairedSoles + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } } - final public let url: Foundation.URL - final public let accessMode: ZTCoreKit.ZTArchive.AccessMode - public init?(url: Foundation.URL, accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - public init?(data: Foundation.Data = Data(), accessMode mode: ZTCoreKit.ZTArchive.AccessMode, preferredEncoding: Swift.String.Encoding? = nil) - @objc deinit - final public func makeIterator() -> Swift.AnyIterator - final public subscript(path: Swift.String) -> ZTCoreKit.ZTEntry? { - get - } - public typealias Element = ZTCoreKit.ZTEntry - public typealias Iterator = Swift.AnyIterator -} -final public class ZTSignal { - public typealias ZTSignalCallback = (T) -> Swift.Void - final public var fireCount: Swift.Int { - get - } - final public var retainLastData: Swift.Bool { - get - set - } - final public var lastDataFired: T? { - get + public enum DeviceInformation { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case manufacturerName + case modelNumber + case serialNumber + case firmwareRevision + case hardwareRevision + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - final public var observers: [Swift.AnyObject] { - get + public enum DeviceDFU { + public static let uid: Swift.String + public static let uuid: CoreBluetooth.CBUUID + public enum Characteristic { + case dfuControlPoint + case dfuPacket + case dfuButtonless + public var uid: Swift.String { + get + } + public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } } - public init(retainLastData: Swift.Bool = false) - @discardableResult - final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription - final public func fire(_ data: T) - final public func cancelSubscription(for observer: Swift.AnyObject) - final public func cancelAllSubscriptions() - final public func clearLastData() - @objc deinit -} -extension ZTCoreKit.ZTSignal where T == () { - final public func fire() -} -@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { - public typealias ZTSignalCallback = (T) -> Swift.Void - public typealias ZTSignalFilter = (T) -> Swift.Bool - weak final public var observer: Swift.AnyObject? - final public var once: Swift.Bool - @discardableResult - final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription - @discardableResult - final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription - final public func cancel() - @objc deinit } -infix operator => : AssignmentPrecedence -public func => (signal: ZTCoreKit.ZTSignal, data: T) -public struct ZTMessageTime : Swift.CustomStringConvertible { - public var timestamp: Swift.Int64 - public var side: ZTCoreKit.ZTModuleSide - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { +public enum ZTRealtimeSide : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -@objc public protocol DFUPeripheralSelectorDelegate { - @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool - @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? -} -extension ZTCoreKit.ZTArchive { - final public var data: Foundation.Data? { - get - } +@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { + public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? + @objc override dynamic public init() + @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage.Event { - public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case motion - case transition - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension ZTCoreKit.ZTRealtimeMessage { + public struct Acknowledgment : Swift.CustomStringConvertible { + public var command: ZTCoreKit.ZTAlgoCommand? { get } - } - public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case stepForward - case stepBackward - case stepSideLeft - case stepSideRight - case stepUp - case stepDown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { get } - } - public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case low - case medium - case high - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -public class ZTDateTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - public init() - public func transformFromJSON(_ value: Any?) -> Foundation.Date? - public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? - @objc deinit -} -public enum DFUStreamHexError : Swift.Error { - case invalidHexFile - public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -open class ZTDataTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Data - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.Data? - open func transformToJSON(_ value: Foundation.Data?) -> Swift.String? - @objc deinit -} open class ZTCharacteristic { weak public var service: ZTCoreKit.ZTService? { get @@ -557,951 +516,1103 @@ open class ZTCharacteristic { open func notificationUpdated() @objc deinit } -@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@objc public enum DFUFirmwareType : Swift.UInt8 { + case softdevice = 1 + case bootloader = 2 + case application = 4 + case softdeviceBootloader = 3 + case softdeviceBootloaderApplication = 7 + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) +} +public struct DFUFirmwareError : Swift.Error { + public enum FileType { + case zip + case binOrHex + case dat + public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public let type: ZTCoreKit.DFUFirmwareError.FileType +} +extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +@objc public class DFUFirmware : ObjectiveC.NSObject { + @objc final public let fileName: Swift.String? + @objc final public let fileUrl: Foundation.URL? + @objc public var valid: Swift.Bool { + @objc get + } + @objc public var size: ZTCoreKit.DFUFirmwareSize { + @objc get + } + @objc public var parts: Swift.Int { + @objc get + } + @objc convenience public init(urlToZipFile: Foundation.URL) throws + @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws + @objc convenience public init(zipFile: Foundation.Data) throws + @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws + @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) + @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws @objc deinit } -public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { +public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void +public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void +@_hasMissingDesignatedInitializers final public class ZTCore { + public static let version: Swift.String + final public var zcVersion: Swift.String + public static let shared: ZTCoreKit.ZTCore + final public let bleManager: ZTCoreKit.ZTBleManager + final public var settings: ZTCoreKit.ZTSettings { get } - public var byte1: Swift.UInt8? { + final public var appUserId: Swift.String? { get } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTMessageChunkConfig { - public var side: ZTCoreKit.ZTModuleSide { + final public var lastCommand: ZTCoreKit.ZTCommand? + final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] + final public var lastActivityId: Swift.String? { get } - public var flag: Swift.UInt8 { + final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { get } - public var description: Swift.String { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } -} -@_hasMissingDesignatedInitializers open class ZTSession { - @objc deinit -} -open class ZTService { - weak public var device: ZTCoreKit.ZTDevice! { + final public var lastDeviceSerialNumber: Swift.String? { get } - final public let service: CoreBluetooth.CBService - public static var serviceType: ZTCoreKit.ZTService.Type { + final public var lastDeviceQRCode: Swift.String? { get } - public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { + final public var lastQRCode: Swift.String? { get } - public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + final public var isDfuInProgress: Swift.Bool { + get + } + weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? + final public var firmwareDfuState: ZTCoreKit.DFUState? { + get + } + final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { + get + set + } + final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> + final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> + final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> + final public let onDfuCopied: ZTCoreKit.ZTSignal<()> + final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + final public func clearUser() + final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) + @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) + final public func stopScan() + final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) + #if compiler(>=5.3) && $AsyncAwait + final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice + #endif + @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") + final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) + final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) + final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) + final public func setDeepSleepMode() throws + @objc deinit } -extension ZTCoreKit.ZTService : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +public class ZTDatabaseService where Packet : ZTCoreKit.ZTPacketCachable, Activity : ZTCoreKit.ZTActivityCachable { + public var currentActivityId: Swift.String? + public init(context: CoreData.NSManagedObjectContext = ZTCoreDataStack.shared.context) + @objc deinit + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withId activityId: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func fetchActivity(withSerial serial: Swift.String) async throws -> Activity? + #endif + #if compiler(>=5.3) && $AsyncAwait + public func createActivity(withId id: Swift.String, updateBlock: ((Activity) -> Swift.Void)? = nil) async throws -> Activity? + #endif + public func updateActivity(id: Swift.String, updateBlock: @escaping (Activity) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + public func deleteActivity(withId id: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) + #if compiler(>=5.3) && $AsyncAwait + public func createPacket(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String?, updateBlock: ((Packet) -> Swift.Void)? = nil) async -> Packet + #endif + public func fetchPackets(for activityId: Swift.String, completion: @escaping (Swift.Result<[Packet], any Swift.Error>) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func fetchPackets(forActivityId activityId: Swift.String, from startId: Swift.Int16? = nil, to lastId: Swift.Int16? = nil, in managedObjectContext: CoreData.NSManagedObjectContext) async throws -> [Packet] + #endif + public func trashOldPackets() + public func updatePackets(for activityId: Swift.String, from startId: Swift.Int16, to endId: Swift.Int16, withStatus newStatus: ZTCoreKit.ZTPacket.Status, completion: @escaping ((any Swift.Error)?) -> Swift.Void) + #if compiler(>=5.3) && $AsyncAwait + public func add(_ packet: Packet, to activityId: Swift.String, in managedContext: CoreData.NSManagedObjectContext) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + public func update(_ packets: [Packet], withNewStatus newStatus: ZTCoreKit.ZTPacket.Status, in managedContext: CoreData.NSManagedObjectContext) async + #endif + public func update(packet: Packet, updateBlock: @escaping (Packet) -> Swift.Void, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) } -public protocol ZTServiceProtocol : AnyObject { - static var uuid: Swift.String { get } - static var serviceType: ZTCoreKit.ZTService.Type { get } - static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +public class ZTUser : ZTCoreKit.ZTMappable { + public var attributes: [Swift.String : Any] + public var id: Swift.String? + public var organizationId: Swift.String? + public var appId: Swift.String? + public var createdAt: Swift.String? + public var updatedAt: Swift.String? + public var userId: Swift.String? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { +public class ZTAchievement : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var type: Swift.String? + public var activityId: Swift.String? + public var code: Swift.String? + public var appuserId: Swift.String? + public var data: [Swift.String : Any]? + public var duration: Swift.Int64? + public var calories: Swift.Double? + public var createdAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +open class ZTService { + weak public var device: ZTCoreKit.ZTDevice! { + get + } + final public let service: CoreBluetooth.CBService public static var serviceType: ZTCoreKit.ZTService.Type { get } -} -@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { - @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) - @objc deinit -} -public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { - case status(id: ZTCoreKit.ZTAlgoStatus) - case startNewChunk - case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) - case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) - case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) - case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) - case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) - public var parameters: [Swift.UInt8] { + public var characteristics: [Swift.String : ZTCoreKit.ZTCharacteristic] { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -@_inheritsConvenienceInitializers public class ZTDfuService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static let uuid: Swift.String - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + public func characteristic(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTCharacteristic required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) @objc deinit } -public enum ZTRealtimeMetric : Swift.String { - case duration - case steps - case cycleDuration - case stepCadence - case stepSpeed - case distance - case footDistance - case energySum - case walkingQualityScore - case stairsClimbed - case intenseActivity - case slope - case accelerationFoot - case strideLength - case relativePronationAngleFoot - case pronationAngleFFI - case pronationAngleFFO - case plantarFlexionAngularSpeedMaxPropulsion - case symmetry - public func value() -> Swift.UInt8 - public var activityType: ZTCoreKit.ZTActivityType { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +extension ZTCoreKit.ZTService : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTService, rhs: ZTCoreKit.ZTService) -> Swift.Bool +} +extension Foundation.Data { + public var hexString: Swift.String { get } } -extension ZTCoreKit.ZTRealtimeMetric { - public init?(value: Swift.UInt8, activityType: ZTCoreKit.ZTActivityType? = nil) - public init?(name: Swift.String) +public protocol DataConvertible { + static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + static func += (lhs: inout Foundation.Data, rhs: Self) } -public protocol ZTCBCentralManagerProtocol : AnyObject { - var delegate: (any CoreBluetooth.CBCentralManagerDelegate)? { get set } - var state: CoreBluetooth.CBManagerState { get } - func stopScan() - func retrievePeripherals(withIdentifiers identifiers: [Foundation.UUID]) -> [CoreBluetooth.CBPeripheral] - func retrieveConnectedPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]) -> [CoreBluetooth.CBPeripheral] - func scanForPeripherals(withServices serviceUUIDs: [CoreBluetooth.CBUUID]?, options: [Swift.String : Any]?) - func connect(_ peripheral: CoreBluetooth.CBPeripheral, options: [Swift.String : Any]?) - func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - func cancelPeripheralConnection(_ peripheral: CoreBluetooth.CBPeripheral) +extension ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data + public static func += (lhs: inout Foundation.Data, rhs: Self) } -extension CoreBluetooth.CBCentralManager : ZTCoreKit.ZTCBCentralManagerProtocol { - public func retrievePeripheral(withIdentifier identifier: Foundation.UUID) -> (any ZTCoreKit.ZTCBPeripheralProtocol)? - public func retrieveConnectedPeripherals(withServices services: [CoreBluetooth.CBUUID]) -> [any ZTCoreKit.ZTCBPeripheralProtocol] - public func connect(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol, options: [Swift.String : Any]?) - public func cancelPeripheralConnection(_ peripheral: any ZTCoreKit.ZTCBPeripheralProtocol) +extension Swift.UInt8 : ZTCoreKit.DataConvertible { } -@objc @_hasMissingDesignatedInitializers open class ZTSessionDelegate : ObjectiveC.NSObject { - @objc deinit +extension Swift.UInt16 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, didBecomeInvalidWithError error: (any Swift.Error)?) +extension Swift.UInt32 : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionTaskDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didReceive challenge: Foundation.URLAuthenticationChallenge, completionHandler: @escaping (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didSendBodyData bytesSent: Swift.Int64, totalBytesSent: Swift.Int64, totalBytesExpectedToSend: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, needNewBodyStream completionHandler: @escaping (Foundation.InputStream?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didFinishCollecting metrics: Foundation.URLSessionTaskMetrics) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, didCompleteWithError error: (any Swift.Error)?) - @available(macOS 10.13, iOS 11.0, tvOS 11.0, watchOS 4.0, *) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, taskIsWaitingForConnectivity task: Foundation.URLSessionTask) +extension Swift.Int : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDataDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, didReceive data: Foundation.Data) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, dataTask: Foundation.URLSessionDataTask, willCacheResponse proposedResponse: Foundation.CachedURLResponse, completionHandler: @escaping (Foundation.CachedURLResponse?) -> Swift.Void) +extension Swift.Float : ZTCoreKit.DataConvertible { } -extension ZTCoreKit.ZTSessionDelegate : Foundation.URLSessionDownloadDelegate { - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didResumeAtOffset fileOffset: Swift.Int64, expectedTotalBytes: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didWriteData bytesWritten: Swift.Int64, totalBytesWritten: Swift.Int64, totalBytesExpectedToWrite: Swift.Int64) - @objc dynamic public func urlSession(_ session: Foundation.URLSession, downloadTask: Foundation.URLSessionDownloadTask, didFinishDownloadingTo location: Foundation.URL) +extension Swift.Double : ZTCoreKit.DataConvertible { } -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable -@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +extension Swift.String : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data +} +extension Foundation.Data : ZTCoreKit.DataConvertible { + public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data +} +@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { + @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool + @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? + @objc override dynamic public init() + @objc deinit +} +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.Int16, anchorTime: Swift.Int64?) + public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTPacket) + public static func updateSegments(ids: [Swift.Int16], status: ZTCoreKit.ZTPacket.Status, activityId: Swift.String?) +} +@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public protocol ZTCBPeripheralProtocol { - var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } - var name: Swift.String? { get } - var rssi: Foundation.NSNumber? { get } - var state: CoreBluetooth.CBPeripheralState { get } - var services: [CoreBluetooth.CBService]? { get } - var identifier: Foundation.UUID { get } - func discoverServices(_: [CoreBluetooth.CBUUID]?) - func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) - func readValue(for: CoreBluetooth.CBCharacteristic) - func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) - func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) -} -extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { -} -extension ZTCoreKit.ZTPlist { - public func asCollection() -> [Foundation.NSDictionary.Element] - public func set(_ rawValue: Any?, for key: Swift.String) - public func get(_ key: Swift.String) -> Any? - public func clean() - public func remove(_ keys: Swift.String...) - public func remove(keys collection: [Swift.String]) - public func bool(_ key: Swift.String) -> Swift.Bool? - public func int(_ key: Swift.String) -> Swift.Int? - public func double(_ key: Swift.String) -> Swift.Double? - public func float(_ key: Swift.String) -> Swift.Float? - public func string(_ key: Swift.String) -> Swift.String? - public func dictionary(_ key: Swift.String) -> [Swift.String : Any]? - public func collection(_ key: Swift.String) -> [Any]? - public func date(_ key: Swift.String) -> Foundation.Date? - public func data(_ key: Swift.String) -> Foundation.Data? - public func null(_ key: Swift.String) -} -public struct ZTRealtimeMessage : Swift.CustomStringConvertible { - public var description: Swift.String { - get +extension ZTCoreKit.ZTPacket { + public enum Status : Swift.Int16, Swift.Codable, Swift.Equatable { + case new + case readyToSend + case sending + case sent + case error + public init?(rawValue: Swift.Int16) + public typealias RawValue = Swift.Int16 + public var rawValue: Swift.Int16 { + get + } } - public enum Side : Swift.UInt8 { - case none - case left - case right - case both + public enum TimestampType : Swift.UInt8, Swift.Codable { + case unknown + case start + case stop + case pause + case resume + case reboot + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } - public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + public enum BmTimestampType : Swift.UInt8, Swift.Codable { + case unknown + case shoeWearOn + case shoeWearOff + case walkingStart + case walkingStop + case runningStart + case runningStop + case cyclingStart + case cyclingStop + case transportStart + case transportStop + public var description: Swift.String { + get + } + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public enum PacketType : Swift.UInt8, Swift.Codable { + public static let maxDataValue: Swift.UInt8 + case unknown + case quantification + case walkAnalysis + case runAnalysis + case stairs + case cycling + case jump + case safety + case staticActivity + case debug + case debugTelemetry + case debugProba + case bmTimestampPacket + case fwTimestampPacket + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { + final public var advertisingServices: [CoreBluetooth.CBUUID]? + final public var managerState: ZTCoreKit.ZTBleManagerState { get + set } - public var content: [Swift.UInt8] { + final public class var instance: ZTCoreKit.ZTBleManager { get } - public init(bytes: [Swift.UInt8]) - public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { get } - public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + final public var macAddress: Swift.String? { get } - public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? + final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { get } - public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + final public var product: ZTCoreKit.ZTProductType? { get + set } -} -@_inheritsConvenienceInitializers public class ZTPacketDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { + final public var connectedDevice: ZTCoreKit.ZTDevice? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() + final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + get + } + final public var scanning: Swift.Bool { + get + } + final public var isDfuMode: Swift.Bool { + get + } + final public let onBluetoothStateChange: ZTCoreKit.ZTSignal + final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onDeviceDiscovered: ZTCoreKit.ZTSignal + final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> @objc deinit } -public struct ZTMessageInactivityTimeout : Swift.CustomStringConvertible, Swift.Codable { - public var left: Swift.UInt32 - public var right: Swift.UInt32 - public init(bytes: [Swift.UInt8]) +extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) + @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) + @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +} +public struct ZTPairedDevice : Swift.Codable { + public var macAddress: Swift.String { + get + } public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageInactivityTimeout { - public var description: Swift.String { +public enum DFUStreamHexError : Swift.Error { + case invalidHexFile + public static func == (a: ZTCoreKit.DFUStreamHexError, b: ZTCoreKit.DFUStreamHexError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -@objc public enum DFUFirmwareType : Swift.UInt8 { - case softdevice = 1 - case bootloader = 2 - case application = 4 - case softdeviceBootloader = 3 - case softdeviceBootloaderApplication = 7 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void +public enum ZTScannerResult { + case success(device: ZTCoreKit.ZTDevice) + case cancelled + case failed((any Swift.Error)?) +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : Swift.RawRepresentable +@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit } -public struct DFUFirmwareError : Swift.Error { - public enum FileType { - case zip - case binOrHex - case dat - public static func == (a: ZTCoreKit.DFUFirmwareError.FileType, b: ZTCoreKit.DFUFirmwareError.FileType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +public enum DFUStreamZipError : Swift.Error { + case noManifest + case invalidManifest + case fileNotFound + case typeNotFound + public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get } - public let type: ZTCoreKit.DFUFirmwareError.FileType } -extension ZTCoreKit.DFUFirmwareError : Foundation.LocalizedError { +extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { public var errorDescription: Swift.String? { get } } -@objc public class DFUFirmware : ObjectiveC.NSObject { - @objc final public let fileName: Swift.String? - @objc final public let fileUrl: Foundation.URL? - @objc public var valid: Swift.Bool { - @objc get - } - @objc public var size: ZTCoreKit.DFUFirmwareSize { - @objc get - } - @objc public var parts: Swift.Int { - @objc get +@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get } - @objc convenience public init(urlToZipFile: Foundation.URL) throws - @objc public init(urlToZipFile: Foundation.URL, type: ZTCoreKit.DFUFirmwareType) throws - @objc convenience public init(zipFile: Foundation.Data) throws - @objc public init(zipFile: Foundation.Data, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(urlToBinOrHexFile: Foundation.URL, urlToDatFile: Foundation.URL?, type: ZTCoreKit.DFUFirmwareType) throws - @objc public init(binFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) - @objc public init(hexFile: Foundation.Data, datFile: Foundation.Data?, type: ZTCoreKit.DFUFirmwareType) throws + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Status : Swift.CustomStringConvertible { - public var code: ZTCoreKit.ZTAlgoStatus? { - get - } - public var timestamp: Swift.UInt32? { - get - } - public var algoMode: ZTCoreKit.ZTAlgoMode? { - get - } - public var precisionMode: ZTCoreKit.ZTAlgoPrecisionMode? { - get - } - public var consecutiveSteps: Swift.UInt8? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) +public enum ZTPassthroughAlgo : ZTCoreKit.ZTEnum { + case status(id: ZTCoreKit.ZTAlgoStatus) + case startNewChunk + case changeProductMode(mode: ZTCoreKit.ZTAlgoMode) + case setPrecisionMode(mode: ZTCoreKit.ZTAlgoPrecisionMode) + case setMinimumStepsForAnalysis(activityType: ZTCoreKit.ZTActivityType, steps: Swift.Int) + case setMinimumStridesForAnalysis(activityType: ZTCoreKit.ZTActivityType, strides: Swift.Int) + case setStreamingMode(interval: Swift.UInt16, activityType: ZTCoreKit.ZTActivityType, metricsId: Swift.UInt8) + public var parameters: [Swift.UInt8] { + get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { + @objc open var softdevice: Swift.UInt32 { + get + } + @objc open var bootloader: Swift.UInt32 { + get + } + @objc open var application: Swift.UInt32 { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() @objc deinit } -infix operator <<- : DefaultPrecedence -infix operator ->> : DefaultPrecedence -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) -public func ->> (left: T, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) -public func ->> (left: T?, right: ZTCoreKit.ZTMap) -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable -@objc @_inheritsConvenienceInitializers public class IntelHex2BinConverter : ObjectiveC.NSObject { - public static func convert(_ hex: Foundation.Data, mbrSize: Swift.UInt32 = 0) -> Foundation.Data? - @objc override dynamic public init() - @objc deinit -} -public enum ZTCompressionMethod : Swift.UInt16 { - case none - case deflate - public init?(rawValue: Swift.UInt16) - public typealias RawValue = Swift.UInt16 - public var rawValue: Swift.UInt16 { +extension Swift.String { + public func binary(with character: Swift.String = "0", toLength length: Swift.Int = 8) -> Swift.String + public var fromBase64: Swift.String? { get } -} -public typealias CRC32 = Swift.UInt32 -public typealias ZTConsumer = (_ data: Foundation.Data) throws -> Swift.Void -public typealias ZTProvider = (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data -extension Foundation.Data { - public func crc32(checksum: ZTCoreKit.CRC32) -> ZTCoreKit.CRC32 - public static func compress(size: Swift.Int, bufferSize: Swift.Int, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 - public static func decompress(size: Swift.Int, bufferSize: Swift.Int, skipCRC32: Swift.Bool, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 -} -extension ZTCoreKit.ZTPlist { - public enum Error { - case notFound(at: Foundation.URL?) - case deleted(at: Foundation.URL?) - case parse(at: Foundation.URL?) - case filemanagerRemove(with: any Swift.Error) - case aesKeyFail(key: Swift.String) - case aesInitialVectorFail(iv: Swift.String) - case aesCryptFail(status: Swift.Int32) - case noData - case stringNotInUtf8 - public static let identifier: Swift.String - public func raise() - } -} -extension ZTCoreKit.ZTPlist.Error : Swift.Error, Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var toBase64: Swift.String { get } + public func substring(from: Swift.Int, to: Swift.Int) -> Swift.String + public func substring(range: Foundation.NSRange) -> Swift.String + public func matches(regex: Swift.String) -> [Swift.String] + public static func random(length: Swift.Int = 9) -> Swift.String + public func split(usingRegex pattern: Swift.String) -> [Swift.String] + public func serialNumber() -> Swift.String + public func fileName() -> Swift.String + public func incrementedMacAddress() -> Swift.String } -public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { - case undefined - case walking - case running - case pedaling - case jump - case stairsUp - case stairsDown - case standing - case sitting - case kneeling - case tiptoe - case vibration - case slip - case incident - case freewheel - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Int { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] +} +extension Swift.UInt8 { + public var bits: [Swift.UInt8] { get } -} -public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { - var rawData: Foundation.Data? { get set } -} -@objc public enum LogLevel : Swift.Int { - case debug = 0 - case verbose = 1 - case info = 5 - case application = 10 - case warning = 15 - case error = 20 - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexValue: Swift.String { get } } -@objc public protocol LoggerDelegate { - @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +extension Swift.UInt16 { + public func toByteArray(size: Swift.Int = 2) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers public class ZTFirmwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { - get - } - override open func valueUpdated() - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - @objc deinit +extension Swift.UInt32 { + public func toByteArray(size: Swift.Int = 4) -> [Swift.UInt8] } -@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class DFUServiceController : ObjectiveC.NSObject { - @objc public func pause() - @objc public func resume() - @objc public func abort() -> Swift.Bool - @objc public func restart() - @objc public var paused: Swift.Bool { - @objc get - } - @objc public var aborted: Swift.Bool { - @objc get - } - @objc deinit +extension Swift.UInt64 { + public func toByteArray(size: Swift.Int = 8) -> [Swift.UInt8] } -public enum ZTTXPower : Swift.UInt8 { - case dBm0 - case dBm2 - case dBm3 - case dBm4 - case dBm5 - case dBm6 - case dBm7 - case dBm8 - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +extension Swift.Double { + public var milliseconds: Swift.Int64 { get } } -public class ZTPlist { - public static let folderName: Swift.String - final public let url: Foundation.URL - public var encrypted: Swift.Bool { - get - } - public var encryption: ZTCoreKit.ZTAES? { +extension Swift.Array where Element == Swift.UInt8 { + public var hex: Swift.String { get } - public var dictionary: Foundation.NSMutableDictionary? { +} +extension Swift.Dictionary { + public func merge(dict: [Key : Value]) -> [Key : Value] +} +extension Foundation.Date { + public var timestamp: Swift.Int64 { get } - public var cache: Foundation.NSMutableDictionary? { + public var apiFormat: Swift.String { get - set } - public var volume: Swift.Int64 { + public var logFormat: Swift.String { get } - public var size: Swift.String { +} +extension Swift.Array where Element : CoreBluetooth.CBPeripheral { + public func has(peripheral: CoreBluetooth.CBPeripheral) -> Swift.Bool +} +extension Swift.Array { + public func chunked(into size: Swift.Int = 1000) -> [[Element]] +} +extension Swift.Array where Element == Swift.String { + public func stringify() -> Swift.String +} +extension CoreBluetooth.CBCharacteristic { + public func notifyValue(_ isEnabled: Swift.Bool) + public func readValue() + @discardableResult + public func write(_ data: Foundation.Data, writeType: CoreBluetooth.CBCharacteristicWriteType) -> Swift.Bool +} +public struct ZTMessageChunkConfig : Swift.CustomStringConvertible, Swift.Codable { + public var byte0: Swift.UInt8? { get } - public var fileName: Swift.String { + public var byte1: Swift.UInt8? { get } - public var name: Swift.String { + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkConfig { + public var side: ZTCoreKit.ZTModuleSide { get } - @objc public func save() - public init(insideBundleUrl url: Foundation.URL) - public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName) - convenience public init(withNameAtDocumentDirectory name: Swift.String, folderName folder: Swift.String = ZTPlist.folderName, encryption: ZTCoreKit.ZTAES) - public static func delete(_ plist: inout ZTCoreKit.ZTPlist?) - @objc deinit -} -public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { - public var id: Swift.UInt8 { + public var flag: Swift.UInt8 { get } - case generalState - case startNewActivity - case stopNewActivity - case resendData - case deepSleep - case reboot - case detailedBattery - case hardwareInformation - case firmwareInformation - case bootloaderVersion - case setInactivityTimeout - case setDFUInstall - case setDFUMode - case setChunkConfig - case setChunkMinutesInterval - case setChunkSecondsInterval - case selectAlgorithm - case freeMemory - case getTimestamp - case passthroughAlgo - case resetActivity - case getActivityMetadata - case disableHeating - case setHeating - case setTimer - case getTemperature - case getTimer - case startPostureCalibration - case setUserParameters - case resetCalibration - case getCalibrationState - case rawDataSend - case rawDataEnable - case rawDataLookup - case rawDataDebug - case calibrateStatic - case clearCalibrateStatic - case cancelCalibrateStatic - case getCalibrateStaticMessage - case getCalibrateStaticData - case testCalibrateStatic - case memsConfig - case updateTxPower - case updatePhy - case disconnect - case startDFURight - case startDFULeft - case enablePeerConnection - case factoryReset public var description: Swift.String { get } +} +@_inheritsConvenienceInitializers @objc public class LegacyDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) + @objc deinit +} +public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { + case undefined + case userRequest + case memoryFull + case inactivity public init?(rawValue: Swift.UInt8) - public typealias AllCases = [ZTCoreKit.ZTCommand] - public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public static var allCases: [ZTCoreKit.ZTCommand] { - get - } public var rawValue: Swift.UInt8 { get } } -open class ZTCustomDateFormatTransform : ZTCoreKit.ZTDateFormatterTransform { - public init(formatString: Swift.String) - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTMultipartFormData { - open var contentType: Swift.String { +@_inheritsConvenienceInitializers open class ZTModelNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get - set } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTCommandResponse { - public var bytes: [Swift.UInt8] - public var rightModule: Swift.Bool { +public protocol ZTServiceProtocol : AnyObject { + static var uuid: Swift.String { get } + static var serviceType: ZTCoreKit.ZTService.Type { get } + static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] { get } +} +extension ZTCoreKit.ZTServiceProtocol where Self : ZTCoreKit.ZTService { + public static var serviceType: ZTCoreKit.ZTService.Type { get } - public var leftModule: Swift.Bool { +} +public protocol ZTMapContext { +} +final public class ZTMap { + final public let mappingType: ZTCoreKit.ZTMappingType + final public var JSON: [Swift.String : Any] { get } - public var command: ZTCoreKit.ZTCommand? { + final public var isKeyPresent: Swift.Bool { get } - public var status: ZTCoreKit.ZTCommandStatus? { + final public var currentValue: Any? { + get + } + final public var currentKey: Swift.String? { + get + } + final public var nestedKeyDelimiter: Swift.String { + get + } + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + final public let toObject: Swift.Bool + public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + get + } + final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { get } + final public func value() -> T? @objc deinit } -public enum ZTCommandStatus : Swift.UInt8 { - case success - case busy - case invalidParam - case invalidState - case forbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerresponse - public var description: Swift.String { +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, default: T) throws -> T + final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +} +extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) + @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) + @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) + @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) + public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) + public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) + public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) +} +public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { + case staticType + case dynamic + case walking + case running + case cycling + case jump + case stairsUp + case stairsDown + case staticOther + case kneel + case tiptoe + case vibration + case trampling + case crawling + case dynamicOther + case slip + case trip + case active + case inactive + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } +} +public enum ZTTXPower : Swift.UInt8 { + case dBm0 + case dBm2 + case dBm3 + case dBm4 + case dBm5 + case dBm6 + case dBm7 + case dBm8 public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -@_hasMissingDesignatedInitializers public class ZTDefaults { - @objc deinit -} -@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { - final public let stringValue: Swift.String - public init(_ value: Swift.String) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String - open var data: Foundation.Data? { +@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func addEntry(with path: Swift.String, relativeTo baseURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, fileURL: Foundation.URL, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil) throws - final public func addEntry(with path: Swift.String, type: ZTCoreKit.ZTEntry.EntryType, uncompressedSize: Swift.UInt32, modificationDate: Foundation.Date = Date(), permissions: Swift.UInt16? = nil, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, bufferSize: Swift.UInt32 = defaultWriteChunkSize, progress: Foundation.Progress? = nil, provider: (_ position: Swift.Int, _ size: Swift.Int) throws -> Foundation.Data) throws - final public func remove(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, progress: Foundation.Progress? = nil) throws -} -@objc public class ZTDevice : ObjectiveC.NSObject { - public var id: Swift.String - public var peripheral: CoreBluetooth.CBPeripheral? { +@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { get } - public var serialNumber: Swift.String { + open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { get } - public var name: Swift.String? { + open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { get } - public var qrCode: Swift.String? { + open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { get } - public var rssi: Swift.Int { + open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { get } - public var macAddressRight: Swift.String? - public var macAddressLeft: Swift.String? - public var advertisementData: [Swift.String : Any]? - public var manufacturer: Swift.String? { + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +extension ZTCoreKit.ZTCore { + final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) + final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) + final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) +} +@_hasMissingDesignatedInitializers public class ZTDeviceInfo { + public var project: ZTCoreKit.ZTProjectCodeType? { get } - public var hardwareRevision: Swift.String? { + public var productCode: ZTCoreKit.ZTProductCodeType? { get } - public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { get } - public var modelNumber: Swift.String? { + public var productType: ZTCoreKit.ZTProductTypeCode? { get } - public var uuid: Swift.String { + public var hardwareVersion: Swift.Int8? { get } - public var isConnected: Swift.Bool { + public var boardVersion: Swift.Int8? { get } - public var isActivityRunning: Swift.Bool { + public var testeur: Swift.String? { get } - public var isDeviceReady: Swift.Bool { + public var sizeRaw: Swift.String? { get } - public var info: ZTCoreKit.ZTDeviceInfo? { + public var year: Swift.Int? { get - set } - public var batterylevel: ZTCoreKit.ZTBatteryLevel? { + public var week: Swift.Int? { get } - public var lastActivityDate: Foundation.Date { + public var SN: Swift.String? { get } - public var generalState: ZTCoreKit.ZTMessageGeneralState? { + public var serialNumber: Swift.String + public var deviceIdentifier: Swift.String + public var macAddressRight: Swift.String? { get - set } - public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { + public var macAddressLeft: Swift.String? { get - set } - public var lowSoftwareInfo: Swift.String { + public var code: Swift.String? { get } - public var activityInfo: ZTCoreKit.ZTMessageActivity? { + @objc deinit +} +extension ZTCoreKit.ZTDeviceInfo { + public var size: Swift.Int? { get - set } - public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { + public var gender: Swift.String? { get - set } - public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { +} +public enum ZTCommand : Swift.UInt8, Swift.CaseIterable, Swift.Identifiable { + public var id: Swift.UInt8 { get - set } - public var actualState: ZTCoreKit.ZTDeviceActualState - public var previousState: ZTCoreKit.ZTDeviceActualState - public var hasInitialUpdate: Swift.Bool { + case generalState + case startNewActivity + case stopNewActivity + case resendData + case deepSleep + case reboot + case detailedBattery + case hardwareInformation + case firmwareInformation + case bootloaderVersion + case setInactivityTimeout + case setDFUInstall + case setDFUMode + case setChunkConfig + case setChunkMinutesInterval + case setChunkSecondsInterval + case selectAlgorithm + case freeMemory + case getTimestamp + case passthroughAlgo + case resetActivity + case getActivityMetadata + case disableHeating + case setHeating + case setTimer + case getTemperature + case getTimer + case startPostureCalibration + case setUserParameters + case resetCalibration + case getCalibrationState + case rawDataSend + case rawDataEnable + case rawDataLookup + case rawDataDebug + case calibrateStatic + case clearCalibrateStatic + case cancelCalibrateStatic + case getCalibrateStaticMessage + case getCalibrateStaticData + case testCalibrateStatic + case memsConfig + case updateTxPower + case updatePhy + case disconnect + case startDFURight + case startDFULeft + case enablePeerConnection + case factoryReset + public var description: Swift.String { get } - final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> - final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> - final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> - final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> - final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> - final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> - final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> - final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> - final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> - final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> - final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> - final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> - final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> - final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> - final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> - final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> - final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> - final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> - final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> - final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> - final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> - final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> - final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> - final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> - required public init(peripheral: CoreBluetooth.CBPeripheral) - public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) - public func connect() - public func disconnect() - @objc deinit - @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) - public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService - public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) - public func readGeneralState() -} -extension ZTCoreKit.ZTDevice { - public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool - public var isLowBattery: Swift.Bool? { - get - } -} -@_hasMissingDesignatedInitializers open class ZTServerTrustManager { - @objc deinit -} -public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { - case success - case busy - case invalidParam - case invalidState - case fwResForbidden - case notSupported - case unknownCommand - case commandInProgress - case noPeerResponse public init?(rawValue: Swift.UInt8) + public typealias AllCases = [ZTCoreKit.ZTCommand] + public typealias ID = Swift.UInt8 public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public static var allCases: [ZTCoreKit.ZTCommand] { get } -} -public enum DFUStreamZipError : Swift.Error { - case noManifest - case invalidManifest - case fileNotFound - case typeNotFound - public static func == (a: ZTCoreKit.DFUStreamZipError, b: ZTCoreKit.DFUStreamZipError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { + public var rawValue: Swift.UInt8 { get } } -extension ZTCoreKit.DFUStreamZipError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } +public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { + init(map: ZTCoreKit.ZTMap) throws } -@_inheritsConvenienceInitializers public class ZTBatteryCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - public var batteryLevel: ZTCoreKit.ZTBatteryLevel? { - get - } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() +extension ZTCoreKit.ZTImmutableMappable { + public func mapping(map: ZTCoreKit.ZTMap) + public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws + public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws +} +extension ZTCoreKit.ZTMap { + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable + final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType +} +extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { + final public func map(JSON: [Swift.String : Any]) throws -> N + final public func map(JSONString: Swift.String) throws -> N + final public func map(JSONObject: Any) throws -> N + final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] + final public func mapArray(JSONString: Swift.String) throws -> [N] + final public func mapArray(JSONObject: Any) throws -> [N] + final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] + final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] + final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] +} +@_inheritsConvenienceInitializers @objc public class SecureDFUServiceInitiator : ZTCoreKit.DFUServiceInitiator { + @objc override public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc override public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc override public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = super, progressQueue: Dispatch.DispatchQueue = super, loggerQueue: Dispatch.DispatchQueue = super, centralManagerOptions: [Swift.String : Any]? = nil) @objc deinit } -@_hasMissingDesignatedInitializers public class ZTDeviceInfo { - public var project: ZTCoreKit.ZTProjectCodeType? { - get - } - public var productCode: ZTCoreKit.ZTProductCodeType? { - get - } - public var manufacturer: ZTCoreKit.ZTManufacturerCodeType? { - get - } - public var productType: ZTCoreKit.ZTProductTypeCode? { - get - } - public var hardwareVersion: Swift.Int8? { - get - } - public var boardVersion: Swift.Int8? { - get - } - public var testeur: Swift.String? { - get - } - public var sizeRaw: Swift.String? { - get - } - public var year: Swift.Int? { - get - } - public var week: Swift.Int? { +public enum ZTPeriod : Swift.String { + case day + case week + case month + case year + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public var SN: Swift.String? { +} +open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + final public let dateFormatter: Foundation.DateFormatter + public init(dateFormatter: Foundation.DateFormatter) + open func transformFromJSON(_ value: Any?) -> Foundation.Date? + open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +final public class ZTSignal { + public typealias ZTSignalCallback = (T) -> Swift.Void + final public var fireCount: Swift.Int { get } - public var serialNumber: Swift.String - public var deviceIdentifier: Swift.String - public var macAddressRight: Swift.String? { + final public var retainLastData: Swift.Bool { get + set } - public var macAddressLeft: Swift.String? { + final public var lastDataFired: T? { get } - public var code: Swift.String? { + final public var observers: [Swift.AnyObject] { get } + public init(retainLastData: Swift.Bool = false) + @discardableResult + final public func subscribe(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribeOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePast(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func subscribePastOnce(with observer: Swift.AnyObject, callback: @escaping ZTCoreKit.ZTSignal.ZTSignalCallback) -> ZTCoreKit.ZTSignalSubscription + final public func fire(_ data: T) + final public func cancelSubscription(for observer: Swift.AnyObject) + final public func cancelAllSubscriptions() + final public func clearLastData() @objc deinit } -extension ZTCoreKit.ZTDeviceInfo { - public var size: Swift.Int? { - get - } - public var gender: Swift.String? { - get - } +extension ZTCoreKit.ZTSignal where T == () { + final public func fire() } -public enum ZTProductType : Swift.String { - case sports - case warm - case safety - case podoSmart - case dfu - case ztDfu - case baliston - public var activityType: Swift.String { - get - } - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { +@_hasMissingDesignatedInitializers final public class ZTSignalSubscription { + public typealias ZTSignalCallback = (T) -> Swift.Void + public typealias ZTSignalFilter = (T) -> Swift.Bool + weak final public var observer: Swift.AnyObject? + final public var once: Swift.Bool + @discardableResult + final public func filter(_ predicate: @escaping ZTCoreKit.ZTSignalSubscription.ZTSignalFilter) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func sample(every sampleInterval: Foundation.TimeInterval) -> ZTCoreKit.ZTSignalSubscription + @discardableResult + final public func onQueue(_ queue: Dispatch.DispatchQueue) -> ZTCoreKit.ZTSignalSubscription + final public func cancel() + @objc deinit +} +infix operator => : AssignmentPrecedence +public func => (signal: ZTCoreKit.ZTSignal, data: T) +public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { + case monitoring + case gaming + public var parameters: [Swift.UInt8] { get } -} -public enum ZTProjectCodeType : Swift.String { - case zt1 - case zt2 - case zt3 - case zt4 - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +@objc public class DFUServiceInitiator : ObjectiveC.NSObject { + @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? + @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? + @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? + @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate + @objc public var packetReceiptNotificationParameter: Swift.UInt16 + @objc public var forceDfu: Swift.Bool + @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool + @objc public var connectionTimeout: Swift.Double + @objc public var dataObjectPreparationDelay: Swift.Double + @objc public var alternativeAdvertisingNameEnabled: Swift.Bool + @objc public var alternativeAdvertisingName: Swift.String? + @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool + @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper + @objc public var disableResume: Swift.Bool + @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") + @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) + @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) + @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator + @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") + @objc public func start() -> ZTCoreKit.DFUServiceController? + @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? + @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? + @objc deinit +} +public class ZTDateTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +public class ZTDateTransformUTC : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.Date + public typealias JSON = Swift.String + public init() + public func transformFromJSON(_ value: Any?) -> Foundation.Date? + public func transformToJSON(_ value: Foundation.Date?) -> Swift.String? + @objc deinit +} +@_inheritsConvenienceInitializers public class ZTCommandsCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { + get + } + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger +public enum ZTProductType : Swift.String { + case sports + case warm + case safety + case podoSmart + case dfu + case ztDfu + case baliston + public var activityType: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTProjectCodeType : Swift.String { + case zt1 + case zt2 + case zt3 + case zt4 + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } } @@ -1596,606 +1707,306 @@ public enum ZTUnitSizeCodeType : Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public enum Status : Swift.Int8, Swift.Codable { - case new - case sent - case sending - case error - public init?(rawValue: Swift.Int8) - public typealias RawValue = Swift.Int8 - public var rawValue: Swift.Int8 { - get - } - } - public enum TimestampType : Swift.UInt8, Swift.Codable { - case unknown - case start - case stop - case pause - case resume - case reboot - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } +open class ZTURLTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.URL + public typealias JSON = Swift.String + public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) + open func transformFromJSON(_ value: Any?) -> Foundation.URL? + open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? + @objc deinit +} +@objc public class ZTDevice : ObjectiveC.NSObject { + public var id: Swift.String + public var peripheral: CoreBluetooth.CBPeripheral? { + get } - public enum BmTimestampType : Swift.UInt8, Swift.Codable { - case unknown - case shoeWearOn - case shoeWearOff - case walkingStart - case walkingStop - case runningStart - case runningStop - case cyclingStart - case cyclingStop - case transportStart - case transportStop - public var description: Swift.String { - get - } - public var name: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var cbPeripheral: (any ZTCoreKit.ZTCBPeripheralProtocol)? { + get } - public enum PacketType : Swift.UInt8, Swift.Codable { - case unknown - case quantification - case walkAnalysis - case runAnalysis - case stairs - case cycling - case jump - case safety - case staticActivity - case debug - case debugTelemetry - case debugProba - case bmTimestampPacket - case fwTimestampPacket - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + public var serialNumber: Swift.String { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Acknowledgment : Swift.CustomStringConvertible { - public var command: ZTCoreKit.ZTAlgoCommand? { - get - } - public var status: ZTCoreKit.ZTAlgoAcknowledgmentStatus? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var name: Swift.String? { + get } -} -extension ZTCoreKit.ZTRealtimeMessage { - public struct Event : Swift.CustomStringConvertible { - public var timestamp: Swift.UInt32? { - get - } - public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { - get - } - public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { - get - } - public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { - get - } - public var arguments: [Swift.UInt8]? { - get - } - public var description: Swift.String { - get - } - public init(data: Foundation.Data) + public var qrCode: Swift.String? { + get } -} -public protocol ZTTransformType { - associatedtype Object - associatedtype JSON - func transformFromJSON(_ value: Any?) -> Self.Object? - func transformToJSON(_ value: Self.Object?) -> Self.JSON? -} -public enum ZTError : Swift.Equatable, Swift.Error { - case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) - case ble(type: ZTCoreKit.ZTError.Enums.BleError) - case network(type: ZTCoreKit.ZTError.Enums.NetworkError) - case store(type: ZTCoreKit.ZTError.Enums.StoreError) - case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) - case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) - case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) - case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) - @_hasMissingDesignatedInitializers public class Enums { - @objc deinit + public var rssi: Swift.Int { + get } - public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool - public var error: (any Swift.Error)? { + public var macAddressRight: Swift.String? + public var macAddressLeft: Swift.String? + public var advertisementData: [Swift.String : Any]? + public var manufacturer: Swift.String? { get } -} -extension ZTCoreKit.ZTError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var hardwareRevision: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ScanningError { - case cameraPermission - case wrongCode - case unknown - case notLinkedUser - public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public var firmwareRevision: ZTCoreKit.ZTFirmwareRevision? { + get } -} -extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var modelNumber: Swift.String? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum BleError { - case invalidState - case resetting - case poweredOff - case unsupported - case timeout - case unauthorized - case notConnected - case notConnectedLeft - case activityIsRunning - case busy - case dfu - case commandError - public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var uuid: Swift.String { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum FirmwareError { - case differentFirmware - case memsError - case leftNoConnected - case restartRequired - case recoverFromDfu - case minimumFwVersion - case updateRequired - case unsupported - case wrongProductType - case firstChunkIdIsGreater - case startTimeZero - public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isConnected: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DfuError { - case noLeftModule - case noUpdate - case wrongFile - case noStart - case aborted - case abortedRight - case abortedLeft - case unsupported - case lowBattery - case inProgress - case updateRequired - case wrongProductType - public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isActivityRunning: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum StoreError { - case missing(Swift.String) - case invalid(Swift.String, Any?) - case wrong(Swift.String) - case unknown - } -} -extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var isDeviceReady: Swift.Bool { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum ActivityError { - case notStarted - case notStartedLeft - case notStopped - case unknown - case modeNotSetActivityIsRunning - case previousNotStopped - case previousRestoring - case noUserParametersSet - case rawDataFlowIsRunning - case invalidMobilityScanResults - case outsideActivityDetected - case anomalyDetected - case mobility - public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var info: ZTCoreKit.ZTDeviceInfo? { get + set } -} -extension ZTCoreKit.ZTError.Enums { - public enum NetworkError { - case userLinkError - case inaccessible - case urlError(Foundation.URLError) - case generalError(any Swift.Error) - case noResponse - case invalidResponseType(Foundation.URLResponse) - case noResponseData(Foundation.HTTPURLResponse) - case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) - case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) - } -} -extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var batterylevel: ZTCoreKit.ZTBatteryLevel? { get } -} -extension ZTCoreKit.ZTError.Enums { - public enum DecodableError { - case invalidKeyPath - case emptyKeyPath - case invalidJSON - public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } - } -} -extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { + public var lastActivityDate: Foundation.Date { get } -} -public class ZTFirmwareRevision { - public var fwSystemVersion: Swift.String? { + public var generalState: ZTCoreKit.ZTMessageGeneralState? { get + set } - public var productType: ZTCoreKit.ZTProductCodeType? { + public var softwareInfo: (right: ZTCoreKit.ZTMessageSoftware?, left: ZTCoreKit.ZTMessageSoftware?) { get + set } - public var bmVersion: Swift.String? { + public var lowSoftwareInfo: Swift.String { get } - public var date: Foundation.Date? { + public var activityInfo: ZTCoreKit.ZTMessageActivity? { get + set } - public var code: Swift.String { + public var bootloaderInfo: (right: ZTCoreKit.ZTMessageBootloaderInfo?, left: ZTCoreKit.ZTMessageBootloaderInfo?) { get + set } - public var fwVersion: Swift.String { + public var inactivityTimeout: ZTCoreKit.ZTMessageInactivityTimeout? { get + set } - public var versions: ZTCoreKit.ZTFwBmVersion? { + public var actualState: ZTCoreKit.ZTDeviceActualState + public var previousState: ZTCoreKit.ZTDeviceActualState + public var hasInitialUpdate: Swift.Bool { get } - public init(code: Swift.String) + final public let onStateChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> + final public let onRSSIChanged: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, Swift.Int)> + final public let onServiceDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onServiceFeaturesIdentified: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice, ZTCoreKit.ZTService)> + final public let onCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onAllCharacteristicsDiscovered: ZTCoreKit.ZTSignal<()> + final public let onAllCharacteristicsRead: ZTCoreKit.ZTSignal<()> + final public let onCharacteristicValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCharacteristicValueWritten: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onCommandCharacteristicDiscovered: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCharacteristic?)> + final public let onNotifyValueUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GroupID, Swift.UInt8, [Swift.UInt8]?)> + final public let onBatteryValueUpdated: ZTCoreKit.ZTSignal<()> + final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDeviceActualState)> + final public let onActivityInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivity?)> + final public let onSoftwareUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageSoftware?)> + final public let onTimeUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageTime?)> + final public let onActivityMetadataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageActivityMetadata?)> + final public let onRawDataHeaderUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onRawDataFrameUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onInactivityTimeoutUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageInactivityTimeout?)> + final public let onFirmwareError: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError.Enums.FirmwareError)> + final public let onNotifyCommonGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CommonMessageId, [Swift.UInt8]?)> + final public let onNotifyWarmGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.WarmMessageId, Foundation.Data?)> + final public let onNotifyRunningGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.RunningMessageId, [Swift.UInt8]?)> + final public let onNotifyCyclingGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.CyclingMessageId, [Swift.UInt8]?)> + final public let onNotifySafetyGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.SafetyMessageId, [Swift.UInt8]?)> + final public let onNotifyGenericGroupUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTNotifyData.GenericMessageId, [Swift.UInt8]?)> + final public let onCommandUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> + final public let onIndicateValueUpdated: ZTCoreKit.ZTSignal<(Foundation.Data?)> + final public let onBootloaderInfoUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo?)> + final public let onNotifyChunkSendStatusUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkSendStatus?)> + final public let onNotifyChunkConfigUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkConfig?)> + final public let onNotifyChunkDataUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageChunkData?)> + required public init(peripheral: CoreBluetooth.CBPeripheral) + public init(cbPeripheral: any ZTCoreKit.ZTCBPeripheralProtocol) + public func connect() + public func disconnect() @objc deinit + @objc override dynamic open func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change: [Foundation.NSKeyValueChangeKey : Any]?, context: Swift.UnsafeMutableRawPointer?) + public func service(_ uuid: Swift.String? = nil) -> T? where T : ZTCoreKit.ZTService + public func checkBattery(completion: @escaping ((Swift.UInt8, Swift.UInt8, Swift.Bool) -> Swift.Void)) + public func readGeneralState() } -extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool - public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool -} -public struct ZTFwBmVersion { - public var fwSystemMajorVersion: Swift.Int - public var fwSystemMinorVersion: Swift.Int - public var fwSystemBuildVersion: Swift.Int - public var bmMajorVersion: Swift.Int - public var bmMinorVersion: Swift.Int -} -extension ZTCoreKit.ZTFirmwareRevision { - public var fwSystemMajorVersion: Swift.Int { - get - } - public var fwSystemMinorVersion: Swift.Int { - get - } - public var fwSystemBuildVersion: Swift.Int { - get - } - public var bmMajorVersion: Swift.Int { - get - } - public var bmMinorVersion: Swift.Int { +extension ZTCoreKit.ZTDevice { + public static func == (lhs: ZTCoreKit.ZTDevice, rhs: ZTCoreKit.ZTDevice) -> Swift.Bool + public var isLowBattery: Swift.Bool? { get } } -public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { - public enum Mode : Swift.UInt8 { - case manual - case automatic - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } - } - public var byte0: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTIndicateCharacteristic : ZTCoreKit.ZTCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } - public var byte1: Swift.UInt8? { - get - } - public var byte2: Swift.UInt8? { - get - } - public var byte3: Swift.UInt8? { - get - } - public init(bytes: [Swift.UInt8]) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit } -extension ZTCoreKit.ZTMessageChunkData { +infix operator <<- : DefaultPrecedence +infix operator ->> : DefaultPrecedence +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) +public func ->> (left: T, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) +public func ->> (left: T?, right: ZTCoreKit.ZTMap) +public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: T?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [T]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]], right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func ->> (left: [[T]]?, right: ZTCoreKit.ZTMap) where T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: ZTCoreKit.ZTMap) where T : Swift.Hashable, T : ZTCoreKit.ZTBaseMappable +public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) public var side: ZTCoreKit.ZTModuleSide { get } - public var mode: ZTCoreKit.ZTMessageChunkData.Mode { - get - } - public var length: Swift.UInt8 { + public var baseMajor: Swift.UInt8 { get } - public var payload: Foundation.Data? { + public var baseMinor: Swift.UInt8 { get } - public var description: Swift.String { + public var baseBuild: Swift.UInt16 { get } -} -@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - public var stringValue: Swift.String? { + public var app: Swift.String { get } - @objc deinit -} -open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.NSDecimalNumber - public typealias JSON = Swift.String - public init() - open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? - open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? - @objc deinit -} -public enum ZTLogLevel : Swift.String { - case all - case debug - case info - case error - case fatal - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var appMajor: Swift.UInt8 { get } -} -extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { - public var description: Swift.String { + public var appMinor: Swift.UInt8 { get } -} -public enum ZTLogCategory : Swift.String { - case networkAgent - case modules - case sdk - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public var version: Swift.String { get } -} -extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { - case status - case acknowledgment - case realTimeEvent - case realTimeMetrics - case warning - case error - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { get } -} -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.SignedInteger -public func <<- (left: inout T, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -public func <<- (left: inout T?, right: ZTCoreKit.ZTMap) where T : Swift.UnsignedInteger -@_hasMissingDesignatedInitializers public class ZTLogger { - public static let instance: ZTCoreKit.ZTLogger + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -extension ZTCoreKit.ZTLogger { - public func ztDebugPrint(_ message: Swift.String) - public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) - public func print(_ value: @autoclosure () -> Any) +public protocol ZTActivityCachable : CoreData.NSManagedObject { + var id: Swift.String { get set } + var packets: Foundation.NSMutableOrderedSet? { get set } + var startDate: Foundation.Date? { get set } + #if compiler(>=5.3) && $AsyncAwait + func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif } -public struct ZTLoggerLine : Swift.Codable { - public static let notification: Foundation.Notification.Name - public static let ble: Foundation.Notification.Name - public var date: Foundation.Date - public let message: Swift.String - public let level: Swift.String - public let category: Swift.String - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws +extension ZTCoreKit.ZTActivityCachable { + public static func == (lhs: Self, rhs: Self) -> Swift.Bool } -@_hasMissingDesignatedInitializers open class ZTNetworkReachabilityManager { - open var isReachable: Swift.Bool { - get - } - open var isReachableOnCellular: Swift.Bool { - get - } - open var isReachableOnEthernetOrWiFi: Swift.Bool { - get - } - open var flags: SystemConfiguration.SCNetworkReachabilityFlags? { +@objc public enum LogLevel : Swift.Int { + case debug = 0 + case verbose = 1 + case info = 5 + case application = 10 + case warning = 15 + case error = 20 + public func name() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - @objc deinit } -public enum ZTNotifyData { - public enum GroupID : Swift.UInt8 { - case common - case warm - case running - case cycling - case safety - case generic - public var description: Swift.String { +@objc public protocol LoggerDelegate { + @objc func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Metrics : Swift.CustomStringConvertible { + public var activityType: ZTCoreKit.ZTActivityType? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var metricId: Swift.UInt8? { get } - } - public enum CommonMessageId : Swift.UInt8 { - case MSG_GENERAL_STATES - case MSG_BATTERY_LEVEL - case MSG_MEMS - case MSG_FLASH - case MSG_TIME - case MSG_HARDWARE - case MSG_SOFTWARE - case MSG_ACTIVITY_INFO - case MSG_ACTIVITY_METADATA - case MSG_RAWDATA_HEADER - case MSG_RAWDATA_FRAME - case MSG_BTLOADER_INFO - case MSG_INACTIVITY_TIMEOUT - case MSG_CHUNK_SEND_STATUS - case MSG_CHUNK_DATA - case MSG_CHUNK_CONFIG - case MSG_DEBUG - public var description: Swift.String { + public var metric: ZTCoreKit.ZTRealtimeMetric? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var value: [Swift.UInt8]? { get } - } -} -extension ZTCoreKit.ZTNotifyData { - public enum WarmMessageId : Swift.UInt8 { - case MSG_HEATING_TEMP_1 - case MSG_HEATING_TEMP_2 - case MSG_HEATING_STEP_R_CNT - case MSG_HEATING_STEP_L_CNT - case MSG_HEATING_SETPOINT_R - case MSG_HEATING_SETPOINT_L - case MSG_GET_HEAT_TIMER - case MSG_HEATING_DEBUG_R - case MSG_HEATING_DEBUG_L - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public init(data: Foundation.Data) } } -extension ZTCoreKit.ZTNotifyData { - public enum RunningMessageId : Swift.UInt8 { - case UNKNOWN +extension ZTCoreKit.ZTRealtimeMessage.Event { + public enum EventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case motion + case transition public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum CyclingMessageId : Swift.UInt8 { - case MSG_CADENCE + public enum MotionId : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case stepForward + case stepBackward + case stepSideLeft + case stepSideRight + case stepUp + case stepDown public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -} -extension ZTCoreKit.ZTNotifyData { - public enum SafetyMessageId : Swift.UInt8 { - case MSG_CALIBRATION_SAFETY - case MSG_ALGO_RT_EVENT + public enum MotionIntensity : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined + case low + case medium + case high public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { @@ -2203,38 +2014,213 @@ extension ZTCoreKit.ZTNotifyData { } } } -extension ZTCoreKit.ZTNotifyData { - public enum GenericMessageId : Swift.UInt8 { - case MSG_ALGO_RT_EVENT - public var description: Swift.String { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public enum ZTMappingType { + case fromJSON + case toJSON + public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { + final public var context: (any ZTCoreKit.ZTMapContext)? + final public var shouldIncludeNilValues: Swift.Bool + public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) + final public func map(JSONObject: Any?, toObject object: N) -> N + final public func map(JSONString: Swift.String, toObject object: N) -> N + final public func map(JSON: [Swift.String : Any], toObject object: N) -> N + final public func map(JSONString: Swift.String) -> N? + final public func map(JSONObject: Any?) -> N? + final public func map(JSON: [Swift.String : Any]) -> N? + final public func mapArray(JSONString: Swift.String) -> [N]? + final public func mapArray(JSONObject: Any?) -> [N]? + final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] + final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? + final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] + final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? + final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? + final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? + public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? + public static func parseJSONString(JSONString: Swift.String) -> Any? + @objc deinit +} +extension ZTCoreKit.ZTMapper { + final public func map(JSONfile: Swift.String) -> N? + final public func mapArray(JSONfile: Swift.String) -> [N]? +} +extension ZTCoreKit.ZTMapper { + final public func toJSON(_ object: N) -> [Swift.String : Any] + final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] + final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] + final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] + final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? + final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? + public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? + public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? +} +extension ZTCoreKit.ZTMapper where N : Swift.Hashable { + final public func mapSet(JSONString: Swift.String) -> Swift.Set? + final public func mapSet(JSONObject: Any?) -> Swift.Set? + final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set + final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] + final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? +} +public enum ZTLoggerComponent : Swift.String { + case api + case app + case sdk + case firmware + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTLoggerSeverity : Swift.String { + case debug + case error + case info + case warn + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum ZTDfuPackageType : Swift.String { + case APP + case BL + case SD + case SD_BL + case SD_BL_APP + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +@_inheritsConvenienceInitializers public class ZTHardwareCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String + open var data: Foundation.Data? { + get + } + override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + @objc deinit +} +extension ZTCoreKit.ZTRealtimeMessage { + public struct Event : Swift.CustomStringConvertible { + public var timestamp: Swift.UInt32? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessage.Event.EventType? { + get + } + public var motionId: ZTCoreKit.ZTRealtimeMessage.Event.MotionId? { + get + } + public var intensity: ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity? { + get + } + public var arguments: [Swift.UInt8]? { + get + } + public var description: Swift.String { + get } + public init(data: Foundation.Data) } } -public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { - case activityNone - case activityStarting - case eraseMemory - case activityRunning - case activityPaused - case activityStopping - case activityPendData - case activitySendData - case unknown +public struct ZTMessageChunkData : Swift.CustomStringConvertible, Swift.Codable { + public enum Mode : Swift.UInt8 { + case manual + case automatic + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var byte0: Swift.UInt8? { + get + } + public var byte1: Swift.UInt8? { + get + } + public var byte2: Swift.UInt8? { + get + } + public var byte3: Swift.UInt8? { + get + } + public init(bytes: [Swift.UInt8]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension ZTCoreKit.ZTMessageChunkData { + public var side: ZTCoreKit.ZTModuleSide { + get + } + public var mode: ZTCoreKit.ZTMessageChunkData.Mode { + get + } + public var length: Swift.UInt8 { + get + } + public var payload: Foundation.Data? { + get + } public var description: Swift.String { get } +} +public enum ZTAlgoStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case timestamp + case modeId + case precisionMode + case numberOfSteps public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } +public enum ZTLogLevel : Swift.String { + case all + case debug + case info + case error + case fatal + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogLevel : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +public enum ZTLogCategory : Swift.String { + case networkAgent + case modules + case sdk + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension ZTCoreKit.ZTLogCategory : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType where Key : Swift.Hashable, Key : Swift.RawRepresentable, Value : ZTCoreKit.ZTMappable, Key.RawValue == Swift.String { public init() public func transformFromJSON(_ value: Any?) -> [Key : Value]? @@ -2242,494 +2228,367 @@ public struct ZTDictionaryTransform : ZTCoreKit.ZTTransformType wher public typealias JSON = Any public typealias Object = [Key : Value] } -public typealias ZTScannerResultBlock = (ZTCoreKit.ZTScannerResult) -> Swift.Void -public enum ZTScannerResult { - case success(device: ZTCoreKit.ZTDevice) - case cancelled - case failed((any Swift.Error)?) -} -@_inheritsConvenienceInitializers public class ZTInformationService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +public struct ZTMessageBootloaderInfo : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var side: ZTCoreKit.ZTModuleSide { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - open var manufacturerName: ZTCoreKit.ZTManufacturerNameCharacteristic? { + public var bootloaderVersion: Swift.UInt8 { get } - open var modelNumber: ZTCoreKit.ZTModelNumberCharacteristic? { + public var appSupportVersion: Swift.UInt8 { get } - open var serialNumber: ZTCoreKit.ZTSerialNumberCharacteristic? { + public var softDeviceId: Swift.UInt8 { get } - open var firmwareRevision: ZTCoreKit.ZTFirmwareCharacteristic? { + public var dfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState? { get } - open var hardwareRevision: ZTCoreKit.ZTHardwareCharacteristic? { + public var description: Swift.String { get } - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit + public enum DfuState : Swift.UInt8 { + case none + case inProgress + case received + case readyForCopy + case activation + case done + case error + case validationError + case activationError + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTServices { - public enum Primary { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - case test - public var uid: Swift.String { - get - } - public var uuid: CoreBluetooth.CBUUID { - get - } - public static func == (a: ZTCoreKit.ZTServices.Primary.Characteristic, b: ZTCoreKit.ZTServices.Primary.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +extension ZTCoreKit.ZTCore { + final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) + final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +} +public struct ZTMessageTime : Swift.CustomStringConvertible { + public var timestamp: Swift.Int64 + public var side: ZTCoreKit.ZTModuleSide + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { + get + } +} +public enum ZTNotifyData { + public enum GroupID : Swift.UInt8 { + case common + case warm + case running + case cycling + case safety + case generic + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum PrimaryOld { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case commands - case notifyData - case indicateData - case batteryLevel - case pairedSoles - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.PrimaryOld.Characteristic, b: ZTCoreKit.ZTServices.PrimaryOld.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } + public enum CommonMessageId : Swift.UInt8 { + case MSG_GENERAL_STATES + case MSG_BATTERY_LEVEL + case MSG_MEMS + case MSG_FLASH + case MSG_TIME + case MSG_HARDWARE + case MSG_SOFTWARE + case MSG_ACTIVITY_INFO + case MSG_ACTIVITY_METADATA + case MSG_RAWDATA_HEADER + case MSG_RAWDATA_FRAME + case MSG_BTLOADER_INFO + case MSG_INACTIVITY_TIMEOUT + case MSG_CHUNK_SEND_STATUS + case MSG_CHUNK_DATA + case MSG_CHUNK_CONFIG + case MSG_DEBUG + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceInformation { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case manufacturerName - case modelNumber - case serialNumber - case firmwareRevision - case hardwareRevision - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceInformation.Characteristic, b: ZTCoreKit.ZTServices.DeviceInformation.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum WarmMessageId : Swift.UInt8 { + case MSG_HEATING_TEMP_1 + case MSG_HEATING_TEMP_2 + case MSG_HEATING_STEP_R_CNT + case MSG_HEATING_STEP_L_CNT + case MSG_HEATING_SETPOINT_R + case MSG_HEATING_SETPOINT_L + case MSG_GET_HEAT_TIMER + case MSG_HEATING_DEBUG_R + case MSG_HEATING_DEBUG_L + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } - public enum DeviceDFU { - public static let uid: Swift.String - public static let uuid: CoreBluetooth.CBUUID - public enum Characteristic { - case dfuControlPoint - case dfuPacket - case dfuButtonless - public var uid: Swift.String { - get - } - public static func == (a: ZTCoreKit.ZTServices.DeviceDFU.Characteristic, b: ZTCoreKit.ZTServices.DeviceDFU.Characteristic) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } +} +extension ZTCoreKit.ZTNotifyData { + public enum RunningMessageId : Swift.UInt8 { + case UNKNOWN + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get } } } -public enum ZTActivityType : Swift.UInt8, ZTCoreKit.ZTEnum { - case staticType - case dynamic +extension ZTCoreKit.ZTNotifyData { + public enum CyclingMessageId : Swift.UInt8 { + case MSG_CADENCE + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum SafetyMessageId : Swift.UInt8 { + case MSG_CALIBRATION_SAFETY + case MSG_ALGO_RT_EVENT + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +extension ZTCoreKit.ZTNotifyData { + public enum GenericMessageId : Swift.UInt8 { + case MSG_ALGO_RT_EVENT + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } +} +public enum ZTDeviceActualState : Swift.UInt8, Swift.Codable { + case activityNone + case activityStarting + case eraseMemory + case activityRunning + case activityPaused + case activityStopping + case activityPendData + case activitySendData + case unknown + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } +} +public enum ZTAlgoState : Swift.UInt8, ZTCoreKit.ZTEnum { + case undefined case walking case running - case cycling + case pedaling case jump case stairsUp case stairsDown - case staticOther - case kneel + case standing + case sitting + case kneeling case tiptoe case vibration - case trampling - case crawling - case dynamicOther case slip - case trip - case active - case inactive + case incident + case freewheel public init?(rawValue: Swift.UInt8) public typealias RawValue = Swift.UInt8 public var rawValue: Swift.UInt8 { get } } -open class ZTTransformOf : ZTCoreKit.ZTTransformType { - public typealias Object = ObjectType - public typealias JSON = JSONType - public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) - open func transformFromJSON(_ value: Any?) -> ObjectType? - open func transformToJSON(_ value: ObjectType?) -> JSONType? - @objc deinit +public protocol ZTDfuDelegate : AnyObject { + func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) + func dfuDelegate(didFinish: Swift.Bool) + func dfuDelegate(didFail error: ZTCoreKit.ZTError?) + func dfuDelegate(progress: Swift.Float?) + func dfuDelegate(leftDidFinish newVersion: Swift.String?) + func dfuDelegate(rightDidFinish newVersion: Swift.String?) } -@_hasMissingDesignatedInitializers @objc open class DFUFirmwareSize : ObjectiveC.NSObject { - @objc open var softdevice: Swift.UInt32 { +public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { + public init(bytes: [Swift.UInt8]) + public var isRight: Swift.Bool { get } - @objc open var bootloader: Swift.UInt32 { + public var isLeft: Swift.Bool { get } - @objc open var application: Swift.UInt32 { + public var selectedMode: ZTCoreKit.ZTActivityMode? { get } - @objc deinit -} -public enum ZTActivityMode : Swift.UInt8, Swift.Codable { - case safety - case walking - case running - case cycling - case mobility - public var name: Swift.String { + public var timeInterval: Swift.Int? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var description: Swift.String { get } + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } -public enum ZTAlgoPrecisionMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case defaultMode - case economicMode - case performanceMode - public var parameters: [Swift.UInt8] { - get - } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType +public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable +public class ZTUserShoe : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var code: Swift.String? + public var attributes: [Swift.String : Any]? + public var firmware: ZTCoreKit.ZTUserShoe.Firmware? + public var organizationId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + public class Firmware : ZTCoreKit.ZTMappable { + public var type: Swift.String? + public var arch: Swift.String? + public var version: Swift.String? + public var updatedAt: Foundation.Date? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -} -@_hasMissingDesignatedInitializers open class Adapter { - @objc deinit -} -@_hasMissingDesignatedInitializers open class Retrier { @objc deinit } -@_hasMissingDesignatedInitializers open class Interceptor { - @objc deinit -} -extension ZTCoreKit.ZTCore { - final public func initiateBackgroundDFU(isRestartRequired: Swift.Bool = false, isManualMode: Swift.Bool = false) - final public func initiateBackgroundDFU(path: Swift.String, isManualMode: Swift.Bool = false) - final public func isFirmwareUpdateRequired(firmwareRevision: ZTCoreKit.ZTFirmwareRevision, completion: @escaping ((Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void)) -} extension Foundation.Data { - public var hexString: Swift.String { - get - } -} -public protocol DataConvertible { - static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Self) -> Foundation.Data - public static func += (lhs: inout Foundation.Data, rhs: Self) -} -extension Swift.UInt8 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt16 : ZTCoreKit.DataConvertible { -} -extension Swift.UInt32 : ZTCoreKit.DataConvertible { -} -extension Swift.Int : ZTCoreKit.DataConvertible { -} -extension Swift.Float : ZTCoreKit.DataConvertible { -} -extension Swift.Double : ZTCoreKit.DataConvertible { -} -extension Swift.String : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Swift.String) -> Foundation.Data -} -extension Foundation.Data : ZTCoreKit.DataConvertible { - public static func + (lhs: Foundation.Data, rhs: Foundation.Data) -> Foundation.Data -} -public protocol ZTImmutableMappable : ZTCoreKit.ZTBaseMappable { - init(map: ZTCoreKit.ZTMap) throws -} -extension ZTCoreKit.ZTImmutableMappable { - public func mapping(map: ZTCoreKit.ZTMap) - public init(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) throws - public init(JSONObject: Any, context: (any ZTCoreKit.ZTMapContext)? = nil) throws -} -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> Transform.Object where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : Swift.RawRepresentable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> T? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : T]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [Swift.String : Transform.Object] where Transform : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]]? where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[T]] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, nested: Swift.Bool? = nil, delimiter: Swift.String = ".", using transform: Transform, file: Swift.StaticString = #file, function: Swift.StaticString = #function, line: Swift.UInt = #line) throws -> [[Transform.Object]] where Transform : ZTCoreKit.ZTTransformType -} -extension ZTCoreKit.ZTMapper where N : ZTCoreKit.ZTImmutableMappable { - final public func map(JSON: [Swift.String : Any]) throws -> N - final public func map(JSONString: Swift.String) throws -> N - final public func map(JSONObject: Any) throws -> N - final public func mapArray(JSONArray: [[Swift.String : Any]]) throws -> [N] - final public func mapArray(JSONString: Swift.String) throws -> [N] - final public func mapArray(JSONObject: Any) throws -> [N] - final public func mapDictionary(JSONString: Swift.String) throws -> [Swift.String : N] - final public func mapDictionary(JSONObject: Any?) throws -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) throws -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) throws -> [Swift.String : [N]] - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) throws -> [Swift.String : [N]] - final public func mapArrayOfArrays(JSONObject: Any?) throws -> [[N]] -} -@_inheritsConvenienceInitializers public class ZTPrimaryOldService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { + public func macAddress() -> Swift.String? + public var bytes: [Swift.UInt8] { get } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@objc public enum DFUUuidType : Swift.Int { - case legacyService = 0 - case legacyControlPoint = 1 - case legacyPacket = 2 - case legacyVersion = 3 - case secureService = 4 - case secureControl = 5 - case securePacket = 6 - case buttonlessService = 7 - case buttonlessCharacteristic = 8 - case buttonlessWithoutBondSharing = 9 - case buttonlessWithBondSharing = 10 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var hexDescription: Swift.String { get } + public init?(hex: Swift.String) + public func getUInt(offset: Swift.Int) -> Swift.UInt16 + public func getUInt32(offset: Swift.Int) -> Swift.UInt32 + public func getFloat(offset: Swift.Int) -> Swift.Float + public func getByte(at index: Swift.Int) -> Swift.Int8 + public func getUnsignedInteger(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedInt16(at index: Swift.Int) -> Swift.UInt16 + public func getUnsignedInt32(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt32 + public func getUnsignedLong(at index: Swift.Int, bigEndian: Swift.Bool = true) -> Swift.UInt64 + public mutating func append(byte data: Swift.Int8) + public mutating func append(unsignedInteger data: Swift.UInt32, bigEndian: Swift.Bool = true) + public mutating func append(unsignedLong data: Swift.UInt64, bigEndian: Swift.Bool = true) } -@objc public class DFUUuid : ObjectiveC.NSObject { - @objc final public let uuid: CoreBluetooth.CBUUID - @objc final public let type: ZTCoreKit.DFUUuidType - @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) - @objc deinit +extension Foundation.Data { + public func dataObject(at index: Foundation.Data.Index = 0) -> T + public func subdata(in range: R) -> Foundation.Data where R : Swift.RangeExpression, R.Bound == Swift.Int + public func object(at offset: Swift.Int) -> T } -@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { - @objc public var legacyDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUService: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { - get - } - @objc public var secureDFUPacket: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { - get - } - @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { +extension Swift.Numeric { + public var data: Foundation.Data { get } - @objc override dynamic public init() - @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) - @objc deinit } -public class ZTUser : ZTCoreKit.ZTMappable { - public var attributes: [Swift.String : Any] - public var id: Swift.String? - public var organizationId: Swift.String? - public var appId: Swift.String? - public var createdAt: Swift.String? - public var updatedAt: Swift.String? - public var userId: Swift.String? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -@_inheritsConvenienceInitializers open class ZTSerialNumberCharacteristic : ZTCoreKit.ZTTextCharacteristic { - public static var uuid: Swift.String +@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String open var data: Foundation.Data? { get } - override open func valueUpdated() required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() @objc deinit } -public class ZTAchievement : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var type: Swift.String? - public var activityId: Swift.String? - public var code: Swift.String? - public var appuserId: Swift.String? - public var data: [Swift.String : Any]? - public var duration: Swift.Int64? - public var calories: Swift.Double? - public var createdAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { - final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) - final public func updateFirmware(path: Swift.String) - @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) - @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) - @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) - @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) - final public func checkDfuState() -} -@_hasMissingDesignatedInitializers open class ZTWebSocket { - @objc deinit -} -open class ZTActivity : Swift.Codable { - public var id: Swift.String { +public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { + case jump + case run + case walk + public var parameters: [Swift.UInt8] { get - set } - public var activityIdentifier: Swift.String - public var appId: Swift.String? - public var activityType: Swift.String - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var startTimestamp: Swift.Int64? - public var endTimestamp: Swift.Int64? - public var tz: Swift.String? - public var status: Swift.String? - public var state: ZTCoreKit.ZTDeviceActualState { + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } - public var packetsIds: [Swift.UInt16] - public var cachedPackets: [ZTCoreKit.ZTSegmentData] - public var metaData: ZTCoreKit.ZTMessageActivityMetadata? - public var stopReason: ZTCoreKit.ZTActivityLastStopReason? - public var isRawDataMode: Swift.Bool - public var isAutomatic: Swift.Bool - public var forceStop: Swift.Bool - public var isInterrupted: Swift.Bool - public var firstChunkId: Swift.UInt16? - public var lastChunkId: Swift.UInt16? - public var chunkCount: Swift.UInt16? - public var anchorTimestamp: Swift.Int64? - public var customActivityStartTimestamp: Swift.Int64? - public var customActivityFirstChunkId: Swift.UInt16? - public var fwVersion: Swift.String? - public var shoesSerial: Swift.String? - public init() - open func save() - public func loadAll(firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public func lastSavedChunkId(startId: Swift.UInt16? = 0, lastId: Swift.UInt16? = 0) -> Swift.UInt16 - public func addToCache(_ segment: ZTCoreKit.ZTSegmentData) - public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) - public func saveCachedPackets() - @objc deinit - open func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTActivity { - public var duration: Swift.Double { +public enum ZTEnvironment { + case dev + case staging + case production + case zcdev + case zcstaging + case zcproduction + public static func == (a: ZTCoreKit.ZTEnvironment, b: ZTCoreKit.ZTEnvironment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } } -public protocol ZTDfuDelegate : AnyObject { - func dfuDelegate(firmwareDownloaded: Swift.Bool, version: Swift.String?) - func dfuDelegate(didFinish: Swift.Bool) - func dfuDelegate(didFail error: ZTCoreKit.ZTError?) - func dfuDelegate(progress: Swift.Float?) - func dfuDelegate(leftDidFinish newVersion: Swift.String?) - func dfuDelegate(rightDidFinish newVersion: Swift.String?) -} -@objc public class DFUServiceInitiator : ObjectiveC.NSObject { - @objc weak public var delegate: (any ZTCoreKit.DFUServiceDelegate)? - @objc weak public var progressDelegate: (any ZTCoreKit.DFUProgressDelegate)? - @objc weak public var logger: (any ZTCoreKit.LoggerDelegate)? - @objc public var peripheralSelector: any ZTCoreKit.DFUPeripheralSelectorDelegate - @objc public var packetReceiptNotificationParameter: Swift.UInt16 - @objc public var forceDfu: Swift.Bool - @objc public var forceScanningForNewAddressInLegacyDfu: Swift.Bool - @objc public var connectionTimeout: Swift.Double - @objc public var dataObjectPreparationDelay: Swift.Double - @objc public var alternativeAdvertisingNameEnabled: Swift.Bool - @objc public var alternativeAdvertisingName: Swift.String? - @objc public var enableUnsafeExperimentalButtonlessServiceInSecureDfu: Swift.Bool - @objc public var uuidHelper: ZTCoreKit.DFUUuidHelper - @objc public var disableResume: Swift.Bool - @available(*, deprecated, message: "Use init(queue: DispatchQueue?) instead.") - @objc public init(centralManager: CoreBluetooth.CBCentralManager, target: CoreBluetooth.CBPeripheral) - @objc public init(queue: Dispatch.DispatchQueue? = nil, delegateQueue: Dispatch.DispatchQueue = DispatchQueue.main, progressQueue: Dispatch.DispatchQueue = DispatchQueue.main, loggerQueue: Dispatch.DispatchQueue = DispatchQueue.main, centralManagerOptions: [Swift.String : Any]? = nil) - @objc public func with(firmware file: ZTCoreKit.DFUFirmware) -> ZTCoreKit.DFUServiceInitiator - @available(*, deprecated, message: "Use start(target: CBPeripheral) instead.") - @objc public func start() -> ZTCoreKit.DFUServiceController? - @objc public func start(target: CoreBluetooth.CBPeripheral) -> ZTCoreKit.DFUServiceController? - @objc public func start(targetWithIdentifier uuid: Foundation.UUID) -> ZTCoreKit.DFUServiceController? - @objc deinit -} -public protocol ZTPlistStorage { - static var plist: ZTCoreKit.ZTPlist { get } -} -public struct ZTBatteryLevel : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var right: Swift.UInt8 - public var left: Swift.UInt8 - public var min: Swift.UInt8 { - get - } - public var description: Swift.String { +public enum ZTModuleSide : Swift.String, Swift.Codable { + case left + case right + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { get } - public init() - public init(data: Foundation.Data) - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws } +public func decodeData(_ data: Foundation.Data, for type: T.Type) -> T? where T : Swift.Decodable, T : Swift.Encodable +public func encodeData(for type: T) -> Foundation.Data where T : Swift.Decodable, T : Swift.Encodable @objc public enum DFUError : Swift.Int { case remoteLegacyDFUSuccess = 1 case remoteLegacyDFUInvalidState = 2 @@ -2818,369 +2677,186 @@ extension ZTCoreKit.DFUState : Swift.CustomStringConvertible { @objc func dfuStateDidChange(to state: ZTCoreKit.DFUState) @objc func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) } -public struct ZTMessageSoftware : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var side: ZTCoreKit.ZTModuleSide { - get - } - public var baseMajor: Swift.UInt8 { - get - } - public var baseMinor: Swift.UInt8 { - get - } - public var baseBuild: Swift.UInt16 { - get - } - public var app: Swift.String { - get - } - public var appMajor: Swift.UInt8 { - get - } - public var appMinor: Swift.UInt8 { - get - } - public var version: Swift.String { - get - } - public var description: Swift.String { - get - } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -extension ZTCoreKit.ZTPlist { - public func encrypt(_ rawValue: Any?) -> Foundation.Data? - public func decrypt(_ data: Foundation.Data?) -> Foundation.Data? - public func decryptedDictionary(decryptedData rawValue: Any?) -> [Swift.String : Any]? - public func decryptedCollection(decryptedData rawValue: Any?) -> [Any]? - public func decryptedString(decryptedData rawValue: Any?) -> Swift.String? - public func decryptedBool(decryptedData rawValue: Any?) -> Swift.Bool? - public func decryptedInt(decryptedData rawValue: Any?) -> Swift.Int? - public func decryptedFloat(decryptedData rawValue: Any?) -> Swift.Float? - public func decryptedDouble(decryptedData rawValue: Any?) -> Swift.Double? - public func decryptedDate(decryptedData rawValue: Any?) -> Foundation.Date? -} -open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { - public typealias Object = UIKit.UIColor - public typealias JSON = Swift.String - public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? - open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? - @objc deinit -} -public class ZTActivityComment : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var timeZone: Swift.String? - public var timestamp: Foundation.Date? - public var text: Swift.String? - public var activityId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - public var mediaFiles: [ZTCoreKit.ZTMediaFile]? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTSegmentData : ZTCoreKit.ZTNotifyDataMessage { - public var rawData: Foundation.Data? - public var id: Swift.UInt16 - public var activityId: Swift.String? - public var activityType: ZTCoreKit.ZTActivityMode? - public var timestamp: Swift.Int64? - public var duration: Swift.Int? - public var status: ZTCoreKit.ZTSegmentData.Status - public var timestampType: ZTCoreKit.ZTSegmentData.TimestampType - public var bmTimestampType: ZTCoreKit.ZTSegmentData.BmTimestampType - public var packetType: ZTCoreKit.ZTSegmentData.PacketType - public var originalTimestamp: Swift.Int64 - public var packetsNumber: Swift.UInt8 - public var rawDescription: Swift.String { - get - } - public var fwVersion: Swift.String? - public var retryCount: Swift.Int - public enum CodingKeys : Swift.CodingKey { - case id - case activityId - case rawData - case timestamp - case duration - case status - case packetType - case timestampType - case originalTimestamp - case packetsNumber - case fwVersion - case retryCount - public static func == (a: ZTCoreKit.ZTSegmentData.CodingKeys, b: ZTCoreKit.ZTSegmentData.CodingKeys) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public init?(stringValue: Swift.String) - public init?(intValue: Swift.Int) - public var hashValue: Swift.Int { - get - } - public var intValue: Swift.Int? { - get - } - public var stringValue: Swift.String { +public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { + public enum Status : Swift.UInt8 { + case success + case errorOutOfRange + case errorSendFailed + case errorUnexpected + case errorNotFound + case unknown + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } - public init(data: Foundation.Data) - public init(data: Foundation.Data, activityId: Swift.String, fwversion: Swift.String? = nil) - required public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws - @objc deinit -} -extension ZTCoreKit.ZTSegmentData { - public static func lastSegmentId(activityId: Swift.String) -> Swift.Int - public static func segmentsCount(activityId: Swift.String) -> Swift.Int - public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, startId: Swift.UInt16) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllPackets(activityId: Swift.String, startId: Swift.UInt16? = nil, lastId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func loadAllIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.Int] - public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16] - public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.UInt16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTSegmentData? - public static func loadPacket(activityId: Swift.String?, id: Swift.UInt16) -> ZTCoreKit.ZTSegmentData? - public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> ZTCoreKit.ZTSegmentData? - public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTSegmentData - public static func loadAll(activityId: Swift.String, lastChunkId: Swift.UInt16?) -> [ZTCoreKit.ZTSegmentData] - public static func loadAll(activityId: Swift.String, firstChunkId: Swift.UInt16?, lastChunkId: Swift.UInt16? = nil) -> [ZTCoreKit.ZTSegmentData] - public static func clear(activityId: Swift.String?) - public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.UInt16? - public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMissedPackets(activityId: Swift.String, startId: Swift.UInt16, endId: Swift.UInt16? = nil) -> [Swift.UInt16]? - public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.UInt16) -> Swift.UInt16? - public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.UInt16, lastId: Swift.UInt16?) -> Swift.UInt16? - public static func updateSegmentsTimestamp(activityId: Swift.String, startId: Swift.UInt16, anchorTime: Swift.Int64?) -} -extension ZTCoreKit.ZTSegmentData { - public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool - public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.UInt16?, endIndex: Swift.UInt16?) -> Swift.Bool - public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.UInt16) - public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.UInt16) -> Swift.Bool - public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16? = nil) -> Swift.Bool - public static func isSaved(activityId: Swift.String?, chunkId: Swift.UInt16, startId: Swift.UInt16?, endId: Swift.UInt16?) -> Swift.Bool - public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.UInt16) -> Swift.Bool -} -extension ZTCoreKit.ZTSegmentData : Swift.Equatable { - public static func == (lhs: ZTCoreKit.ZTSegmentData, rhs: ZTCoreKit.ZTSegmentData) -> Swift.Bool -} -public enum ZTActivitySummaryStatus : Swift.String { - case started - case complete - case processing - case errored - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { + public let bytes: [Swift.UInt8] + public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? + public var chunkId: Swift.UInt16? + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } } -open class ZTActivitySummary : ZTCoreKit.ZTMappable { - public var id: Swift.String - public var activityType: Swift.String - public var activityIdentifier: Swift.String - public var start: Swift.String? - public var end: Swift.String? - public var duration: Swift.Int? - public var tz: Swift.String? - public var startDate: Foundation.Date? - public var endDate: Foundation.Date? - public var status: ZTCoreKit.ZTActivitySummaryStatus? - required public init?(map: ZTCoreKit.ZTMap) - open func mapping(map: ZTCoreKit.ZTMap) - @objc deinit -} -open class ZTDateFormatterTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.String - final public let dateFormatter: Foundation.DateFormatter - public init(dateFormatter: Foundation.DateFormatter) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.String? +open class ZTTransformOf : ZTCoreKit.ZTTransformType { + public typealias Object = ObjectType + public typealias JSON = JSONType + public init(fromJSON: @escaping (JSONType?) -> ObjectType?, toJSON: @escaping (ObjectType?) -> JSONType?) + open func transformFromJSON(_ value: Any?) -> ObjectType? + open func transformToJSON(_ value: ObjectType?) -> JSONType? @objc deinit } -@objc @_hasMissingDesignatedInitializers final public class ZTBleManager : ObjectiveC.NSObject { - final public var advertisingServices: [CoreBluetooth.CBUUID]? - final public var managerState: ZTCoreKit.ZTBleManagerState { +open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { + public typealias Object = T + public typealias JSON = T.RawValue + public init() + open func transformFromJSON(_ value: Any?) -> T? + open func transformToJSON(_ value: T?) -> T.RawValue? + @objc deinit +} +extension Foundation.UserDefaults { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Float { get set } - final public class var instance: ZTCoreKit.ZTBleManager { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.Double { get + set } - final public var centralManager: (any ZTCoreKit.ZTCBCentralManagerProtocol)! { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? { get + set } - final public var macAddress: Swift.String? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Swift.String? { get + set } - final public var deviceInfo: ZTCoreKit.ZTDeviceInfo? - final public var serviceTypes: [Swift.String : ZTCoreKit.ZTService.Type] { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Data? { get + set } - final public var product: ZTCoreKit.ZTProductType? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.Date? { get set } - final public var connectedDevice: ZTCoreKit.ZTDevice? { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> Foundation.URL? { get + set } - final public var foundPeripherals: [CoreBluetooth.CBPeripheral]! { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Foundation.URL]>) -> [Foundation.URL]? { get + set } - final public var scanning: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey<[Swift.String : Foundation.URL]>) -> [Swift.String : Foundation.URL]? { get + set } - final public var isDfuMode: Swift.Bool { + public subscript(key: ZTCoreKit.ZTDefaultsKey) -> T? where T : Swift.Decodable, T : Swift.Encodable { get + set } - final public let onBluetoothStateChange: ZTCoreKit.ZTSignal - final public let onDeviceStateChange: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onDeviceDiscovered: ZTCoreKit.ZTSignal - final public let onDeviceConnectionFailed: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTDevice?, (any Swift.Error)?)> - final public let onScanFinished: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onReconnectFailed: ZTCoreKit.ZTSignal<((any Swift.Error)?)> - final public let onGeneralStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageGeneralState)> - final public let onCommandAck: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTCommandResponse?)> - @objc deinit + public subscript(key: Swift.String) -> Any? { + get + set(value) + } + public func value(forKey key: Swift.String) -> T? + public func clear(_ key: Swift.String) + public func clear(_ key: ZTCoreKit.ZTDefaultsKey) + public func clearAll() } -extension ZTCoreKit.ZTBleManager : CoreBluetooth.CBCentralManagerDelegate { - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, willRestoreState dict: [Swift.String : Any]) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, connectionEventDidOccur event: CoreBluetooth.CBConnectionEvent, for peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral) - @objc final public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?) - @objc final public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager) +extension Foundation.DateFormatter { + convenience public init(withFormat format: Swift.String, locale: Swift.String) } -public enum ZTAlgoCommand : Swift.UInt8 { - case getStatus - case startNewChunk - case changeProductMode - case setPrecisionMode - case setMinimumNumberOfStrides - case enableStreamingOfValues - case setDisconnectionDelay - case setUserInfo - case setDailyTimestamp - case getPositionOfPods - case enableSpecificPacket - case holdRealtimeStreaming - case getSingleTimeMetrics - case calibrateGravity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { +open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { + public init() + @objc deinit +} +public enum ZTDFUState : Swift.Int { + case started + case startedLeft + case completedLeft + case startedRight + case completedRight + case completed + case error + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } } -public enum ZTAlgoMode : Swift.UInt8, ZTCoreKit.ZTEnum { - case monitoring - case gaming - public var parameters: [Swift.UInt8] { +public class ZTFirmwareRevision { + public var fwSystemVersion: Swift.String? { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var productType: ZTCoreKit.ZTProductCodeType? { get } -} -public struct ZTMessageActivity : Swift.CustomStringConvertible, Swift.Codable { - public init(bytes: [Swift.UInt8]) - public var isRight: Swift.Bool { + public var bmVersion: Swift.String? { get } - public var isLeft: Swift.Bool { + public var date: Foundation.Date? { get } - public var selectedMode: ZTCoreKit.ZTActivityMode? { + public var code: Swift.String { get } - public var timeInterval: Swift.Int? { + public var fwVersion: Swift.String { get } - public var description: Swift.String { + public var versions: ZTCoreKit.ZTFwBmVersion? { get } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws + public init(code: Swift.String) + @objc deinit } -public enum ZTSamplingMode : Swift.UInt8, Swift.Codable { - case jump - case run - case walk - public var parameters: [Swift.UInt8] { +extension ZTCoreKit.ZTFirmwareRevision : Swift.Equatable { + public static func == (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func < (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool + public static func >= (lhs: ZTCoreKit.ZTFirmwareRevision, rhs: ZTCoreKit.ZTFirmwareRevision) -> Swift.Bool +} +public struct ZTFwBmVersion { + public var fwSystemMajorVersion: Swift.Int + public var fwSystemMinorVersion: Swift.Int + public var fwSystemBuildVersion: Swift.Int + public var bmMajorVersion: Swift.Int + public var bmMinorVersion: Swift.Int +} +extension ZTCoreKit.ZTFirmwareRevision { + public var fwSystemMajorVersion: Swift.Int { get } - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { + public var fwSystemMinorVersion: Swift.Int { get } -} -public enum ZTDFUState : Swift.Int { - case started - case startedLeft - case completedLeft - case startedRight - case completedRight - case completed - case error - public var description: Swift.String { + public var fwSystemBuildVersion: Swift.Int { get } - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { + public var bmMajorVersion: Swift.Int { + get + } + public var bmMinorVersion: Swift.Int { get } } -extension ZTCoreKit.ZTCore { - final public func isPendingEmbeddedActivity(completion: @escaping (Swift.Bool, ZTCoreKit.ZTError?) -> Swift.Void) - final public func pushPendingEmbeddedActivities(completion: @escaping (ZTCoreKit.ZTError?) -> Swift.Void) +@_hasMissingDesignatedInitializers public class ZTCoreDataStack { + public static let shared: ZTCoreKit.ZTCoreDataStack + public var context: CoreData.NSManagedObjectContext { + get + set + } + public func oneTimeBackgroundContext() -> CoreData.NSManagedObjectContext + public func saveOneTimeBackgroundContext(_ oneTimeBackgroundContext: CoreData.NSManagedObjectContext) throws + public func saveContext() throws + @objc deinit +} +public protocol ZTNotifyDataMessage : Swift.Decodable, Swift.Encodable { + var rawData: Foundation.Data? { get set } } -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Transform.Object?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Swift.String : [Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: [Transform.Object]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]], right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func ->> (left: [[Transform.Object]]?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType -public func <<- (left: inout Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func <<- (left: inout Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable -public func ->> (left: Swift.Set?, right: (ZTCoreKit.ZTMap, Transform)) where Transform : ZTCoreKit.ZTTransformType, Transform.Object : Swift.Hashable, Transform.Object : ZTCoreKit.ZTBaseMappable public class ZTMediaFile : ZTCoreKit.ZTMappable { public var id: Swift.String? public var name: Swift.String? @@ -3195,537 +2871,583 @@ public class ZTMediaFile : ZTCoreKit.ZTMappable { public func mapping(map: ZTCoreKit.ZTMap) @objc deinit } -public protocol ZTMapContext { -} -final public class ZTMap { - final public let mappingType: ZTCoreKit.ZTMappingType - final public var JSON: [Swift.String : Any] { +@_inheritsConvenienceInitializers public class ZTPairedSolesCharacteristic : ZTCoreKit.ZTCharacteristic { + public static let uuid: Swift.String + open var data: Foundation.Data? { get } - final public var isKeyPresent: Swift.Bool { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + override open func valueUpdated() + @objc deinit +} +open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { + public typealias Object = T + public typealias JSON = Any + public init() + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? + open func transformToJSON(_ value: T?) -> Any? + @objc deinit +} +public protocol ZTTransformType { + associatedtype Object + associatedtype JSON + func transformFromJSON(_ value: Any?) -> Self.Object? + func transformToJSON(_ value: Self.Object?) -> Self.JSON? +} +open class ZTNSDecimalNumberTransform : ZTCoreKit.ZTTransformType { + public typealias Object = Foundation.NSDecimalNumber + public typealias JSON = Swift.String + public init() + open func transformFromJSON(_ value: Any?) -> Foundation.NSDecimalNumber? + open func transformToJSON(_ value: Foundation.NSDecimalNumber?) -> Swift.String? + @objc deinit +} +@objc public enum DFUUuidType : Swift.Int { + case legacyService = 0 + case legacyControlPoint = 1 + case legacyPacket = 2 + case legacyVersion = 3 + case secureService = 4 + case secureControl = 5 + case securePacket = 6 + case buttonlessService = 7 + case buttonlessCharacteristic = 8 + case buttonlessWithoutBondSharing = 9 + case buttonlessWithBondSharing = 10 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { get } - final public var currentValue: Any? { +} +@objc public class DFUUuid : ObjectiveC.NSObject { + @objc final public let uuid: CoreBluetooth.CBUUID + @objc final public let type: ZTCoreKit.DFUUuidType + @objc public init(withUUID: CoreBluetooth.CBUUID, forType: ZTCoreKit.DFUUuidType) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class DFUUuidHelper : ObjectiveC.NSObject { + @objc public var legacyDFUService: CoreBluetooth.CBUUID { get } - final public var currentKey: Swift.String? { + @objc public var legacyDFUControlPoint: CoreBluetooth.CBUUID { get } - final public var nestedKeyDelimiter: Swift.String { + @objc public var legacyDFUPacket: CoreBluetooth.CBUUID { get } - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - final public let toObject: Swift.Bool - public init(mappingType: ZTCoreKit.ZTMappingType, JSON: [Swift.String : Any], toObject: Swift.Bool = false, context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public subscript(key: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var legacyDFUVersion: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var secureDFUControlPoint: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, delimiter delimiter: Swift.String) -> ZTCoreKit.ZTMap { + @objc public var secureDFUPacket: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalService: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessExperimentalCharacteristic: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithoutBonds: CoreBluetooth.CBUUID { get } - final public subscript(key: Swift.String, nested nested: Swift.Bool?, delimiter delimiter: Swift.String, ignoreNil ignoreNil: Swift.Bool) -> ZTCoreKit.ZTMap { + @objc public var buttonlessWithBonds: CoreBluetooth.CBUUID { get } - final public func value() -> T? + @objc override dynamic public init() + @objc convenience public init(customUuids uuids: [ZTCoreKit.DFUUuid]) @objc deinit } -extension ZTCoreKit.ZTMap { - final public func value(_ key: Swift.String, default: T.Object, using transform: T) throws -> T.Object where T : ZTCoreKit.ZTTransformType - final public func value(_ key: Swift.String, default: T) throws -> T - final public func value(_ key: Swift.String, default: [T]) -> [T] where T : ZTCoreKit.ZTBaseMappable - final public func value(_ key: Swift.String, default: T) throws -> T where T : ZTCoreKit.ZTBaseMappable +@_hasMissingDesignatedInitializers public class ZTLogger { + public static let instance: ZTCoreKit.ZTLogger + @objc deinit } -public struct ZTEntry : Swift.Equatable { - public enum EntryType : Swift.Int { - case file - case directory - case symlink - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } - } - public func path(using encoding: Swift.String.Encoding) -> Swift.String - public var path: Swift.String { - get - } - public var fileAttributes: [Foundation.FileAttributeKey : Any] { - get - } - public var checksum: ZTCoreKit.CRC32 { - get - } - public var type: ZTCoreKit.ZTEntry.EntryType { - get - } - public var compressedSize: Swift.Int { - get - } - public var uncompressedSize: Swift.Int { - get - } - public static func == (lhs: ZTCoreKit.ZTEntry, rhs: ZTCoreKit.ZTEntry) -> Swift.Bool +extension ZTCoreKit.ZTLogger { + public func ztDebugPrint(_ message: Swift.String) + public func debug(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func info(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func error(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) + public func fatal(_ message: Swift.StaticString, _ args: any Swift.CVarArg...) } -@_hasMissingDesignatedInitializers public class ZTMediaFileTemplate : ZTCoreKit.ZTMappable { - public var name: Swift.String - public var description: Swift.String? - public var mimeType: Swift.String? - public var key: Swift.String? - public var url: Swift.String? - public var data: Foundation.Data? - convenience public init(data: Foundation.Data? = nil, fileName: Swift.String? = nil, mimeType: Swift.String? = nil, description: Swift.String? = nil) - required convenience public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit +public struct ZTLoggerLine : Swift.Codable { + public static let notification: Foundation.Notification.Name + public static let ble: Foundation.Notification.Name + public var date: Foundation.Date + public let message: Swift.String + public let level: Swift.String + public let category: Swift.String + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +@objc public protocol DFUPeripheralSelectorDelegate { + @objc func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String?) -> Swift.Bool + @objc func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? } -@propertyWrapper public struct ZTPlisted { - public let key: Swift.String - public let plist: ZTCoreKit.ZTPlist - public let defaultValue: Value - public init(key: Swift.String, plist: ZTCoreKit.ZTPlist, defaultValue: Value) - public var wrappedValue: Value { +public enum ZTAlgoAcknowledgmentStatus : Swift.UInt8, ZTCoreKit.ZTEnum { + case success + case busy + case invalidParam + case invalidState + case fwResForbidden + case notSupported + case unknownCommand + case commandInProgress + case noPeerResponse + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get - set } } -public struct ZTMapError : Swift.Error { - public var key: Swift.String? - public var currentValue: Any? - public var reason: Swift.String? - public var file: Swift.StaticString? - public var function: Swift.StaticString? - public var line: Swift.UInt? - public init(key: Swift.String?, currentValue: Any?, reason: Swift.String?, file: Swift.StaticString? = nil, function: Swift.StaticString? = nil, line: Swift.UInt? = nil) -} -extension ZTCoreKit.ZTMapError : Swift.CustomStringConvertible { - public var description: Swift.String { +public enum ZTActivityMode : Swift.UInt8, Swift.Codable { + case safety + case walking + case running + case cycling + case mobility + public var name: Swift.String { + get + } + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } } -public enum ZTPeriod : Swift.String { - case day - case week - case month - case year +public enum ZTActivitySummaryStatus : Swift.String { + case started + case complete + case processing + case errored public init?(rawValue: Swift.String) public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -extension ZTCoreKit.ZTSegmentData { - public func save() - public func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool - public static func forceSegmentsUpload(activityId: Swift.String) - public func updateSegment(_ activityId: Swift.String?, segment: ZTCoreKit.ZTSegmentData) -} -extension Foundation.FileManager { - public func zipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, shouldKeepParent: Swift.Bool = true, compressionMethod: ZTCoreKit.ZTCompressionMethod = .none, progress: Foundation.Progress? = nil) throws - public func unzipItem(at sourceURL: Foundation.URL, to destinationURL: Foundation.URL, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, preferredEncoding: Swift.String.Encoding? = nil) throws +open class ZTActivitySummary : ZTCoreKit.ZTMappable { + public var id: Swift.String + public var activityType: Swift.String + public var activityIdentifier: Swift.String + public var start: Swift.String? + public var end: Swift.String? + public var duration: Swift.Int? + public var tz: Swift.String? + public var startDate: Foundation.Date? + public var endDate: Foundation.Date? + public var status: ZTCoreKit.ZTActivitySummaryStatus? + required public init?(map: ZTCoreKit.ZTMap) + open func mapping(map: ZTCoreKit.ZTMap) + @objc deinit } -extension Foundation.URL { - public func isContained(in parentDirectoryURL: Foundation.URL) -> Swift.Bool +public protocol ZTCBPeripheralManagerProtocol : AnyObject { + var delegate: (any CoreBluetooth.CBPeripheralManagerDelegate)? { get set } + var state: CoreBluetooth.CBManagerState { get } + var isAdvertising: Swift.Bool { get } + func startAdvertising(_ advertisementData: [Swift.String : Any]?) + func stopAdvertising() + func setDesiredConnectionLatency(_ latency: CoreBluetooth.CBPeripheralManagerConnectionLatency, for central: CoreBluetooth.CBCentral) + func add(_ service: CoreBluetooth.CBMutableService) + func remove(_ service: CoreBluetooth.CBMutableService) + func removeAllServices() + func respond(to request: CoreBluetooth.CBATTRequest, withResult result: CoreBluetooth.CBATTError.Code) + func updateValue(_ value: Foundation.Data, for characteristic: CoreBluetooth.CBMutableCharacteristic, onSubscribedCentrals centrals: [CoreBluetooth.CBCentral]?) -> Swift.Bool +} +extension CoreBluetooth.CBPeripheralManager : ZTCoreKit.ZTCBPeripheralManagerProtocol { } -public struct ZTMessageGeneralState : Swift.CustomStringConvertible, Swift.Codable { - public var byte0: Swift.UInt8? { - get - } - public var byte1: Swift.UInt8? { +@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { + public static var uuid: Swift.String { get } - public var byte2: Swift.UInt8? { + public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] + required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) + @objc deinit +} +public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { + public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason + public var chunkCount: Swift.Int16 + public var firstChunkId: Swift.Int16 + public var lastChunkId: Swift.Int16 { get } - public var byte3: Swift.UInt8? { + public var startTime: Swift.UInt32 + public var endTime: Swift.UInt32 + public init(bytes: [Swift.UInt8]) + public var description: Swift.String { get } - public init(bytes: [Swift.UInt8]) public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } -extension ZTCoreKit.ZTMessageGeneralState { - public var activityStartedRight: Swift.Bool { +open class ZTHexColorTransform : ZTCoreKit.ZTTransformType { + public typealias Object = UIKit.UIColor + public typealias JSON = Swift.String + public init(prefixToJSON: Swift.Bool = false, alphaToJSON: Swift.Bool = false) + open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTHexColorTransform.Object? + open func transformToJSON(_ value: ZTCoreKit.ZTHexColorTransform.Object?) -> ZTCoreKit.ZTHexColorTransform.JSON? + @objc deinit +} +public class ZTReachability { + public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter + public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { get + set } - public var activityStartedLeft: Swift.Bool { - get + public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void + public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? + public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? + public var managerStarted: Swift.Bool + public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { + case all, wifi, cellular, wiredEthernet, loopback, other, none + public var description: Swift.String { + get + } + public func getInterfaceType() -> Network.NWInterface.InterfaceType + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public var hashValue: Swift.Int { + get + } + } + public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { + case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline + public var description: Swift.String { + get + } + public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool + } + public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) + public func startManager() + public func stopManager() + @objc deinit +} +public let ztActivityKey: Swift.String +@_inheritsConvenienceInitializers @objc(ZTActivity) open class ZTActivity : CoreData.NSManagedObject, ZTCoreKit.ZTActivityCachable { + @objc @NSManaged dynamic public var id: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityIdentifier: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var appId: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activityType: Swift.String { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endDate: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var startTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var endTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var tz: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var status: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packets: Foundation.NSMutableOrderedSet? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var metaDataRawValue: Foundation.Data? { + @objc get + @objc set } - public var pairIsConnected: Swift.Bool { + public var metaData: ZTCoreKit.ZTMessageActivityMetadata? { get } - public var memsHasError: Swift.Bool { - get + public func metaData(_ newValue: ZTCoreKit.ZTMessageActivityMetadata?) + @objc @NSManaged dynamic public var stopReasonRawValue: Foundation.Data? { + @objc get + @objc set } - public var firmwareDifferent: Swift.Bool { + public var stopReason: ZTCoreKit.ZTActivityLastStopReason? { get } - public var actualState: ZTCoreKit.ZTDeviceActualState { - get + public func stopReason(_ newValue: ZTCoreKit.ZTActivityLastStopReason?) + @objc @NSManaged dynamic public var isRawDataMode: Swift.Bool { + @objc get + @objc set } - public var previousState: ZTCoreKit.ZTDeviceActualState { - get + @objc @NSManaged dynamic public var isAutomatic: Swift.Bool { + @objc get + @objc set } - public var description: Swift.String { - get + @objc @NSManaged dynamic public var forceStop: Swift.Bool { + @objc get + @objc set } -} -@_inheritsConvenienceInitializers @objc open class DFUPeripheralSelector : ObjectiveC.NSObject, ZTCoreKit.DFUPeripheralSelectorDelegate { - @objc open func select(_ peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Swift.AnyObject], RSSI: Foundation.NSNumber, hint name: Swift.String? = nil) -> Swift.Bool - @objc open func filterBy(hint dfuServiceUUID: CoreBluetooth.CBUUID) -> [CoreBluetooth.CBUUID]? - @objc override dynamic public init() - @objc deinit -} -public struct ZTMessageActivityMetadata : Swift.Codable, Swift.CustomStringConvertible { - public var lastStopReason: ZTCoreKit.ZTActivityLastStopReason - public var chunkCount: Swift.UInt16 - public var firstChunkId: Swift.UInt16 - public var lastChunkId: Swift.UInt16 { - get + @objc @NSManaged dynamic public var isInterrupted: Swift.Bool { + @objc get + @objc set } - public var startTime: Swift.UInt32 - public var endTime: Swift.UInt32 - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { - get + @objc @NSManaged dynamic public var firstChunkId: Swift.Int16 { + @objc get + @objc set } - public func encode(to encoder: any Swift.Encoder) throws - public init(from decoder: any Swift.Decoder) throws -} -open class ZTCodableTransform : ZTCoreKit.ZTTransformType where T : Swift.Decodable, T : Swift.Encodable { - public typealias Object = T - public typealias JSON = Any - public init() - open func transformFromJSON(_ value: Any?) -> ZTCoreKit.ZTCodableTransform.Object? - open func transformToJSON(_ value: T?) -> Any? - @objc deinit -} -open class ZTURLTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.URL - public typealias JSON = Swift.String - public init(shouldEncodeURLString: Swift.Bool = false, allowedCharacterSet: Foundation.CharacterSet = .urlQueryAllowed) - open func transformFromJSON(_ value: Any?) -> Foundation.URL? - open func transformToJSON(_ value: Foundation.URL?) -> Swift.String? - @objc deinit -} -public enum ZTBleManagerState : Swift.CustomStringConvertible { - case off - case on - case idle - case scanning - case unauthorized - case resetting - case unknown - case unsupported - public var description: Swift.String { - get + @objc @NSManaged dynamic public var lastChunkId: Swift.Int16 { + @objc get + @objc set } - public static func == (a: ZTCoreKit.ZTBleManagerState, b: ZTCoreKit.ZTBleManagerState) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var chunkCount: Swift.Int16 { + @objc get + @objc set } -} -public class ZTUserShoe : ZTCoreKit.ZTMappable { - public var id: Swift.String? - public var code: Swift.String? - public var attributes: [Swift.String : Any]? - public var firmware: ZTCoreKit.ZTUserShoe.Firmware? - public var organizationId: Swift.String? - public var createdAt: Foundation.Date? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - public class Firmware : ZTCoreKit.ZTMappable { - public var type: Swift.String? - public var arch: Swift.String? - public var version: Swift.String? - public var updatedAt: Foundation.Date? - required public init?(map: ZTCoreKit.ZTMap) - public func mapping(map: ZTCoreKit.ZTMap) - @objc deinit + @objc @NSManaged dynamic public var anchorTimestamp: Swift.Int64 { + @objc get + @objc set } - @objc deinit -} -public enum ZTLoggerComponent : Swift.String { - case api - case app - case sdk - case firmware - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityStartTimestamp: Swift.Int64 { + @objc get + @objc set } -} -public enum ZTLoggerSeverity : Swift.String { - case debug - case error - case info - case warn - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get + @objc @NSManaged dynamic public var customActivityFirstChunkId: Swift.Int16 { + @objc get + @objc set } -} -public enum ZTMappingType { - case fromJSON - case toJSON - public static func == (a: ZTCoreKit.ZTMappingType, b: ZTCoreKit.ZTMappingType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set } -} -final public class ZTMapper where N : ZTCoreKit.ZTBaseMappable { - final public var context: (any ZTCoreKit.ZTMapContext)? - final public var shouldIncludeNilValues: Swift.Bool - public init(context: (any ZTCoreKit.ZTMapContext)? = nil, shouldIncludeNilValues: Swift.Bool = false) - final public func map(JSONObject: Any?, toObject object: N) -> N - final public func map(JSONString: Swift.String, toObject object: N) -> N - final public func map(JSON: [Swift.String : Any], toObject object: N) -> N - final public func map(JSONString: Swift.String) -> N? - final public func map(JSONObject: Any?) -> N? - final public func map(JSON: [Swift.String : Any]) -> N? - final public func mapArray(JSONString: Swift.String) -> [N]? - final public func mapArray(JSONObject: Any?) -> [N]? - final public func mapArray(JSONArray: [[Swift.String : Any]]) -> [N] - final public func mapDictionary(JSONString: Swift.String) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?) -> [Swift.String : N]? - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]]) -> [Swift.String : N]? - final public func mapDictionary(JSONObject: Any?, toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionary(JSON: [Swift.String : [Swift.String : Any]], toDictionary dictionary: [Swift.String : N]) -> [Swift.String : N] - final public func mapDictionaryOfArrays(JSONObject: Any?) -> [Swift.String : [N]]? - final public func mapDictionaryOfArrays(JSON: [Swift.String : [[Swift.String : Any]]]) -> [Swift.String : [N]]? - final public func mapArrayOfArrays(JSONObject: Any?) -> [[N]]? - public static func parseJSONStringIntoDictionary(JSONString: Swift.String) -> [Swift.String : Any]? - public static func parseJSONString(JSONString: Swift.String) -> Any? - @objc deinit -} -extension ZTCoreKit.ZTMapper { - final public func map(JSONfile: Swift.String) -> N? - final public func mapArray(JSONfile: Swift.String) -> [N]? -} -extension ZTCoreKit.ZTMapper { - final public func toJSON(_ object: N) -> [Swift.String : Any] - final public func toJSONArray(_ array: [N]) -> [[Swift.String : Any]] - final public func toJSONDictionary(_ dictionary: [Swift.String : N]) -> [Swift.String : [Swift.String : Any]] - final public func toJSONDictionaryOfArrays(_ dictionary: [Swift.String : [N]]) -> [Swift.String : [[Swift.String : Any]]] - final public func toJSONString(_ object: N, prettyPrint: Swift.Bool = false) -> Swift.String? - final public func toJSONString(_ array: [N], prettyPrint: Swift.Bool = false) -> Swift.String? - public static func toJSONString(_ JSONObject: Any, prettyPrint: Swift.Bool) -> Swift.String? - public static func toJSONData(_ JSONObject: Any, options: Foundation.JSONSerialization.WritingOptions) -> Foundation.Data? -} -extension ZTCoreKit.ZTMapper where N : Swift.Hashable { - final public func mapSet(JSONString: Swift.String) -> Swift.Set? - final public func mapSet(JSONObject: Any?) -> Swift.Set? - final public func mapSet(JSONArray: [[Swift.String : Any]]) -> Swift.Set - final public func toJSONSet(_ set: Swift.Set) -> [[Swift.String : Any]] - final public func toJSONString(_ set: Swift.Set, prettyPrint: Swift.Bool = false) -> Swift.String? -} -public struct ZTMessageChunkSendStatus : Swift.CustomStringConvertible { - public enum Status : Swift.UInt8 { - case success - case errorOutOfRange - case errorSendFailed - case errorUnexpected - case errorNotFound - case unknown - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } + @objc @NSManaged dynamic public var shoesSerial: Swift.String? { + @objc get + @objc set } - public let bytes: [Swift.UInt8] - public var status: ZTCoreKit.ZTMessageChunkSendStatus.Status? - public var chunkId: Swift.UInt16? - public init(bytes: [Swift.UInt8]) - public var description: Swift.String { + public var duration: Swift.Double { get } + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + public func loadAll(firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + public func lastSavedChunkId(startId: Swift.Int16? = 0, lastId: Swift.Int16? = 0) -> Swift.Int16 + public func addToCache(_ segment: ZTCoreKit.ZTPacket) + public func uploadCache(completion: @escaping ZTCoreKit.ZTCompletion) + public func saveCachedPackets() + #if compiler(>=5.3) && $AsyncAwait + open func upload(_ packets: [Packet]) async throws where Packet : ZTCoreKit.ZTPacketCachable + #endif + @objc deinit } -@_inheritsConvenienceInitializers public class ZTButtonlessDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String +extension ZTCoreKit.ZTActivity { + @nonobjc public class func fetchRequest() -> CoreData.NSFetchRequest + public func getPacketIds() -> [Swift.Int16] + @discardableResult + public func setPackets(ids: [Swift.Int16]) -> [Swift.Int16] + @discardableResult + public func addPacket(id: Swift.Int16) -> [Swift.Int16] + public func getActulState() -> ZTCoreKit.ZTDeviceActualState + public func update(actualState: ZTCoreKit.ZTDeviceActualState) +} +@_inheritsConvenienceInitializers open class ZTManufacturerNameCharacteristic : ZTCoreKit.ZTTextCharacteristic { + public static var uuid: Swift.String open var data: Foundation.Data? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) override open func valueUpdated() + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) @objc deinit } -public enum ZTActivityLastStopReason : Swift.UInt8, Swift.Codable { - case undefined - case userRequest - case memoryFull - case inactivity - public init?(rawValue: Swift.UInt8) - public typealias RawValue = Swift.UInt8 - public var rawValue: Swift.UInt8 { - get - } -} -extension ZTCoreKit.ZTDevice : CoreBluetooth.CBPeripheralDelegate { - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didReadRSSI RSSI: Foundation.NSNumber, error: (any Swift.Error)?) - @objc dynamic public func peripheralDidUpdateName(_ peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didModifyServices invalidatedServices: [CoreBluetooth.CBService]) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverIncludedServicesFor service: CoreBluetooth.CBService, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverDescriptorsFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor descriptor: CoreBluetooth.CBDescriptor, error: (any Swift.Error)?) - @objc dynamic public func peripheralIsReady(toSendWriteWithoutResponse peripheral: CoreBluetooth.CBPeripheral) - @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didOpen channel: CoreBluetooth.CBL2CAPChannel?, error: (any Swift.Error)?) - public func sendCommand(_ command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: ((Swift.Bool) -> Swift.Void)? = nil) - public func sendCommandWithAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) - public func sendCommandWithRightAck(command: ZTCoreKit.ZTCommand, parameters: [Swift.UInt8]? = nil, completion: @escaping ZTCoreKit.ZTBaseResult) -} -extension Foundation.DateFormatter { - convenience public init(withFormat format: Swift.String, locale: Swift.String) +extension ZTCoreKit.ZTCore { + final public func updateFirmware(packageType: ZTCoreKit.ZTDfuPackageType? = nil, isButtonless: Swift.Bool = true) + final public func updateFirmware(path: Swift.String) } -open class ZTISO8601DateTransform : ZTCoreKit.ZTDateFormatterTransform { - public init() - @objc deinit +extension ZTCoreKit.ZTCore : ZTCoreKit.DFUServiceDelegate, ZTCoreKit.DFUProgressDelegate, ZTCoreKit.LoggerDelegate { + @objc final public func dfuStateDidChange(to state: ZTCoreKit.DFUState) + final public func dfuFailed(error: ZTCoreKit.ZTError) + @objc final public func dfuError(_ error: ZTCoreKit.DFUError, didOccurWithMessage message: Swift.String) + @objc final public func dfuProgressDidChange(for part: Swift.Int, outOf totalParts: Swift.Int, to progress: Swift.Int, currentSpeedBytesPerSecond: Swift.Double, avgSpeedBytesPerSecond: Swift.Double) + @objc final public func logWith(_ level: ZTCoreKit.LogLevel, message: Swift.String) + final public func checkDfuState() } -@_inheritsConvenienceInitializers public class ZTPrimaryService : ZTCoreKit.ZTService, ZTCoreKit.ZTServiceProtocol { - public static var uuid: Swift.String { +@_inheritsConvenienceInitializers @objc(ZTPacket) open class ZTPacket : CoreData.NSManagedObject, ZTCoreKit.ZTNotifyDataMessage, ZTCoreKit.ZTPacketCachable { + @available(*, deprecated, message: "This property will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static let key: Swift.String + @objc @NSManaged dynamic public var id: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var createdAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var fulfilledAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var scheduledDeleted: Foundation.Date? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var sentAt: Foundation.Date { + @objc get + @objc set + } + @objc @NSManaged dynamic public var rawData: Foundation.Data? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var activity: ZTCoreKit.ZTActivity? { + @objc get + @objc set + } + public var activityType: ZTCoreKit.ZTActivityMode? + @objc @NSManaged dynamic public var timestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var duration: Swift.Int16 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var statusRawValue: Swift.Int16 { + @objc get + @objc set + } + public var status: ZTCoreKit.ZTPacket.Status { get + set } - public static var characteristicTypes: [Swift.String : ZTCoreKit.ZTCharacteristic.Type] - required public init(device: ZTCoreKit.ZTDevice, service: CoreBluetooth.CBService) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let object: T? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> T - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> T - @objc deinit -} -@_hasMissingDesignatedInitializers final public class ZTMappableArrayResponseSerializer where T : ZTCoreKit.ZTBaseMappable { - final public let emptyResponseCodes: Swift.Set - final public let keyPath: Swift.String? - final public let context: (any ZTCoreKit.ZTMapContext)? - final public let serializeCallback: (Foundation.URLRequest?, Foundation.HTTPURLResponse?, Foundation.Data?, (any Swift.Error)?) throws -> [T] - @available(*, deprecated, message: "This method will be deleted in a future version of the SDK.") - final public func serialize(request: Foundation.URLRequest?, response: Foundation.HTTPURLResponse?, data: Foundation.Data?, error: (any Swift.Error)?) throws -> [T] - @objc deinit -} -open class ZTEnumTransform : ZTCoreKit.ZTTransformType where T : Swift.RawRepresentable { - public typealias Object = T - public typealias JSON = T.RawValue - public init() - open func transformFromJSON(_ value: Any?) -> T? - open func transformToJSON(_ value: T?) -> T.RawValue? - @objc deinit -} -public class ZTReachability { - public var currentAdapterMode: ZTCoreKit.ZTReachability.Adapter - public var currentConnectionStatus: ZTCoreKit.ZTReachability.Connection { + public var timestampType: ZTCoreKit.ZTPacket.TimestampType { get set } - public typealias ZTConnectionReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public typealias ZTConnectionUnReachable = (ZTCoreKit.ZTReachability) -> Swift.Void - public var onConnectionReachable: ZTCoreKit.ZTReachability.ZTConnectionReachable? - public var onConnectionUnReachable: ZTCoreKit.ZTReachability.ZTConnectionUnReachable? - public var managerStarted: Swift.Bool - public enum Adapter : Swift.CustomStringConvertible, Swift.Equatable { - case all, wifi, cellular, wiredEthernet, loopback, other, none - public var description: Swift.String { - get - } - public func getInterfaceType() -> Network.NWInterface.InterfaceType + public var bmTimestampType: ZTCoreKit.ZTPacket.BmTimestampType { + get + set + } + public var packetType: ZTCoreKit.ZTPacket.PacketType { + get + set + } + @objc @NSManaged dynamic public var originalTimestamp: Swift.Int64 { + @objc get + @objc set + } + @objc @NSManaged dynamic public var packetsNumber: Swift.Int16 { + @objc get + @objc set + } + public var rawDescription: Swift.String { + get + } + @objc @NSManaged dynamic public var fwVersion: Swift.String? { + @objc get + @objc set + } + @objc @NSManaged dynamic public var retryCount: Swift.Int16 { + @objc get + @objc set + } + public enum CodingKeys : Swift.CodingKey { + case id + case activityId + case rawData + case timestamp + case duration + case status + case packetType + case timestampType + case originalTimestamp + case packetsNumber + case fwVersion + case retryCount + public static func == (a: ZTCoreKit.ZTPacket.CodingKeys, b: ZTCoreKit.ZTPacket.CodingKeys) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) - public static func == (a: ZTCoreKit.ZTReachability.Adapter, b: ZTCoreKit.ZTReachability.Adapter) -> Swift.Bool + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) public var hashValue: Swift.Int { get } - } - public enum Connection : Swift.CustomStringConvertible, Swift.Equatable { - case online(adapter: ZTCoreKit.ZTReachability.Adapter), offline - public var description: Swift.String { + public var intValue: Swift.Int? { get } - public static func == (lhs: ZTCoreKit.ZTReachability.Connection, rhs: ZTCoreKit.ZTReachability.Connection) -> Swift.Bool - } - public init(adapter: ZTCoreKit.ZTReachability.Adapter = .all) - public func startManager() - public func stopManager() - @objc deinit -} -open class ZTDateDefaultTransform : ZTCoreKit.ZTTransformType { - public typealias Object = Foundation.Date - public typealias JSON = Swift.Double - public enum Unit : Foundation.TimeInterval { - case seconds - case milliseconds - public init?(rawValue: Foundation.TimeInterval) - public typealias RawValue = Foundation.TimeInterval - public var rawValue: Foundation.TimeInterval { + public var stringValue: Swift.String { get } } - public init(unit: ZTCoreKit.ZTDateDefaultTransform.Unit = .seconds) - open func transformFromJSON(_ value: Any?) -> Foundation.Date? - open func transformToJSON(_ value: Foundation.Date?) -> Swift.Double? + public init(data: Foundation.Data) + @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) + required public init(data: Foundation.Data, activity: (any ZTCoreKit.ZTActivityCachable)?, fwVersion: Swift.String? = nil, context: CoreData.NSManagedObjectContext, name: Swift.String) + required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + open func saveWithResult(_ allowOverwrite: Swift.Bool = false) -> Swift.Bool + public typealias Activity = ZTCoreKit.ZTActivity @objc deinit } -public typealias ZTBaseResult = (_ error: (any Swift.Error)?) -> Swift.Void -public typealias ZTResultObject = (T?, (any Swift.Error)?) -> Swift.Void -public typealias ZTResultArray = ([T]?, (any Swift.Error)?) -> Swift.Void -public typealias ZTCompletion = (() -> Swift.Void) -public protocol ZTBaseMappable { - mutating func mapping(map: ZTCoreKit.ZTMap) -} -public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { - init?(map: ZTCoreKit.ZTMap) -} -public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { - static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? -} -extension ZTCoreKit.ZTMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) -} -extension ZTCoreKit.ZTBaseMappable { - public func toJSON() -> [Swift.String : Any] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? -} -extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { - public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) - public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) - public func toJSON() -> [[Swift.String : Any]] - public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +extension ZTCoreKit.ZTPacket { + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func lastSegmentId(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func segmentsCount(activityId: Swift.String) -> Swift.Int + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadUnsent(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, startId: Swift.Int16) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPackets(activityId: Swift.String, startId: Swift.Int16? = nil, lastId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllPacketsIds(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPrevious(activityId: Swift.String?, chunkId: Swift.Int16, originalTimestamp: Swift.Int64) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadPacket(activityId: Swift.String?, id: Swift.Int16) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadLastFwVersionEvent(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> ZTCoreKit.ZTPacket? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAllChunks(activityId: Swift.String) -> [T] where T : ZTCoreKit.ZTPacket + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, lastChunkId: Swift.Int16?) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func loadAll(activityId: Swift.String, firstChunkId: Swift.Int16?, lastChunkId: Swift.Int16? = nil) -> [ZTCoreKit.ZTPacket] + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func clear(activityId: Swift.String?) + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedChunk(activity: ZTCoreKit.ZTActivity?) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMaxMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMissedPackets(activityId: Swift.String, startId: Swift.Int16, endId: Swift.Int16? = nil) -> [Swift.Int16]? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedChunk(activityId: Swift.String, chunkId: Swift.Int16) -> Swift.Int16? + @available(*, deprecated, message: "This method will be deleted in future SDK version, until then, it will be kept to ensure smooth transitioning between old and new databases mechanism.") + public static func getMinMissedPacketId(activityId: Swift.String, startId: Swift.Int16, lastId: Swift.Int16?) -> Swift.Int16? +} +extension ZTCoreKit.ZTPacket { + public static func checkMissedChunks(activityId: Swift.String) -> Swift.Bool + public static func hasMissedChunks(activityId: Swift.String, startIndex: Swift.Int16?, endIndex: Swift.Int16?) -> Swift.Bool + public static func checkPacketToRemove(activityId: Swift.String?, packetId: Swift.Int16) + public static func hasPreviousChunk(activityId: Swift.String, currentIndex: Swift.Int16) -> Swift.Bool + public static func isChunkSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16? = nil) -> Swift.Bool + public static func isSaved(activityId: Swift.String?, chunkId: Swift.Int16, startId: Swift.Int16?, endId: Swift.Int16?) -> Swift.Bool + public static func isChunkEmpty(activityId: Swift.String?, chunkId: Swift.Int16) -> Swift.Bool } @_hasMissingDesignatedInitializers final public class ZTApi { public static let shared: ZTCoreKit.ZTApi @@ -3747,12 +3469,12 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func getActivities(code: Swift.String?, offset: Swift.Int, limit: Swift.Int, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: (([T]?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getActivity(id: Swift.String, fields: [Swift.String] = [], include: [Swift.String]? = nil, whereOptions: [Swift.String : Any]? = nil, duration: [Swift.String : Any]? = nil, start: Foundation.Date? = nil, end: Foundation.Date? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func startActivity(id: Swift.String, code: Swift.String, startTime: Swift.Int64 = Date().timestamp, attributes: [Swift.String : Any]? = nil, completion: ((Swift.String?, (any Swift.Error)?) -> Swift.Void)?) - final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTSegmentData, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) - final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTSegmentData], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivitySegments(activityId: Swift.String, duration: Swift.Int16? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addChunk(code: Swift.String, chunk: ZTCoreKit.ZTPacket, attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) + final public func addActivityChunks(code: Swift.String, chunks: [ZTCoreKit.ZTPacket], attributes: [Swift.String : Any]? = nil, completion: ZTCoreKit.ZTBaseResult? = nil) final public func deleteActivity(id: Swift.String, completion: ZTCoreKit.ZTBaseResult? = nil) final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, data: [Swift.String]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable - final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTSegmentData]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable + final public func stopActivity(id: Swift.String, duration: Swift.Int? = nil, timestamp: Swift.Int64? = nil, segments: [ZTCoreKit.ZTPacket]?, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: ((T?, (any Swift.Error)?) -> Swift.Void)? = nil) where T : ZTCoreKit.ZTMappable final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([Swift.String : Any]?, Foundation.Data?, (any Swift.Error)?) -> Swift.Void)) final public func getData(path: Swift.String, parameters: [Swift.String : Any]? = nil, completion: @escaping (([[Swift.String : Any]]?, (any Swift.Error)?) -> Swift.Void)) @@ -3791,224 +3513,408 @@ extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { final public func resendSavedRequests() @objc deinit } -extension ZTCoreKit.ZTArchive { - final public func extract(_ entry: ZTCoreKit.ZTEntry, to url: Foundation.URL, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil) throws -> ZTCoreKit.CRC32 - final public func extract(_ entry: ZTCoreKit.ZTEntry, bufferSize: Swift.UInt32 = defaultReadChunkSize, skipCRC32: Swift.Bool = false, progress: Foundation.Progress? = nil, consumer: (_ data: Foundation.Data) throws -> Swift.Void) throws -> ZTCoreKit.CRC32 +public protocol ZTCBPeripheralProtocol { + var delegate: (any CoreBluetooth.CBPeripheralDelegate)? { get set } + var name: Swift.String? { get } + var rssi: Foundation.NSNumber? { get } + var state: CoreBluetooth.CBPeripheralState { get } + var services: [CoreBluetooth.CBService]? { get } + var identifier: Foundation.UUID { get } + func discoverServices(_: [CoreBluetooth.CBUUID]?) + func discoverCharacteristics(_: [CoreBluetooth.CBUUID]?, for: CoreBluetooth.CBService) + func readValue(for: CoreBluetooth.CBCharacteristic) + func writeValue(_: Foundation.Data, for: CoreBluetooth.CBCharacteristic, type: CoreBluetooth.CBCharacteristicWriteType) + func setNotifyValue(_: Swift.Bool, for: CoreBluetooth.CBCharacteristic) } -public typealias ConnectResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanResultBlock = (ZTCoreKit.ZTDevice?, (any Swift.Error)?) -> Swift.Void -public typealias ScanFinishedBlock = ((any Swift.Error)?) -> Swift.Void -@_hasMissingDesignatedInitializers final public class ZTCore { - public static let version: Swift.String - final public var zcVersion: Swift.String - public static let shared: ZTCoreKit.ZTCore - final public let bleManager: ZTCoreKit.ZTBleManager - final public var settings: ZTCoreKit.ZTSettings { +extension CoreBluetooth.CBPeripheral : ZTCoreKit.ZTCBPeripheralProtocol { +} +public protocol ZTBaseMappable { + mutating func mapping(map: ZTCoreKit.ZTMap) +} +public protocol ZTMappable : ZTCoreKit.ZTBaseMappable { + init?(map: ZTCoreKit.ZTMap) +} +public protocol ZTStaticMappable : ZTCoreKit.ZTBaseMappable { + static func objectForMapping(map: ZTCoreKit.ZTMap) -> (any ZTCoreKit.ZTBaseMappable)? +} +extension ZTCoreKit.ZTMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSON: [Swift.String : Any], context: (any ZTCoreKit.ZTMapContext)? = nil) +} +extension ZTCoreKit.ZTBaseMappable { + public func toJSON() -> [Swift.String : Any] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Array where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +extension Swift.Set where Element : ZTCoreKit.ZTBaseMappable { + public init?(JSONString: Swift.String, context: (any ZTCoreKit.ZTMapContext)? = nil) + public init?(JSONArray: [[Swift.String : Any]], context: (any ZTCoreKit.ZTMapContext)? = nil) + public func toJSON() -> [[Swift.String : Any]] + public func toJSONString(prettyPrint: Swift.Bool = false) -> Swift.String? +} +public struct ZTRealtimeMessage : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } + public enum Side : Swift.UInt8 { + case none + case left + case right + case both + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { + get + } + } + public var senderSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var concernedSide: ZTCoreKit.ZTRealtimeMessage.Side? { + get + } + public var eventType: ZTCoreKit.ZTRealtimeMessageEventType? { + get + } + public var content: [Swift.UInt8] { + get + } + public init(bytes: [Swift.UInt8]) + public var status: ZTCoreKit.ZTRealtimeMessage.Status? { + get + } + public var acknowledgment: ZTCoreKit.ZTRealtimeMessage.Acknowledgment? { + get + } + public var realtimeEvent: ZTCoreKit.ZTRealtimeMessage.Event? { + get + } + public var realtimeMetrics: ZTCoreKit.ZTRealtimeMessage.Metrics? { + get + } +} +@_hasMissingDesignatedInitializers public class ZTDefaults { + @objc deinit +} +@_hasMissingDesignatedInitializers public class ZTDefaultsKey : ZTCoreKit.ZTDefaults { + final public let stringValue: Swift.String + public init(_ value: Swift.String) + @objc deinit +} +@_inheritsConvenienceInitializers open class ZTTextCharacteristic : ZTCoreKit.ZTCharacteristic { + required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) + public var stringValue: Swift.String? { + get + } + @objc deinit +} +public class ZTActivityComment : ZTCoreKit.ZTMappable { + public var id: Swift.String? + public var timeZone: Swift.String? + public var timestamp: Foundation.Date? + public var text: Swift.String? + public var activityId: Swift.String? + public var createdAt: Foundation.Date? + public var updatedAt: Foundation.Date? + public var mediaFiles: [ZTCoreKit.ZTMediaFile]? + required public init?(map: ZTCoreKit.ZTMap) + public func mapping(map: ZTCoreKit.ZTMap) + @objc deinit +} +public enum ZTAlgoCommand : Swift.UInt8 { + case getStatus + case startNewChunk + case changeProductMode + case setPrecisionMode + case setMinimumNumberOfStrides + case enableStreamingOfValues + case setDisconnectionDelay + case setUserInfo + case setDailyTimestamp + case getPositionOfPods + case enableSpecificPacket + case holdRealtimeStreaming + case getSingleTimeMetrics + case calibrateGravity + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var appUserId: Swift.String? { +} +public enum ZTRealtimeMessageEventType : Swift.UInt8, ZTCoreKit.ZTEnum { + case status + case acknowledgment + case realTimeEvent + case realTimeMetrics + case warning + case error + public init?(rawValue: Swift.UInt8) + public typealias RawValue = Swift.UInt8 + public var rawValue: Swift.UInt8 { get } - final public var lastCommand: ZTCoreKit.ZTCommand? - final public var lastCommandResponses: [ZTCoreKit.ZTCommandResponse] - final public var lastActivityId: Swift.String? { - get +} +public enum ZTError : Swift.Equatable, Swift.Error { + case scanning(type: ZTCoreKit.ZTError.Enums.ScanningError) + case ble(type: ZTCoreKit.ZTError.Enums.BleError) + case network(type: ZTCoreKit.ZTError.Enums.NetworkError) + case store(type: ZTCoreKit.ZTError.Enums.StoreError) + case custom(errorDescription: Swift.String?, error: (any Swift.Error)? = nil) + case decoding(type: ZTCoreKit.ZTError.Enums.DecodableError) + case activity(type: ZTCoreKit.ZTError.Enums.ActivityError) + case dfu(type: ZTCoreKit.ZTError.Enums.DfuError) + @_hasMissingDesignatedInitializers public class Enums { + @objc deinit } - final public var leftModuleCommandStatus: ZTCoreKit.ZTCommandStatus { + public static func == (lhs: ZTCoreKit.ZTError, rhs: ZTCoreKit.ZTError) -> Swift.Bool + public var error: (any Swift.Error)? { get } - final public var connectedDevice: ZTCoreKit.ZTDevice? { +} +extension ZTCoreKit.ZTError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastDeviceSerialNumber: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum ScanningError { + case cameraPermission + case wrongCode + case unknown + case notLinkedUser + public static func == (a: ZTCoreKit.ZTError.Enums.ScanningError, b: ZTCoreKit.ZTError.Enums.ScanningError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var lastDeviceQRCode: Swift.String? { +} +extension ZTCoreKit.ZTError.Enums.ScanningError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - final public var lastQRCode: Swift.String? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum BleError { + case invalidState + case resetting + case poweredOff + case unsupported + case timeout + case unauthorized + case notConnected + case notConnectedLeft + case activityIsRunning + case busy + case dfu + case commandError + public static func == (a: ZTCoreKit.ZTError.Enums.BleError, b: ZTCoreKit.ZTError.Enums.BleError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var isDfuInProgress: Swift.Bool { +} +extension ZTCoreKit.ZTError.Enums.BleError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - weak final public var dfuDelegate: (any ZTCoreKit.ZTDfuDelegate)? - final public var firmwareDfuState: ZTCoreKit.DFUState? { - get +} +extension ZTCoreKit.ZTError.Enums { + public enum FirmwareError { + case differentFirmware + case memsError + case leftNoConnected + case restartRequired + case recoverFromDfu + case minimumFwVersion + case updateRequired + case unsupported + case wrongProductType + case firstChunkIdIsGreater + case startTimeZero + public static func == (a: ZTCoreKit.ZTError.Enums.FirmwareError, b: ZTCoreKit.ZTError.Enums.FirmwareError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } } - final public var currentDfuState: ZTCoreKit.ZTMessageBootloaderInfo.DfuState { +} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public let onDfuStateUpdated: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTMessageBootloaderInfo.DfuState)> - final public let onDfuUploadProgress: ZTCoreKit.ZTSignal<(Swift.Float?)> - final public let onDfuFinishedLeft: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinishedRight: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuFinished: ZTCoreKit.ZTSignal<(ZTCoreKit.ZTError?)> - final public let onDfuCopied: ZTCoreKit.ZTSignal<()> - final public func setup(apiKey: Swift.String, secret: Swift.String, appId: Swift.String, completion: (((any Swift.Error)?) -> Swift.Void)? = nil) - final public func clearUser() - final public func updateOrganization(code: Swift.String? = nil, appType: Swift.String? = nil) - @available(*, deprecated, message: "Use scan(product:, timeout:, deviceDiscovered:, completion:) instead") - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func scan(for product: ZTCoreKit.ZTProductType? = nil, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func scan(macAddress: Swift.String, timeout: Swift.Double? = 15, deviceDiscovered: ZTCoreKit.ScanResultBlock? = nil, completion: ZTCoreKit.ScanFinishedBlock? = nil) - final public func stopScan() - final public func connectWithDevice(_ device: ZTCoreKit.ZTDevice?, timeout: Swift.Double? = 5, isDfu: Swift.Bool = false, completion: @escaping ZTCoreKit.ConnectResultBlock) - #if compiler(>=5.3) && $AsyncAwait - final public func connect(withCode code: Swift.String, timeout: Swift.Double? = 20) async throws -> ZTCoreKit.ZTDevice - #endif - @available(*, deprecated, renamed: "connect(withCode:)", message: "Use Swift Concurrency compliant (Async/Await) method instead.") - final public func connectWithCode(_ code: Swift.String, timeout: Swift.Double? = 20, completion: @escaping ZTCoreKit.ConnectResultBlock) - final public func getDeviceInfo(code: Swift.String, completion: @escaping (ZTCoreKit.ZTDeviceInfo?, (any Swift.Error)?) -> Swift.Void) - final public func tryReconnect(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func checkConnectedDevice(completion: ZTCoreKit.ConnectResultBlock? = nil) - final public func setDeepSleepMode() throws - @objc deinit } -extension ZTCoreKit.ZTRealtimeMessage { - public struct Metrics : Swift.CustomStringConvertible { - public var activityType: ZTCoreKit.ZTActivityType? { - get - } - public var metricId: Swift.UInt8? { - get - } - public var metric: ZTCoreKit.ZTRealtimeMetric? { - get - } - public var value: [Swift.UInt8]? { +extension ZTCoreKit.ZTError.Enums { + public enum DfuError { + case noLeftModule + case noUpdate + case wrongFile + case noStart + case aborted + case abortedRight + case abortedLeft + case unsupported + case lowBattery + case inProgress + case updateRequired + case wrongProductType + public static func == (a: ZTCoreKit.ZTError.Enums.DfuError, b: ZTCoreKit.ZTError.Enums.DfuError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public var description: Swift.String { + } +} +extension ZTCoreKit.ZTError.Enums.DfuError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum StoreError { + case missing(Swift.String) + case invalid(Swift.String, Any?) + case wrong(Swift.String) + case unknown + } +} +extension ZTCoreKit.ZTError.Enums.StoreError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum ActivityError { + case notStarted + case notStartedLeft + case notStopped + case unknown + case modeNotSetActivityIsRunning + case previousNotStopped + case previousRestoring + case noUserParametersSet + case rawDataFlowIsRunning + case invalidMobilityScanResults + case outsideActivityDetected + case anomalyDetected + case mobility + public static func == (a: ZTCoreKit.ZTError.Enums.ActivityError, b: ZTCoreKit.ZTError.Enums.ActivityError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { get } - public init(data: Foundation.Data) } } -@_inheritsConvenienceInitializers public class ZTControlPointDfuCharacteristic : ZTCoreKit.ZTCharacteristic { - public static let uuid: Swift.String - open var data: Foundation.Data? { +extension ZTCoreKit.ZTError.Enums.ActivityError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { + get + } +} +extension ZTCoreKit.ZTError.Enums { + public enum NetworkError { + case userLinkError + case inaccessible + case urlError(Foundation.URLError) + case generalError(any Swift.Error) + case noResponse + case invalidResponseType(Foundation.URLResponse) + case noResponseData(Foundation.HTTPURLResponse) + case endpointError(Foundation.HTTPURLResponse, Foundation.Data?) + case custom(errorCode: Swift.Int?, errorDescription: Swift.String?) + } +} +extension ZTCoreKit.ZTError.Enums.NetworkError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get } - required public init(service: ZTCoreKit.ZTService, characteristic: CoreBluetooth.CBCharacteristic) - override open func valueUpdated() - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTJSONParameterEncoder { - @objc deinit -} -@_hasMissingDesignatedInitializers open class ZTURLEncodedFormParameterEncoder { - @objc deinit } -@_hasMissingDesignatedInitializers final public class ZTSettings { - public static let shared: ZTCoreKit.ZTSettings - final public var version: Swift.String? - final public var logLevel: ZTCoreKit.ZTLogLevel - final public var environment: ZTCoreKit.ZTEnvironment - final public var autoConnect: Swift.Bool - final public var enableEventLogging: Swift.Bool - final public var shouldObtaineMissedChunks: Swift.Bool - final public var enableRawDataCheck: Swift.Bool - final public var shouldAutoResendData: Swift.Bool - final public var activityDataSyncThreshold: Swift.Int - final public var enableBackgroundDFU: Swift.Bool - final public var enableBackgroundDataStreaming: Swift.Bool - final public var activityChunkStoreForFreeMemory: Swift.Int - final public var activityChunkRetryLimit: Swift.Int - final public var checkFirmwareUpdatePeriod: Swift.Int - final public var enableAnalyticsData: Swift.Bool - final public var autorestartBackgroundDfu: Swift.Bool - final public var getChunksOnApplicationDidBecomeActive: Swift.Bool - final public var enablePacketsDataLogging: Swift.Bool - final public var cachedPacketsBatchUploadSize: Swift.Int - final public var chunkDuration: Swift.Int? { +extension ZTCoreKit.ZTError.Enums { + public enum DecodableError { + case invalidKeyPath + case emptyKeyPath + case invalidJSON + public static func == (a: ZTCoreKit.ZTError.Enums.DecodableError, b: ZTCoreKit.ZTError.Enums.DecodableError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } +} +extension ZTCoreKit.ZTError.Enums.DecodableError : Foundation.LocalizedError { + public var errorDescription: Swift.String? { get - set } - final public func clear() - @objc deinit } -@_hasMissingDesignatedInitializers open class ZTClosureEventMonitor { - open var sessionDidBecomeInvalidWithError: ((Foundation.URLSession, (any Swift.Error)?) -> Swift.Void)? - open var taskDidReceiveChallenge: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLAuthenticationChallenge) -> Swift.Void)? - open var taskDidSendBodyData: ((Foundation.URLSession, Foundation.URLSessionTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var taskNeedNewBodyStream: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var taskWillPerformHTTPRedirection: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.HTTPURLResponse, Foundation.URLRequest) -> Swift.Void)? - open var taskDidFinishCollectingMetrics: ((Foundation.URLSession, Foundation.URLSessionTask, Foundation.URLSessionTaskMetrics) -> Swift.Void)? - open var taskDidComplete: ((Foundation.URLSession, Foundation.URLSessionTask, (any Swift.Error)?) -> Swift.Void)? - open var taskIsWaitingForConnectivity: ((Foundation.URLSession, Foundation.URLSessionTask) -> Swift.Void)? - open var dataTaskDidReceiveData: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.Data) -> Swift.Void)? - open var dataTaskWillCacheResponse: ((Foundation.URLSession, Foundation.URLSessionDataTask, Foundation.CachedURLResponse) -> Swift.Void)? - open var downloadTaskDidFinishDownloadingToURL: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Foundation.URL) -> Swift.Void)? - open var downloadTaskDidWriteData: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64, Swift.Int64) -> Swift.Void)? - open var downloadTaskDidResumeAtOffset: ((Foundation.URLSession, Foundation.URLSessionDownloadTask, Swift.Int64, Swift.Int64) -> Swift.Void)? - @objc deinit -} -extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} -extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} -extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} -extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} -extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} -extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.ArchiveError : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Equatable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.Hashable {} -extension ZTCoreKit.ZTArchive.AccessMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} +extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} +extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} +extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Equatable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.Hashable {} extension ZTCoreKit.ZTRealtimeMetric : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} +extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} +extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareType : Swift.Hashable {} extension ZTCoreKit.DFUFirmwareType : Swift.RawRepresentable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Equatable {} extension ZTCoreKit.DFUFirmwareError.FileType : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Equatable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.Hashable {} -extension ZTCoreKit.ZTCompressionMethod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} -extension ZTCoreKit.LogLevel : Swift.Equatable {} -extension ZTCoreKit.LogLevel : Swift.Hashable {} -extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.Status : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.TimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.BmTimestampType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.PacketType : Swift.RawRepresentable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamHexError : Swift.Hashable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} +extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} +extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityType : Swift.Equatable {} +extension ZTCoreKit.ZTActivityType : Swift.Hashable {} +extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} extension ZTCoreKit.ZTTXPower : Swift.Equatable {} extension ZTCoreKit.ZTTXPower : Swift.Hashable {} extension ZTCoreKit.ZTTXPower : Swift.RawRepresentable {} extension ZTCoreKit.ZTCommand : Swift.Equatable {} extension ZTCoreKit.ZTCommand : Swift.Hashable {} extension ZTCoreKit.ZTCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Equatable {} -extension ZTCoreKit.ZTCommandStatus : Swift.Hashable {} -extension ZTCoreKit.ZTCommandStatus : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Equatable {} -extension ZTCoreKit.DFUStreamZipError : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.Equatable {} +extension ZTCoreKit.ZTPeriod : Swift.Hashable {} +extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTProductType : Swift.Equatable {} extension ZTCoreKit.ZTProductType : Swift.Hashable {} extension ZTCoreKit.ZTProductType : Swift.RawRepresentable {} @@ -4033,42 +3939,44 @@ extension ZTCoreKit.ZTGenderSizeCodeType : Swift.RawRepresentable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Equatable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.Hashable {} extension ZTCoreKit.ZTUnitSizeCodeType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.TimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.BmTimestampType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.Hashable {} -extension ZTCoreKit.ZTSegmentData.PacketType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} -extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.Equatable {} +extension ZTCoreKit.LogLevel : Swift.Hashable {} +extension ZTCoreKit.LogLevel : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.EventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionId : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Event.MotionIntensity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMappingType : Swift.Equatable {} +extension ZTCoreKit.ZTMappingType : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} +extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Equatable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.Hashable {} +extension ZTCoreKit.ZTDfuPackageType : Swift.RawRepresentable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Equatable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.Hashable {} extension ZTCoreKit.ZTMessageChunkData.Mode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoStatus : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogLevel : Swift.Equatable {} extension ZTCoreKit.ZTLogLevel : Swift.Hashable {} extension ZTCoreKit.ZTLogLevel : Swift.RawRepresentable {} extension ZTCoreKit.ZTLogCategory : Swift.Equatable {} extension ZTCoreKit.ZTLogCategory : Swift.Hashable {} extension ZTCoreKit.ZTLogCategory : Swift.RawRepresentable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} -extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Equatable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.Hashable {} +extension ZTCoreKit.ZTMessageBootloaderInfo.DfuState : Swift.RawRepresentable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Equatable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.Hashable {} extension ZTCoreKit.ZTNotifyData.GroupID : Swift.RawRepresentable {} @@ -4093,72 +4001,62 @@ extension ZTCoreKit.ZTNotifyData.GenericMessageId : Swift.RawRepresentable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Equatable {} extension ZTCoreKit.ZTDeviceActualState : Swift.Hashable {} extension ZTCoreKit.ZTDeviceActualState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.Primary.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.PrimaryOld.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceInformation.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Equatable {} -extension ZTCoreKit.ZTServices.DeviceDFU.Characteristic : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.Equatable {} -extension ZTCoreKit.ZTActivityType : Swift.Hashable {} -extension ZTCoreKit.ZTActivityType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} -extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} -extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoPrecisionMode : Swift.RawRepresentable {} -extension ZTCoreKit.DFUUuidType : Swift.Equatable {} -extension ZTCoreKit.DFUUuidType : Swift.Hashable {} -extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoState : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoState : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoState : Swift.RawRepresentable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} +extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} +extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} +extension ZTCoreKit.ZTEnvironment : Swift.Equatable {} +extension ZTCoreKit.ZTEnvironment : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.Equatable {} +extension ZTCoreKit.ZTModuleSide : Swift.Hashable {} +extension ZTCoreKit.ZTModuleSide : Swift.RawRepresentable {} extension ZTCoreKit.DFUError : Swift.Equatable {} extension ZTCoreKit.DFUError : Swift.Hashable {} extension ZTCoreKit.DFUError : Swift.RawRepresentable {} extension ZTCoreKit.DFUState : Swift.Equatable {} extension ZTCoreKit.DFUState : Swift.Hashable {} extension ZTCoreKit.DFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Equatable {} -extension ZTCoreKit.ZTSegmentData.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} +extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} +extension ZTCoreKit.ZTDFUState : Swift.Equatable {} +extension ZTCoreKit.ZTDFUState : Swift.Hashable {} +extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} +extension ZTCoreKit.DFUUuidType : Swift.Equatable {} +extension ZTCoreKit.DFUUuidType : Swift.Hashable {} +extension ZTCoreKit.DFUUuidType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Equatable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.Hashable {} +extension ZTCoreKit.ZTAlgoAcknowledgmentStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTActivityMode : Swift.Equatable {} +extension ZTCoreKit.ZTActivityMode : Swift.Hashable {} +extension ZTCoreKit.ZTActivityMode : Swift.RawRepresentable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Equatable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.Hashable {} extension ZTCoreKit.ZTActivitySummaryStatus : Swift.RawRepresentable {} +extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Equatable {} +extension ZTCoreKit.ZTPacket.CodingKeys : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessage.Side : Swift.RawRepresentable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Equatable {} extension ZTCoreKit.ZTAlgoCommand : Swift.Hashable {} extension ZTCoreKit.ZTAlgoCommand : Swift.RawRepresentable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Equatable {} -extension ZTCoreKit.ZTAlgoMode : Swift.Hashable {} -extension ZTCoreKit.ZTAlgoMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Equatable {} -extension ZTCoreKit.ZTSamplingMode : Swift.Hashable {} -extension ZTCoreKit.ZTSamplingMode : Swift.RawRepresentable {} -extension ZTCoreKit.ZTDFUState : Swift.Equatable {} -extension ZTCoreKit.ZTDFUState : Swift.Hashable {} -extension ZTCoreKit.ZTDFUState : Swift.RawRepresentable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Equatable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.Hashable {} -extension ZTCoreKit.ZTEntry.EntryType : Swift.RawRepresentable {} -extension ZTCoreKit.ZTPeriod : Swift.Equatable {} -extension ZTCoreKit.ZTPeriod : Swift.Hashable {} -extension ZTCoreKit.ZTPeriod : Swift.RawRepresentable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Equatable {} -extension ZTCoreKit.ZTBleManagerState : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerComponent : Swift.RawRepresentable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Equatable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.Hashable {} -extension ZTCoreKit.ZTLoggerSeverity : Swift.RawRepresentable {} -extension ZTCoreKit.ZTMappingType : Swift.Equatable {} -extension ZTCoreKit.ZTMappingType : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Equatable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.Hashable {} -extension ZTCoreKit.ZTMessageChunkSendStatus.Status : Swift.RawRepresentable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Equatable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.Hashable {} -extension ZTCoreKit.ZTActivityLastStopReason : Swift.RawRepresentable {} -extension ZTCoreKit.ZTReachability.Adapter : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Equatable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.Hashable {} -extension ZTCoreKit.ZTDateDefaultTransform.Unit : Swift.RawRepresentable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Equatable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.Hashable {} +extension ZTCoreKit.ZTRealtimeMessageEventType : Swift.RawRepresentable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ScanningError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.BleError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.FirmwareError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DfuError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.ActivityError : Swift.Hashable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Equatable {} +extension ZTCoreKit.ZTError.Enums.DecodableError : Swift.Hashable {} diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/ZTCoreKit b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/ZTCoreKit index 9f9a2c7..24f49b7 100755 Binary files a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/ZTCoreKit and b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/ZTCoreKit differ diff --git a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/_CodeSignature/CodeResources b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/_CodeSignature/CodeResources index d21f635..7fa00ae 100644 --- a/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/_CodeSignature/CodeResources +++ b/Sources/ZTCoreKit.xcframework/ios-arm64_x86_64-simulator/ZTCoreKit.framework/_CodeSignature/CodeResources @@ -4,132 +4,154 @@ files + Database.momd/Database.mom + + pU14oGqjo8X1KLrVr2LtJwf20jc= + + Database.momd/VersionInfo.plist + + XX0iSPSya2m8LmPwMgl8YSiy69Y= + Headers/ZTCoreKit-Swift.h - GdPvTwkLZw+uae3wkUGsnZhe6pA= + c9YI0XVo/R5LdxnEL5rh+CHscVo= Info.plist - MqC0waKlfDwjjNuh0IkKLdJu+Vo= + fqviai/Hg2739/o3vFl2lTMMlRA= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json - dWHm0wtHH4JGTfEHp5B8763sjW8= + wFadA+5FOR1DG0ulOdQe3DYQpsA= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - cfIyVv0RlEIgEfdpWQFpdCMKAc0= + 25Cdh8vaoVXq6+1eJwFRGWY4h4Y= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc - mvnkhFB9zJmH6/oYnfzLazNavE0= + C69yp+cpNccS+DNm99/1OkGLcHM= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface - cfIyVv0RlEIgEfdpWQFpdCMKAc0= + 25Cdh8vaoVXq6+1eJwFRGWY4h4Y= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule - ET97oVtI0A8wbmd8mrhnFi5M9cM= + 8Xt8NPcDruom6HE/xNllj3UvBYM= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json - dWHm0wtHH4JGTfEHp5B8763sjW8= + wFadA+5FOR1DG0ulOdQe3DYQpsA= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - JITEOl9wUytQ+nF9Nxw0FRwpAqo= + JwqIATczezSrYV0IaT2melbhMEM= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - UMz/nIDbVho8fxYVYDfC4h7BCPY= + jYLkPG+kdyFWUWx85WYjKKO6geE= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - JITEOl9wUytQ+nF9Nxw0FRwpAqo= + JwqIATczezSrYV0IaT2melbhMEM= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - yhp2aa1RJakHPRb5KvjdRa1EBlw= + uWUgF9PeMQUdEbwDiA1Wc1Mnu5Q= files2 + Database.momd/Database.mom + + hash2 + + 2j0q4szEQHfOXKK00OWxS1Gqgeqy5OrujWJXqbVBF5A= + + + Database.momd/VersionInfo.plist + + hash2 + + T7gvhltHDRoZfu3MrtGmvk3HLGoVMr3qrgJ2LQIyTKM= + + Headers/ZTCoreKit-Swift.h hash2 - 76Qz7XtNlTm88Io9Qhiix3GWE1WuyTRYDuemef45X64= + rkC0ROkE1ZAUI3MRPWjVd1ziHEI2ZOGeEY8ipqm42kE= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json hash2 - Jce3BBD2XW7GYlHfSBZaLWxo1+sPpW2BAP2DDu44Yho= + LHMCuhFMIR5mJZUI2g4/RDDqsWdQCgKiKyW/DPn3+B8= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - +kaqfZ3O7dtC1BGkJN7OdfI8L85jgwu9PHRjXF1vsKc= + zzdBe7NEYF8JDrxKdD5NwQ3JYBCuN4P+AVe7s+YCxCc= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - Cc8aMbcL8BpN8TaH/7+IC+RTTTRbPrMuAxiarAWg8TU= + k+8iF+q5udH1aDrLszsx/+D8iAKb8SToh5MPgOqtwO8= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - +kaqfZ3O7dtC1BGkJN7OdfI8L85jgwu9PHRjXF1vsKc= + zzdBe7NEYF8JDrxKdD5NwQ3JYBCuN4P+AVe7s+YCxCc= Modules/ZTCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - 9hPS75nvPY+NCwQL5mPWb9ket05qw3PQulUmV/3uUWk= + iR0kB6a6QsLL9rtDaogVhi+R0ZWlEcdM8NKdsBmIiOA= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - Jce3BBD2XW7GYlHfSBZaLWxo1+sPpW2BAP2DDu44Yho= + LHMCuhFMIR5mJZUI2g4/RDDqsWdQCgKiKyW/DPn3+B8= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - OkCeWN5pdVoDp7VZzfwW6qygwSWBU4u3q/V1ikkCcwg= + HYT5Ax1R7xLAAB1uVjE6vo4bF5gN9o6ykIKktObdMEU= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - 230TM5EKx5ms+h4oqFR0pJIFREwxBVPJ9zzNP8bguwc= + G+gg4JgY7lQSZo0IBuwszjMwCohmwgeGtqkyHWGxxZI= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - OkCeWN5pdVoDp7VZzfwW6qygwSWBU4u3q/V1ikkCcwg= + HYT5Ax1R7xLAAB1uVjE6vo4bF5gN9o6ykIKktObdMEU= Modules/ZTCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - McaGhvsiYvo9pXXcZtOXvwTluwlaSc7+UjhFtGJaXSo= + R0ldZ0pMr9kNwsJnuUs43Mk9H6FqP9kxUfUSevdPecM=